HomeSort by relevance Sort by last modified time
    Searched refs:IRB (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 269 IRBuilder<> IRB(*C);
275 WarningFn = M.getOrInsertFunction(WarningFnName, IRB.getVoidTy(), NULL);
278 "__msan_copy_origin", IRB.getVoidTy(), IRB.getInt8PtrTy(),
279 IRB.getInt8PtrTy(), IntptrTy, NULL);
281 "__msan_set_alloca_origin", IRB.getVoidTy(), IRB.getInt8PtrTy(), IntptrTy,
282 IRB.getInt8PtrTy(), NULL);
284 "__msan_poison_stack", IRB.getVoidTy(), IRB.getInt8PtrTy(), IntptrTy, NULL)
    [all...]
ThreadSanitizer.cpp 135 IRBuilder<> IRB(M.getContext());
138 "__tsan_func_entry", IRB.getVoidTy(), IRB.getInt8PtrTy(), NULL));
140 "__tsan_func_exit", IRB.getVoidTy(), NULL));
141 OrdTy = IRB.getInt32Ty();
147 ReadName, IRB.getVoidTy(), IRB.getInt8PtrTy(), NULL));
151 WriteName, IRB.getVoidTy(), IRB.getInt8PtrTy(), NULL));
163 AtomicStoreName, IRB.getVoidTy(), PtrTy, Ty, OrdTy
    [all...]
AddressSanitizer.cpp 266 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
275 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
280 void emitShadowMapping(Module &M, IRBuilder<> &IRB) const;
497 void poisonRedZones(const ArrayRef<AllocaInst*> &AllocaVec, IRBuilder<> IRB,
499 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> IRB, bool DoPoison);
546 Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
548 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
553 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
555 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
561 IRBuilder<> IRB(InsertBefore)
    [all...]
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 24 IRBuilder<> IRB(M.getContext());
25 FunctionType *FnTy = FunctionType::get(IRB.getVoidTy(), false);
27 IRB.getInt32Ty(), PointerType::getUnqual(FnTy), NULL);
30 Ty, IRB.getInt32(Priority), F, NULL);
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]
LoopIdiomRecognize.cpp 129 CallInst *createPopcntIntrinsic(IRBuilderTy &IRB, Value *Val, DebugLoc DL);
    [all...]

Completed in 819 milliseconds