/sdk/emulator/qtools/ |
exc_dump.cpp | 18 uint32_t pc, target_pc; local 21 if (trace->ReadExc(&time, &pc, &recnum, &target_pc, &bb_num, 25 time, recnum, pc, target_pc, bb_num, bb_start_time, num_insns);
|
trace_reader_base.h | 97 uint64_t *recnum, uint32_t *target_pc, 231 uint64_t *recnum, uint32_t *target_pc, 306 uint64_t *recnum, uint32_t *target_pc, 310 return exc_reader_->ReadExc(time, current_pc, recnum, target_pc, bb_num,
|
trace_reader.cpp | 388 uint32_t *target_pc, uint64_t *bb_num, 407 *target_pc = decoder_->Decode(false); 1155 uint32_t current_pc, target_pc; local [all...] |
/external/v8/src/arm/ |
assembler-arm-inl.h | 300 Address target_pc = pc; local 301 Instr instr = Memory::int32_at(target_pc); 307 target_pc -= kInstrSize; 308 instr = Memory::int32_at(target_pc); 315 target_pc -= kInstrSize; 316 instr = Memory::int32_at(target_pc); 325 return target_pc + offset + 8;
|
/external/valgrind/tsan/ |
ts_dynamorio.cc | 135 static void PushShadowStack(DrThread &t, uintptr_t pc, uintptr_t target_pc, uintptr_t sp) { 139 t.shadow_stack.push_back(StackFrame(target_pc, sp)); 142 Printf("T%d PushShadowStack %p %p %d\n", t.tid, pc, target_pc, sp); 200 static void On_AnyCall(uintptr_t pc, uintptr_t target_pc, uintptr_t sp, bool is_direct) { 203 // dr_fprintf(STDOUT, "T%d CALL %p => %p; sp=%p\n", t.tid, pc, target_pc, sp); 204 PushShadowStack(t, pc, target_pc, sp); 207 static void On_DirectCall(uintptr_t pc, uintptr_t target_pc, uintptr_t sp) { 208 On_AnyCall(pc, target_pc, sp, true); 211 static void On_IndirectCall(uintptr_t pc, uintptr_t target_pc, uintptr_t sp) { 212 On_AnyCall(pc, target_pc, sp, false) [all...] |
thread_sanitizer.h | 226 uintptr_t target_pc,
|
ts_pin.cc | 310 // { RTN_CALL, call_pc, target_pc } 443 uintptr_t target_pc = tleb.events[i++]; 446 target_pc, ignore_below)) continue; 447 ThreadSanitizerHandleRtnCall(t.uniq_tid, call_pc, target_pc, 528 uintptr_t target_pc, IGNORE_BELOW_RTN ignore_below) { 531 ThreadSanitizerHandleRtnCall(t.uniq_tid, call_pc, target_pc, 542 t.tleb.events[t.tleb.size++] = target_pc; [all...] |
thread_sanitizer.cc | [all...] |
/external/qemu/hw/ |
goldfish_trace.h | 121 extern void trace_exception(uint32 target_pc);
|
/system/core/libpixelflinger/codeflinger/ |
ARMAssembler.cpp | 168 uint32_t* target_pc = mLabels.valueFor(bt.label); local 169 LOG_ALWAYS_FATAL_IF(!target_pc, 170 "error resolving branch targets, target_pc is null"); 171 int32_t offset = int32_t(target_pc - (bt.pc+2));
|
/external/qemu/ |
trace.c | [all...] |