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

  /external/clang/include/clang/Sema/
Ownership.h 43 template <class PtrTy>
48 typedef llvm::PointerLikeTypeTraits<PtrTy> Traits;
53 static OpaquePtr make(PtrTy P) { OpaquePtr OP; OP.set(P); return OP; }
63 PtrTy get() const {
67 void set(PtrTy P) {
222 template<class PtrTy,
223 bool CompressInvalid = IsResultPtrLowBitFree<PtrTy>::value>
225 PtrTy Val;
230 : Val(PtrTy()), Invalid(Invalid) {}
231 ActionResult(PtrTy val) : Val(val), Invalid(false) {
    [all...]
  /external/llvm/include/llvm/ADT/
SmallPtrSet.h 172 template<typename PtrTy>
174 typedef PointerLikeTypeTraits<PtrTy> PtrTraits;
177 typedef PtrTy value_type;
178 typedef PtrTy reference;
179 typedef PtrTy pointer;
188 const PtrTy operator*() const {
  /external/llvm/lib/CodeGen/
StackProtector.cpp 168 PointerType *PtrTy = Type::getInt8PtrTy(RI->getContext());
175 PointerType::get(PtrTy, AddressSpace));
177 StackGuardVar = M->getOrInsertGlobal("__stack_chk_guard", PtrTy);
183 AI = new AllocaInst(PtrTy, "StackGuardSlot", InsPt);
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 149 llvm::PointerType *PtrTy;
629 llvm::StructType *SlotStructTy = llvm::StructType::get(PtrTy,
630 PtrTy, PtrTy, IntTy, IMPTy, NULL);
642 EnterCatchFn.init(&CGM, "__cxa_begin_catch", PtrTy, PtrTy, NULL);
646 ExceptionReThrowFn.init(&CGM, "_Unwind_Resume_or_Rethrow", VoidTy, PtrTy, NULL);
    [all...]
CGException.cpp     [all...]
CGExprAgg.cpp 313 QualType PtrTy = CGF.getContext().getPointerType(Ty);
315 CGF.ConvertType(PtrTy));
    [all...]
ItaniumCXXABI.cpp     [all...]
CGBuiltin.cpp     [all...]
CGObjCMac.cpp     [all...]
TargetInfo.cpp 586 llvm::Type *PtrTy = llvm::Type::getInt8PtrTy(getVMContext());
587 return ABIArgInfo::getDirect(PtrTy);
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 28 if (const PointerType *PtrTy = T->getAs<PointerType>())
29 T = PtrTy->getPointeeType();
558 if (const PointerType *PtrTy = CanonicalSubT->getAs<PointerType>()) {
559 CanonicalSubT = PtrTy->getPointeeType();
579 if (const PointerType *PtrTy = CanonicalSuperT->getAs<PointerType>())
580 CanonicalSuperT = PtrTy->getPointeeType();
  /external/llvm/lib/Target/CellSPU/
SPUISelDAGToDAG.cpp 406 EVT PtrTy = SPUtli.getPointerTy();
415 Base = CurDAG->getTargetConstant(0, PtrTy);
416 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
426 Base = CurDAG->getTargetConstant(0, PtrTy);
441 Base = CurDAG->getTargetConstant(offset, PtrTy);
442 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
446 Base = CurDAG->getTargetConstant(offset, PtrTy);
462 Base = CurDAG->getTargetConstant(offset, PtrTy);
463 Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
467 Base = CurDAG->getTargetConstant(offset, PtrTy);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 334 QualType PtrTy = Ctx.getPointerType(Ctx.CharTy);
356 SVal BufStart = svalBuilder.evalCast(BufVal, PtrTy, FirstBuf->getType());
361 LastOffset, PtrTy);
376 BufStart = svalBuilder.evalCast(BufVal, PtrTy, SecondBuf->getType());
381 LastOffset, PtrTy);
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 326 IntegerType *PtrTy = TD->getIntPtrType(V->getContext());
330 return ConstantInt::get(PtrTy, 0);
337 if (CI->getType() == PtrTy)
341 (ConstantExpr::getIntegerCast(CI, PtrTy, /*isSigned=*/false));
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 369 CAMLprim value llvm_address_space(LLVMTypeRef PtrTy) {
370 return Val_int(LLVMGetPointerAddressSpace(PtrTy));
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]