HomeSort by: relevance | last modified time | path
    Searched defs:ThreadLong (Results 1 - 3 of 3) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_thread.cpp 62 uptr *ThreadLong = GetCurrentThreadLongPtr();
64 stack_allocations_ = new (ThreadLong)
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_thread.cpp 76 uptr *ThreadLong = GetCurrentThreadLongPtr();
78 stack_allocations_ = new (ThreadLong)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
HWAddressSanitizer.cpp 1058 Value *ThreadLong = IRB.CreateLoad(IntptrTy, SlotPtr);
1059 // Extract the address field from ThreadLong. Unnecessary on AArch64 with TBI.
1061 TargetTriple.isAArch64() ? ThreadLong : untagPointer(IRB, ThreadLong);
1065 StackBaseTag = IRB.CreateAShr(ThreadLong, 3);
1094 // Update the ring buffer. Top byte of ThreadLong defines the size of the
1097 // buffer is simply Addr &= ~((ThreadLong >> 56) << 12).
1102 IRB.CreateShl(IRB.CreateAShr(ThreadLong, 56), 12, "", true, true),
1105 IRB.CreateAdd(ThreadLong, ConstantInt::get(IntptrTy, 8)), WrapMask);

Completed in 25 milliseconds