Searched refs:STRIP_PC (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/compiler-rt/lib/tsan/rtl/ |
D | tsan_interface_inl.h | 54 MemoryRead(cur_thread(), STRIP_PC(pc), (uptr)addr, kSizeLog1); in __tsan_read1_pc() 58 MemoryRead(cur_thread(), STRIP_PC(pc), (uptr)addr, kSizeLog2); in __tsan_read2_pc() 62 MemoryRead(cur_thread(), STRIP_PC(pc), (uptr)addr, kSizeLog4); in __tsan_read4_pc() 66 MemoryRead(cur_thread(), STRIP_PC(pc), (uptr)addr, kSizeLog8); in __tsan_read8_pc() 70 MemoryWrite(cur_thread(), STRIP_PC(pc), (uptr)addr, kSizeLog1); in __tsan_write1_pc() 74 MemoryWrite(cur_thread(), STRIP_PC(pc), (uptr)addr, kSizeLog2); in __tsan_write2_pc() 78 MemoryWrite(cur_thread(), STRIP_PC(pc), (uptr)addr, kSizeLog4); in __tsan_write4_pc() 82 MemoryWrite(cur_thread(), STRIP_PC(pc), (uptr)addr, kSizeLog8); in __tsan_write8_pc() 104 FuncEntry(cur_thread(), STRIP_PC(pc)); in __tsan_func_entry() 128 MemoryAccessRange(cur_thread(), STRIP_PC(pc), (uptr)addr, size, false); in __tsan_read_range_pc() [all …]
|
D | tsan_interface.cpp | 43 MemoryRead(cur_thread(), STRIP_PC(pc), (uptr)addr, kSizeLog8); in __tsan_read16_pc() 44 MemoryRead(cur_thread(), STRIP_PC(pc), (uptr)addr + 8, kSizeLog8); in __tsan_read16_pc() 48 MemoryWrite(cur_thread(), STRIP_PC(pc), (uptr)addr, kSizeLog8); in __tsan_write16_pc() 49 MemoryWrite(cur_thread(), STRIP_PC(pc), (uptr)addr + 8, kSizeLog8); in __tsan_write16_pc()
|
D | tsan_external.cpp | 114 ExternalAccess(addr, STRIP_PC(caller_pc), tag, MemoryRead); in __tsan_external_read() 119 ExternalAccess(addr, STRIP_PC(caller_pc), tag, MemoryWrite); in __tsan_external_write()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_ptrauth.h | 21 #define STRIP_PC(pc) ((uptr)ptrauth_strip(pc, 0)) macro
|