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

  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 395 Type *IntptrTy;
436 Type *IntptrTy;
461 Type *IntptrTy;
488 IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)),
542 // be stored in IntptrTy.
545 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
631 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
633 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset))
    [all...]
ThreadSanitizer.cpp 93 Type *IntptrTy;
208 IRB.getInt8PtrTy(), IntptrTy, NULL));
211 IntptrTy, NULL));
214 IntptrTy, NULL));
225 IntptrTy = IRB.getIntPtrTy(DL);
451 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false));
457 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false));
MemorySanitizer.cpp 226 Type *IntptrTy;
341 "__msan_set_alloca_origin4", IRB.getVoidTy(), IRB.getInt8PtrTy(), IntptrTy,
342 IRB.getInt8PtrTy(), IntptrTy, NULL);
344 "__msan_poison_stack", IRB.getVoidTy(), IRB.getInt8PtrTy(), IntptrTy, NULL);
349 IRB.getInt8PtrTy(), IntptrTy, NULL);
352 IntptrTy, NULL);
355 IntptrTy, NULL);
437 IntptrTy = IRB.getIntPtrTy(DL);
    [all...]
DataFlowSanitizer.cpp 217 IntegerType *IntptrTy;
401 IntptrTy = DL->getIntPtrType(*Ctx);
403 ShadowPtrMask = ConstantInt::getSigned(IntptrTy, ~0x700000000000LL);
404 ShadowPtrMul = ConstantInt::getSigned(IntptrTy, ShadowWidth / 8);
409 Type *DFSanUnionLoadArgs[2] = { ShadowPtrTy, IntptrTy };
414 Type *DFSanSetLabelArgs[3] = { ShadowTy, Type::getInt8PtrTy(*Ctx), IntptrTy };
424 ConstantInt::get(IntptrTy, uintptr_t(GetArgTLSPtr)),
432 ConstantInt::get(IntptrTy, uintptr_t(GetRetvalTLSPtr)),
    [all...]

Completed in 1315 milliseconds