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

  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 532 Type *IntptrTy;
578 Type *IntptrTy;
604 Type *IntptrTy;
645 IntptrTy(ASan.IntptrTy),
646 IntptrPtrTy(PointerType::get(IntptrTy, 0)),
682 Value *DynamicAreaPtr = IRB.CreatePtrToInt(SavedStack, IntptrTy);
690 {IntptrTy});
694 DynamicAreaPtr = IRB.CreateAdd(IRB.CreatePtrToInt(SavedStack, IntptrTy),
753 // be stored in IntptrTy
    [all...]
SanitizerCoverage.cpp 194 Type *IntptrTy, *Int64Ty, *Int64PtrTy;
213 IntptrTy = Type::getIntNTy(*C, DL->getPointerSizeInBits());
226 M.getOrInsertFunction(SanCovTracePCIndirName, VoidTy, IntptrTy, nullptr));
229 SanCovIndirCallName, VoidTy, IntptrTy, IntptrTy, nullptr));
304 {Int32PtrTy, IntptrTy, Int8PtrTy, Int8PtrTy},
306 ConstantInt::get(IntptrTy, N),
431 Type *Ty = ArrayType::get(IntptrTy, CacheSize);
444 IRB.CreatePointerCast(Callee, IntptrTy));
447 {IRB.CreatePointerCast(Callee, IntptrTy),
    [all...]
MemorySanitizer.cpp 334 Type *IntptrTy;
443 "__msan_set_alloca_origin4", IRB.getVoidTy(), IRB.getInt8PtrTy(), IntptrTy,
444 IRB.getInt8PtrTy(), IntptrTy, nullptr);
447 IRB.getInt8PtrTy(), IntptrTy, nullptr);
452 IRB.getInt8PtrTy(), IntptrTy, nullptr);
455 IntptrTy, nullptr);
458 IntptrTy, nullptr);
546 IntptrTy = IRB.getIntPtrTy(DL);
672 unsigned IntptrSize = DL.getTypeStoreSize(MS.IntptrTy);
675 Origin = IRB.CreateIntCast(Origin, MS.IntptrTy, /* isSigned */ false)
    [all...]
EfficiencySanitizer.cpp 206 Type *IntptrTy;
274 IRB.getInt8PtrTy(), IntptrTy, nullptr));
277 IRB.getInt8PtrTy(), IntptrTy, nullptr));
280 IRB.getInt8PtrTy(), IntptrTy, nullptr));
283 IRB.getInt8PtrTy(), IntptrTy, nullptr));
286 IRB.getInt32Ty(), IntptrTy, nullptr));
536 IntptrTy = DL.getIntPtrType(M.getContext());
562 Shadow = IRB.CreateAnd(Shadow, ConstantInt::get(IntptrTy, ShadowMask));
569 Shadow = IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Offs));
689 ConstantInt::get(IntptrTy, TypeSizeBytes)})
    [all...]
DataFlowSanitizer.cpp 230 IntegerType *IntptrTy;
440 IntptrTy = DL.getIntPtrType(*Ctx);
442 ShadowPtrMul = ConstantInt::getSigned(IntptrTy, ShadowWidth / 8);
444 ShadowPtrMask = ConstantInt::getSigned(IntptrTy, ~0x700000000000LL);
446 ShadowPtrMask = ConstantInt::getSigned(IntptrTy, ~0xF000000000LL);
456 Type *DFSanUnionLoadArgs[2] = { ShadowPtrTy, IntptrTy };
461 Type *DFSanSetLabelArgs[3] = { ShadowTy, Type::getInt8PtrTy(*Ctx), IntptrTy };
473 ConstantInt::get(IntptrTy, uintptr_t(GetArgTLSPtr)),
481 ConstantInt::get(IntptrTy, uintptr_t(GetRetvalTLSPtr)),
621 Mod->getOrInsertGlobal(kDFSanExternShadowPtrMask, IntptrTy);
    [all...]
ThreadSanitizer.cpp 103 Type *IntptrTy;
233 IRB.getInt8PtrTy(), IntptrTy, nullptr));
236 IRB.getInt8PtrTy(), IntptrTy, nullptr));
239 IRB.getInt32Ty(), IntptrTy, nullptr));
244 IntptrTy = DL.getIntPtrType(M.getContext());
540 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false)});
547 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false)});

Completed in 122 milliseconds