Home
last modified time | relevance | path

Searched refs:TracingHook (Results 1 – 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/xray/
Dxray_mips64.cpp55 void (*TracingHook)()) XRAY_NEVER_INSTRUMENT { in patchSled() argument
95 reinterpret_cast<int64_t>(TracingHook) & 0xffff; in patchSled()
97 (reinterpret_cast<int64_t>(TracingHook) >> 16) & 0xffff; in patchSled()
99 (reinterpret_cast<int64_t>(TracingHook) >> 32) & 0xffff; in patchSled()
101 (reinterpret_cast<int64_t>(TracingHook) >> 48) & 0xffff; in patchSled()
Dxray_mips.cpp54 void (*TracingHook)()) XRAY_NEVER_INSTRUMENT { in patchSled() argument
99 reinterpret_cast<int32_t>(TracingHook) & 0xffff; in patchSled()
101 (reinterpret_cast<int32_t>(TracingHook) >> 16) & 0xffff; in patchSled()
Dxray_AArch64.cpp36 void (*TracingHook)()) XRAY_NEVER_INSTRUMENT { in patchSled() argument
75 *reinterpret_cast<void (**)()>(CurAddress) = TracingHook; in patchSled()
Dxray_arm.cpp78 void (*TracingHook)()) XRAY_NEVER_INSTRUMENT { in patchSled() argument
111 write32bitLoadIP(CurAddress, reinterpret_cast<uint32_t>(TracingHook)); in patchSled()