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

  /external/llvm/lib/VMCore/
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 31 LLVMContext::LLVMContext() : pImpl(new LLVMContextImpl(*this)) {
57 LLVMContext::~LLVMContext() { delete pImpl; }
60 pImpl->OwnedModules.insert(M);
64 pImpl->OwnedModules.erase(M);
74 pImpl->InlineAsmDiagHandler = DiagHandler;
75 pImpl->InlineAsmDiagContext = DiagContext;
82 return pImpl->InlineAsmDiagHandler;
88 return pImpl->InlineAsmDiagContext;
107 if (pImpl->InlineAsmDiagHandler == 0) {
115 pImpl->InlineAsmDiagHandler(Diag, pImpl->InlineAsmDiagContext, LocCookie)
    [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...]
Metadata.cpp 39 LLVMContextImpl *pImpl = Context.pImpl;
41 pImpl->MDStringCache.GetOrCreateValue(Str);
134 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
136 pImpl->NonUniquedMDNodes.erase(this);
138 pImpl->MDNodeSet.RemoveNode(this);
217 LLVMContextImpl *pImpl = Context.pImpl;
228 MDNode *N = pImpl->MDNodeSet.FindNodeOrInsertPos(ID, InsertPoint)
    [all...]
Type.cpp 248 Type *Type::getVoidTy(LLVMContext &C) { return &C.pImpl->VoidTy; }
249 Type *Type::getLabelTy(LLVMContext &C) { return &C.pImpl->LabelTy; }
250 Type *Type::getHalfTy(LLVMContext &C) { return &C.pImpl->HalfTy; }
251 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; }
252 Type *Type::getDoubleTy(LLVMContext &C) { return &C.pImpl->DoubleTy; }
253 Type *Type::getMetadataTy(LLVMContext &C) { return &C.pImpl->MetadataTy; }
254 Type *Type::getX86_FP80Ty(LLVMContext &C) { return &C.pImpl->X86_FP80Ty; }
255 Type *Type::getFP128Ty(LLVMContext &C) { return &C.pImpl->FP128Ty; }
256 Type *Type::getPPC_FP128Ty(LLVMContext &C) { return &C.pImpl->PPC_FP128Ty; }
257 Type *Type::getX86_MMXTy(LLVMContext &C) { return &C.pImpl->X86_MMXTy;
    [all...]
Value.cpp 503 LLVMContextImpl *pImpl = VP.getPointer()->getContext().pImpl;
508 ValueHandleBase *&Entry = pImpl->ValueHandles[VP.getPointer()];
519 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
562 LLVMContextImpl *pImpl = VP.getPointer()->getContext().pImpl;
563 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
576 LLVMContextImpl *pImpl = V->getContext().pImpl;
577 ValueHandleBase *Entry = pImpl->ValueHandles[V]
    [all...]
PassRegistry.cpp 65 if (!pImpl)
66 pImpl = new PassRegistryImpl();
67 return pImpl;
76 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(pImpl);
83 pImpl = 0;
201 if (!pImpl) return;
Constants.cpp 380 LLVMContextImpl *pImpl = Context.pImpl;
381 if (!pImpl->TheTrueVal)
382 pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
383 return pImpl->TheTrueVal;
387 LLVMContextImpl *pImpl = Context.pImpl;
388 if (!pImpl->TheFalseVal)
389 pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
390 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);
  /external/llvm/include/llvm/
PassRegistry.h 34 mutable void *pImpl;
38 PassRegistry() : pImpl(0) { }
LLVMContext.h 35 LLVMContextImpl *const pImpl;
  /external/llvm/lib/CodeGen/
LiveDebugVariables.h 33 void *pImpl;
LiveDebugVariables.cpp 67 LiveDebugVariables::LiveDebugVariables() : MachineFunctionPass(ID), pImpl(0) {
702 if (!pImpl)
703 pImpl = new LDVImpl(this);
704 return static_cast<LDVImpl*>(pImpl)->runOnMachineFunction(mf);
708 if (pImpl)
709 static_cast<LDVImpl*>(pImpl)->clear();
713 if (pImpl)
714 delete static_cast<LDVImpl*>(pImpl);
752 if (pImpl)
753 static_cast<LDVImpl*>(pImpl)->renameRegister(OldReg, NewReg, SubIdx)
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-method.cpp 137 impl_fun_ptr pImpl = &X::template

Completed in 223 milliseconds