HomeSort by relevance Sort by last modified time
    Searched refs:ConstantPointerNull (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/llvm/lib/Analysis/
CaptureTracking.cpp 164 if (ConstantPointerNull *CPN =
165 dyn_cast<ConstantPointerNull>(I->getOperand(1)))
BasicAliasAnalysis.cpp     [all...]
LazyValueInfo.cpp 529 BBLV = LVILatticeVal::getNot(ConstantPointerNull::get(AI->getType()));
617 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
645 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
    [all...]
MemoryBuiltins.cpp 424 if (ConstantPointerNull *P = dyn_cast<ConstantPointerNull>(V))
522 ObjectSizeOffsetVisitor::visitConstantPointerNull(ConstantPointerNull&) {
AliasAnalysisEvaluator.cpp 138 && !isa<ConstantPointerNull>(V);
  /external/llvm/unittests/Analysis/
MixedTBAATest.cpp 42 auto *Addr = ConstantPointerNull::get(PtrType);
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARC.h 266 return isa<ConstantPointerNull>(V) || isa<UndefValue>(V);
291 isa<ConstantPointerNull>(OldArg))) &&
ObjCARCContract.cpp 410 ConstantPointerNull::get(cast<PointerType>(CI->getType()));
  /external/llvm/lib/Transforms/Utils/
CtorUtils.cpp 118 if (isa<ConstantPointerNull>(CS->getOperand(1)))
ValueMapper.cpp 176 assert(isa<ConstantPointerNull>(C));
177 return VM[V] = ConstantPointerNull::get(cast<PointerType>(NewTy));
  /external/llvm/include/llvm/IR/
Constants.h 481 /// ConstantPointerNull - a constant pointer value that points to null
483 class ConstantPointerNull : public Constant {
485 ConstantPointerNull(const ConstantPointerNull &) LLVM_DELETED_FUNCTION;
487 explicit ConstantPointerNull(PointerType *T)
498 static ConstantPointerNull *get(PointerType *T);
    [all...]
  /art/compiler/llvm/
ir_builder.h 418 ::llvm::ConstantPointerNull* getJNull() {
419 return ::llvm::ConstantPointerNull::get(getJObjectTy());
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 334 Value* ParamAddrSpacePtr = ConstantPointerNull::get(
348 Value *ParamAddrSpacePtr = ConstantPointerNull::get(PointerType::get(
R600ISelLowering.cpp 370 MachinePointerInfo(ConstantPointerNull::get(PtrType)),
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 334 Value* ParamAddrSpacePtr = ConstantPointerNull::get(
348 Value *ParamAddrSpacePtr = ConstantPointerNull::get(PointerType::get(
  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 198 SizeOffsetType visitConstantPointerNull(ConstantPointerNull&);
  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 88 Builder.CreateRet(ConstantPointerNull::get(Type::getInt8PtrTy(Ctx)));
  /external/llvm/lib/IR/
ConstantFold.cpp 160 if (isa<ConstantPointerNull>(V)) // ptr->ptr cast.
161 return ConstantPointerNull::get(cast<PointerType>(DestTy));
604 return ConstantPointerNull::get(cast<PointerType>(DestTy));
    [all...]
LLVMContextImpl.h 284 DenseMap<PointerType*, ConstantPointerNull*> CPNConstants;
Constants.cpp 85 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
157 return ConstantPointerNull::get(cast<PointerType>(Ty));
    [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 283 if (!isa<ConstantPointerNull>(ICI->getOperand(1)))
321 if (isa<ConstantPointerNull>(SI->getOperand(0)))
  /external/llvm/lib/CodeGen/
Analysis.cpp 118 if (!GV) V = cast<ConstantPointerNull>(Init);
121 assert((GV || isa<ConstantPointerNull>(V)) &&
GCStrategy.cpp 191 StoreInst* SI = new StoreInst(ConstantPointerNull::get(cast<PointerType>(
IntrinsicLowering.cpp 432 CI->replaceAllUsesWith(ConstantPointerNull::get(
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 397 if (isa<ConstantPointerNull>(GEPI0) && GEPI->getPointerAddressSpace() == 0){
411 (isa<ConstantPointerNull>(Op) && LI.getPointerAddressSpace() == 0)) {
679 if (isa<ConstantPointerNull>(Ptr) && SI.getPointerAddressSpace() == 0) {
    [all...]

Completed in 1340 milliseconds

1 2 3