Home
last modified time | relevance | path

Searched refs:target_pc (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/arm/
Dassembler-arm-inl.h333 Address target_pc = pc; in target_address_address_at() local
334 Instr instr = Memory::int32_at(target_pc); in target_address_address_at()
340 target_pc -= kInstrSize; in target_address_address_at()
341 instr = Memory::int32_at(target_pc); in target_address_address_at()
348 target_pc -= kInstrSize; in target_address_address_at()
349 instr = Memory::int32_at(target_pc); in target_address_address_at()
358 return target_pc + offset + 8; in target_address_address_at()
/external/valgrind/tsan/
Dts_dynamorio.cc135 static void PushShadowStack(DrThread &t, uintptr_t pc, uintptr_t target_pc, uintptr_t sp) { in PushShadowStack() argument
139 t.shadow_stack.push_back(StackFrame(target_pc, sp)); in PushShadowStack()
142 Printf("T%d PushShadowStack %p %p %d\n", t.tid, pc, target_pc, sp); in PushShadowStack()
200 static void On_AnyCall(uintptr_t pc, uintptr_t target_pc, uintptr_t sp, bool is_direct) { in On_AnyCall() argument
204 PushShadowStack(t, pc, target_pc, sp); in On_AnyCall()
207 static void On_DirectCall(uintptr_t pc, uintptr_t target_pc, uintptr_t sp) { in On_DirectCall() argument
208 On_AnyCall(pc, target_pc, sp, true); in On_DirectCall()
211 static void On_IndirectCall(uintptr_t pc, uintptr_t target_pc, uintptr_t sp) { in On_IndirectCall() argument
212 On_AnyCall(pc, target_pc, sp, false); in On_IndirectCall()
Dthread_sanitizer.h261 uintptr_t target_pc,
Dts_pin.cc443 uintptr_t target_pc = tleb.events[i++]; in TLEBFlushUnlocked() local
446 target_pc, ignore_below)) continue; in TLEBFlushUnlocked()
447 ThreadSanitizerHandleRtnCall(t.uniq_tid, call_pc, target_pc, in TLEBFlushUnlocked()
528 uintptr_t target_pc, IGNORE_BELOW_RTN ignore_below) { in TLEBAddRtnCall() argument
531 ThreadSanitizerHandleRtnCall(t.uniq_tid, call_pc, target_pc, in TLEBAddRtnCall()
542 t.tleb.events[t.tleb.size++] = target_pc; in TLEBAddRtnCall()
Dthread_sanitizer.cc4976 void HandleRtnCall(uintptr_t call_pc, uintptr_t target_pc, in HandleRtnCall()
4982 call_stack_->push_back(target_pc); in HandleRtnCall()
4986 if (ignore_below_cache_.Lookup(target_pc, &ignore) == false) { in HandleRtnCall()
4987 ignore = ThreadSanitizerIgnoreAccessesBelowFunction(target_pc); in HandleRtnCall()
4988 ignore_below_cache_.Insert(target_pc, ignore); in HandleRtnCall()
4993 ThreadSanitizerIgnoreAccessesBelowFunction(target_pc)); in HandleRtnCall()
6452 void HandleRtnCall(TID tid, uintptr_t call_pc, uintptr_t target_pc, in HandleRtnCall() argument
6455 thr->HandleRtnCall(call_pc, target_pc, ignore_below); in HandleRtnCall()
8670 uintptr_t target_pc, in ThreadSanitizerHandleRtnCall() argument
8673 G_detector->HandleRtnCall(TID(tid), call_pc, target_pc, ignore_below); in ThreadSanitizerHandleRtnCall()
/external/qemu/hw/
Dgoldfish_trace.h121 extern void trace_exception(uint32 target_pc);
/external/qemu/
Dtrace.c1477 void trace_exception(uint32 target_pc) in trace_exception() argument
1491 sim_time, target_pc, trace_bb.current_bb_addr, in trace_exception()
1509 comp_ptr = varint_encode(target_pc, comp_ptr); in trace_exception()