reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Instrumentation/SanitizerCoverage.cpp
  322                            ConstantInt::get(IntptrTy, sizeof(uint64_t)));
  370   IntptrTy = Type::getIntNTy(*C, DL->getPointerSizeInBits());
  371   IntptrPtrTy = PointerType::getUnqual(IntptrTy);
  383       M.getOrInsertFunction(SanCovTracePCIndirName, VoidTy, IntptrTy);
  425       M.getOrInsertFunction(SanCovTraceGep, VoidTy, IntptrTy);
  430       M.getOrInsertGlobal(SanCovLowestStackName, IntptrTy);
  440     SanCovLowestStack->setInitializer(Constant::getAllOnesValue(IntptrTy));
  677           ConstantInt::get(IntptrTy, 1), IntptrPtrTy));
  682           ConstantInt::get(IntptrTy, 0), IntptrPtrTy));
  736     IRB.CreateCall(SanCovTracePCIndir, IRB.CreatePointerCast(Callee, IntptrTy));
  808                        {IRB.CreateIntCast(*I, IntptrTy, true)});
  872         IRB.CreateAdd(IRB.CreatePointerCast(FunctionGuardArray, IntptrTy),
  873                       ConstantInt::get(IntptrTy, Idx * 4)),
  881         {ConstantInt::get(IntptrTy, 0), ConstantInt::get(IntptrTy, Idx)});
  881         {ConstantInt::get(IntptrTy, 0), ConstantInt::get(IntptrTy, Idx)});
  896     auto FrameAddrInt = IRB.CreatePtrToInt(FrameAddrPtr, IntptrTy);
  897     auto LowestStack = IRB.CreateLoad(IntptrTy, SanCovLowestStack);