Searched defs:IntptrTy (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp93 Type *IntptrTy; member in struct:__anon26258::ThreadSanitizer
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));
H A DDataFlowSanitizer.cpp217 IntegerType *IntptrTy; member in class:__anon26251::DataFlowSanitizer
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)),
869 IRB.CreateAnd(IRB.CreatePtrToInt(Addr, IntptrTy), ShadowPtrMask),
963 IRB.CreateGEP(ShadowAddr, ConstantInt::get(DFS.IntptrTy,
[all...]
H A DAddressSanitizer.cpp395 Type *IntptrTy; member in struct:__anon26249::AddressSanitizer
436 Type *IntptrTy; member in class:__anon26249::AddressSanitizerModule
461 Type *IntptrTy; member in struct:__anon26249::FunctionStackPoisoner
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, Mappin
[all...]
H A DMemorySanitizer.cpp226 Type *IntptrTy; member in class:__anon26256::MemorySanitizer
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);
800 IRB.CreateAnd(IRB.CreatePointerCast(Addr, MS.IntptrTy),
801 ConstantInt::get(MS.IntptrTy, ~M
[all...]

Completed in 69 milliseconds