Deleted Added
sdiff udiff text old ( 8229:78bf55f23338 ) new ( 8271:1d3733d3acee )
full compact
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 53 unchanged lines hidden (view full) ---

62 // r11 - FP
63 // r12 - temp
64 // r13 - stack
65 // r14 - link
66 // r15 - pc
67 R0, R1, R2, R3, R4, R5, R6, R7,
68 R8, R9, R10, FP, R12, SP, LR, PC,
69 CPSR,
70 numregs
71 };
72 private:
73 uint32_t getRegs(user_regs& myregs, int num);
74 user_regs regs;
75 user_regs oldregs;
76 bool regDiffSinceUpdate[numregs];
77 bool foundMvn;
78
79 protected:
80 bool update(int pid);
81
82 public:
83 ARMTraceChild();

--- 25 unchanged lines hidden ---