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

  /external/llvm/lib/IR/
LeakDetector.cpp 29 Context.pImpl->LLVMObjects.clear();
38 LLVMContextImpl *pImpl = Object->getContext().pImpl;
39 pImpl->LLVMObjects.addGarbage(Object);
48 LLVMContextImpl *pImpl = Object->getContext().pImpl;
49 pImpl->LLVMObjects.removeGarbage(Object);
54 LLVMContextImpl *pImpl = Context.pImpl;
58 pImpl->LLVMObjects.setName("LLVM")
    [all...]
LLVMContext.cpp 34 LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) {
70 LLVMContext::~LLVMContext() { delete pImpl; }
73 pImpl->OwnedModules.insert(M);
77 pImpl->OwnedModules.erase(M);
87 pImpl->InlineAsmDiagHandler = DiagHandler;
88 pImpl->InlineAsmDiagContext = DiagContext;
95 return pImpl->InlineAsmDiagHandler;
101 return pImpl->InlineAsmDiagContext;
106 pImpl->DiagnosticHandler = DiagnosticHandler;
107 pImpl->DiagnosticContext = DiagnosticContext
    [all...]
Attributes.cpp 36 LLVMContextImpl *pImpl = Context.pImpl;
42 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
51 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
59 LLVMContextImpl *pImpl = Context.pImpl;
65 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
71 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
96 return pImpl && pImpl->isEnumAttribute()
    [all...]
Metadata.cpp 40 LLVMContextImpl *pImpl = Context.pImpl;
42 pImpl->MDStringCache.GetOrCreateValue(Str);
137 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
139 pImpl->NonUniquedMDNodes.erase(this);
141 pImpl->MDNodeSet.RemoveNode(this);
221 LLVMContextImpl *pImpl = Context.pImpl;
232 MDNode *N = pImpl->MDNodeSet.FindNodeOrInsertPos(ID, InsertPoint)
    [all...]
Type.cpp 221 Type *Type::getVoidTy(LLVMContext &C) { return &C.pImpl->VoidTy; }
222 Type *Type::getLabelTy(LLVMContext &C) { return &C.pImpl->LabelTy; }
223 Type *Type::getHalfTy(LLVMContext &C) { return &C.pImpl->HalfTy; }
224 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; }
225 Type *Type::getDoubleTy(LLVMContext &C) { return &C.pImpl->DoubleTy; }
226 Type *Type::getMetadataTy(LLVMContext &C) { return &C.pImpl->MetadataTy; }
227 Type *Type::getX86_FP80Ty(LLVMContext &C) { return &C.pImpl->X86_FP80Ty; }
228 Type *Type::getFP128Ty(LLVMContext &C) { return &C.pImpl->FP128Ty; }
229 Type *Type::getPPC_FP128Ty(LLVMContext &C) { return &C.pImpl->PPC_FP128Ty; }
230 Type *Type::getX86_MMXTy(LLVMContext &C) { return &C.pImpl->X86_MMXTy;
    [all...]
DebugLoc.cpp 26 assert(unsigned(ScopeIdx) <= Ctx.pImpl->ScopeRecords.size() &&
28 return Ctx.pImpl->ScopeRecords[ScopeIdx-1].get();
32 assert(unsigned(-ScopeIdx) <= Ctx.pImpl->ScopeInlinedAtRecords.size() &&
34 return Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].first.get();
43 assert(unsigned(-ScopeIdx) <= Ctx.pImpl->ScopeInlinedAtRecords.size() &&
45 return Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].second.get();
59 assert(unsigned(ScopeIdx) <= Ctx.pImpl->ScopeRecords.size() &&
61 Scope = Ctx.pImpl->ScopeRecords[ScopeIdx-1].get();
67 assert(unsigned(-ScopeIdx) <= Ctx.pImpl->ScopeInlinedAtRecords.size() &&
69 Scope = Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].first.get()
    [all...]
Value.cpp 200 getContext().pImpl->IntrinsicIDCache.erase(F);
604 LLVMContextImpl *pImpl = VP.getPointer()->getContext().pImpl;
609 ValueHandleBase *&Entry = pImpl->ValueHandles[VP.getPointer()];
620 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
663 LLVMContextImpl *pImpl = VP.getPointer()->getContext().pImpl;
664 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
677 LLVMContextImpl *pImpl = V->getContext().pImpl;
    [all...]
Constants.cpp 475 LLVMContextImpl *pImpl = Context.pImpl;
476 if (!pImpl->TheTrueVal)
477 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
478 return pImpl->TheTrueVal;
482 LLVMContextImpl *pImpl = Context.pImpl;
483 if (!pImpl->TheFalseVal)
484 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
485 return pImpl->TheFalseVal
    [all...]
InlineAsm.cpp 33 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
34 return pImpl->InlineAsms.getOrCreate(PointerType::getUnqual(Ty), Key);
51 getType()->getContext().pImpl->InlineAsms.remove(this);
Function.cpp 254 getContext().pImpl->IntrinsicIDCache.erase(this);
400 getContext().pImpl->IntrinsicIDCache;
789 getContext().pImpl->PrefixDataMap;
799 LLVMContextImpl::PrefixDataMapTy &PDMap = getContext().pImpl->PrefixDataMap;
DebugInfo.cpp 857 return ++Ctx.pImpl->DiscriminatorTable[Key];
    [all...]
  /external/llvm/include/llvm/IR/
Attributes.h 118 AttributeImpl *pImpl;
119 Attribute(AttributeImpl *A) : pImpl(A) {}
121 Attribute() : pImpl(nullptr) {}
186 bool operator==(Attribute A) const { return pImpl == A.pImpl; }
187 bool operator!=(Attribute A) const { return pImpl != A.pImpl; }
193 ID.AddPointer(pImpl);
218 AttributeSetImpl *pImpl;
235 explicit AttributeSet(AttributeSetImpl *LI) : pImpl(LI) {
    [all...]
LLVMContext.h 42 LLVMContextImpl *const pImpl;
  /external/llvm/lib/CodeGen/
LiveDebugVariables.h 35 void *pImpl;
LiveDebugVariables.cpp 70 LiveDebugVariables::LiveDebugVariables() : MachineFunctionPass(ID), pImpl(nullptr) {
718 if (!pImpl)
719 pImpl = new LDVImpl(this);
720 return static_cast<LDVImpl*>(pImpl)->runOnMachineFunction(mf);
724 if (pImpl)
725 static_cast<LDVImpl*>(pImpl)->clear();
729 if (pImpl)
730 delete static_cast<LDVImpl*>(pImpl);
868 if (pImpl)
869 static_cast<LDVImpl*>(pImpl)->splitRegister(OldReg, NewRegs)
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-method.cpp 137 impl_fun_ptr pImpl = &X::template

Completed in 102 milliseconds