HomeSort by: relevance | last modified time | path
    Searched refs:PtrType (Results 1 - 18 of 18) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
SmallPtrSet.h 342 template <typename PtrType>
344 using ConstPtrType = typename add_const_past_pointer<PtrType>::type;
345 using PtrTraits = PointerLikeTypeTraits<PtrType>;
353 using iterator = SmallPtrSetIterator<PtrType>;
354 using const_iterator = SmallPtrSetIterator<PtrType>;
356 using value_type = PtrType;
364 std::pair<iterator, bool> insert(PtrType Ptr) {
372 iterator insert(iterator, PtrType Ptr) {
378 bool erase(PtrType Ptr) {
398 void insert(std::initializer_list<PtrType> IL)
    [all...]
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
benchmark.cc 294 typedef std::unique_ptr<BenchmarkReporter> PtrType;
296 return PtrType(new ConsoleReporter(output_opts));
298 return PtrType(new JSONReporter);
300 return PtrType(new CSVReporter);
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
benchmark.cc 445 typedef std::unique_ptr<BenchmarkReporter> PtrType;
447 return PtrType(new ConsoleReporter(output_opts));
449 return PtrType(new JSONReporter);
451 return PtrType(new CSVReporter);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
IRBuilder.cpp 969 auto *PtrType = Ptr->getType();
970 auto *Int8PtrTy = getInt8PtrTy(PtrType->getPointerAddressSpace());
971 if (PtrType != Int8PtrTy)
984 if (PtrType != Int8PtrTy)
985 return CreateBitCast(Fn, PtrType);
994 auto *PtrType = Ptr->getType();
995 auto *Int8PtrTy = getInt8PtrTy(PtrType->getPointerAddressSpace());
996 if (PtrType != Int8PtrTy)
1009 if (PtrType != Int8PtrTy)
1010 return CreateBitCast(Fn, PtrType);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IteratorModeling.cpp 636 QualType PtrType = Iterator->getType();
637 if (!PtrType->isPointerType())
639 QualType ElementType = PtrType->getPointeeType();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 766 PointerType *PtrType = G->getType();
768 PtrType->getElementType(), PtrType->getAddressSpace(),
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeRecordMapping.cpp 365 std::string PtrType =
368 Attr += "[ Type: " + PtrType;
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
MveEmitter.cpp 641 const PointerType *PtrType;
643 PointerCastResult(const PointerType *PtrType, Ptr V)
644 : PtrType(PtrType), V(V) {}
648 << ParamAlloc.allocParam("llvm::Type *", PtrType->llvmName()) << ")";
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Module.h 52 template <class PtrType> class SmallPtrSetImpl;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 1666 IntegerType *PtrType = DL.getIntPtrType((B.GetInsertBlock()->getContext()));
1668 CallocName, Attrs, B.getInt8PtrTy(), PtrType, PtrType);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 475 llvm::Type *getImageRelativeType(llvm::Type *PtrType) {
477 return PtrType;
3706 llvm::Type *PtrType = ABI.getImageRelativeType(
3708 auto *ArrType = llvm::ArrayType::get(PtrType, Classes.size() + 1);
3721 BaseClassArrayData.push_back(llvm::Constant::getNullValue(PtrType));
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 755 Error typeCheckLoadStoreInst(Type *ValType, Type *PtrType);
3844 Error BitcodeReader::typeCheckLoadStoreInst(Type *ValType, Type *PtrType) {
3845 if (!isa<PointerType>(PtrType))
3848 if (!cast<PointerType>(PtrType)->isOpaqueOrPointeeTypeMatches(ValType))
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCast.cpp 168 if (const auto *PtrType = dyn_cast<PointerType>(FromType)) {
169 if (PtrType->getPointeeType()->hasAttr(attr::NoDeref)) {
SemaDeclAttr.cpp 4849 if (const auto *PtrType = Ty->getAs<PointerType>()) {
4850 Ty = PtrType->getPointeeType();
4861 if (const auto *PtrType = Ty->getAs<PointerType>()) {
4862 Ty = PtrType->getPointeeType();
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
R600ISelLowering.cpp 817 PointerType * PtrType = PointerType::get(VT.getTypeForEVT(*DAG.getContext()),
825 MachinePointerInfo(ConstantPointerNull::get(PtrType)));
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 5270 EVT PtrType = LDST->getBasePtr().getValueType();
5271 if (PtrType == MVT::Untyped || PtrType.isExtended())
15942 EVT PtrType = Origin->getBasePtr().getValueType();
15943 if (PtrType == MVT::Untyped || PtrType.isExtended())
15951 if (!TLI.isOperationLegal(ISD::ADD, PtrType))
18410 EVT PtrType = NewPtr.getValueType();
18416 Offset = DAG.getConstant(PtrOff, DL, PtrType);
18419 Offset = DAG.getZExtOrTrunc(EltNo, DL, PtrType);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 507 Type *PtrType = GV->getType();
508 assert(PtrType->isPointerTy() &&
511 Type *GVType = dyn_cast<PointerType>(PtrType)->getElementType();
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.cpp 5370 EVT PtrType = Ptr.getValueType();
5373 PtrType, Ptr, DAG.getConstant(4, dl, PtrType));

Completed in 94 milliseconds