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

  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 144 IRBuilder<> IRB(M.getContext());
147 "__tsan_func_entry", IRB.getVoidTy(), IRB.getInt8PtrTy(), NULL));
149 "__tsan_func_exit", IRB.getVoidTy(), NULL));
150 OrdTy = IRB.getInt32Ty();
156 ReadName, IRB.getVoidTy(), IRB.getInt8PtrTy(), NULL));
160 WriteName, IRB.getVoidTy(), IRB.getInt8PtrTy(), NULL));
172 AtomicStoreName, IRB.getVoidTy(), PtrTy, Ty, OrdTy
    [all...]
MemorySanitizer.cpp 273 IRBuilder<> IRB(*C);
279 WarningFn = M.getOrInsertFunction(WarningFnName, IRB.getVoidTy(), NULL);
282 "__msan_copy_origin", IRB.getVoidTy(), IRB.getInt8PtrTy(),
283 IRB.getInt8PtrTy(), IntptrTy, NULL);
285 "__msan_set_alloca_origin", IRB.getVoidTy(), IRB.getInt8PtrTy(), IntptrTy,
286 IRB.getInt8PtrTy(), NULL);
288 "__msan_poison_stack", IRB.getVoidTy(), IRB.getInt8PtrTy(), IntptrTy, NULL)
    [all...]
AddressSanitizer.cpp 287 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
296 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
299 void emitShadowMapping(Module &M, IRBuilder<> &IRB) const;
516 void poisonRedZones(const ArrayRef<AllocaInst*> &AllocaVec, IRBuilder<> IRB,
518 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> IRB, bool DoPoison);
565 Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
567 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
572 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
574 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
580 IRBuilder<> IRB(InsertBefore)
    [all...]
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 25 IRBuilder<> IRB(M.getContext());
26 FunctionType *FnTy = FunctionType::get(IRB.getVoidTy(), false);
28 IRB.getInt32Ty(), PointerType::getUnqual(FnTy), NULL);
31 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 201 milliseconds