HomeSort by relevance Sort by last modified time
    Searched refs:PointerType (Results 76 - 100 of 253) sorted by null

1 2 34 5 6 7 8 91011

  /external/clang/lib/CodeGen/
CodeGenTypes.h 44 class PointerType;
CGExpr.cpp 41 cast<llvm::PointerType>(value->getType())->getAddressSpace();
43 llvm::PointerType *destType = Int8PtrTy;
541 llvm::Type *VPtrTy = llvm::PointerType::get(IntPtrTy, 0);
736 llvm::Type *Ty = llvm::PointerType::getUnqual(ConvertType(E->getType()));
    [all...]
CodeGenModule.h 129 llvm::PointerType *VoidPtrTy;
130 llvm::PointerType *Int8PtrTy;
135 llvm::PointerType *VoidPtrPtrTy;
136 llvm::PointerType *Int8PtrPtrTy;
    [all...]
TargetInfo.cpp     [all...]
CGExprAgg.cpp     [all...]
MicrosoftVBTables.cpp 221 cast<llvm::ArrayType>(cast<llvm::PointerType>(GV->getType())
  /external/clang/lib/StaticAnalyzer/Checkers/
GenericTaintChecker.cpp 438 const PointerType *ArgTy =
439 dyn_cast<PointerType>(Arg->getType().getCanonicalType().getTypePtr());
599 if (const PointerType * PtrTy =
600 dyn_cast<PointerType>(D->getType().getTypePtr()))
  /external/llvm/lib/IR/
Function.cpp 197 : GlobalValue(PointerType::getUnqual(Ty),
405 if (PointerType* PTyp = dyn_cast<PointerType>(Tys[i])) {
615 return PointerType::get(DecodeFixedType(Infos, Tys, Context),
  /external/llvm/lib/CodeGen/
StackProtector.cpp 279 PointerType *PtrTy = Type::getInt8PtrTy(RI->getContext());
286 PointerType::get(PtrTy,
GCStrategy.cpp 200 StoreInst* SI = new StoreInst(ConstantPointerNull::get(cast<PointerType>(
201 cast<PointerType>((*I)->getType())->getElementType())),
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 218 if (isa<PointerType>(Ty1) && Ty2 == TD->getIntPtrType(Ctx)) return true;
219 if (isa<PointerType>(Ty2) && Ty1 == TD->getIntPtrType(Ctx)) return true;
244 PointerType *PTy1 = cast<PointerType>(Ty1);
245 PointerType *PTy2 = cast<PointerType>(Ty2);
  /external/clang/lib/Sema/
SemaOverload.cpp 270 if (const PointerType* ToPtrType = ToType->getAs<PointerType>())
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 397 PointerType *PTy,
736 } else if (PointerType *PTy = dyn_cast<PointerType>(Sum->getType())) {
750 } else if (PointerType *PTy = dyn_cast<PointerType>(Op->getType())) {
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp 375 } else if (isa<PointerType>(retTy)) {
446 } else if (isa<PointerType>(Ty))
454 const PointerType *PTy = dyn_cast<PointerType>(Ty);
766 const PointerType *PTy = dyn_cast<PointerType>(Args[i].Ty);
    [all...]
  /external/llvm/include/llvm/IR/
Constants.h 36 class PointerType;
487 explicit ConstantPointerNull(PointerType *T)
498 static ConstantPointerNull *get(PointerType *T);
502 /// getType - Specialize the getType() method to always return an PointerType,
505 inline PointerType *getType() const {
506 return cast<PointerType>(Value::getType());
    [all...]
TypeBuilder.h 106 static PointerType *get(LLVMContext &Context) {
107 return PointerType::getUnqual(TypeBuilder<T,cross>::get(Context));
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 101 ArgsTy.push_back(PointerType::get(IntegerType::getInt8Ty(Context), 0));
102 ArgsTy.push_back(PointerType::get(IntegerType::getInt32Ty(Context), 0));
103 ArgsTy.push_back(PointerType::get(IntegerType::getInt64Ty(Context), 0));
224 return PointerType::get(Ty, 0);
493 DestTy = PointerType::get(DestTy, 0);
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 113 PointerType::getUnqual(Type::getInt8Ty(Context)),
144 Type *ExnTy = PointerType::getUnqual(Type::getInt8Ty(Context));
906 ResultTy = PointerType::get(ResultTy, AddressSpace);
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 803 ResultTy = PointerType::get(ResultTy, AddressSpace);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILISelDAGToDAG.cpp 181 return dyn_cast<PointerType>(ptrType)->getAddressSpace() == addrspace;
197 if (dyn_cast<Argument>(V) && dyn_cast<PointerType>(V->getType())) {
  /external/llvm/unittests/IR/
ConstantsTest.cpp 175 PointerType::getUnqual(Int32Ty));
177 PointerType::getUnqual(Int32Ty));
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelDAGToDAG.cpp 181 return dyn_cast<PointerType>(ptrType)->getAddressSpace() == addrspace;
197 if (dyn_cast<Argument>(V) && dyn_cast<PointerType>(V->getType())) {
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 625 ResultTy = PointerType::get(ResultTy, AddressSpace);
881 ResultTy = PointerType::get(ResultTy, AddressSpace);
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 214 PointerType *PTy, Type *Ty, Value *V);

Completed in 3672 milliseconds

1 2 34 5 6 7 8 91011