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

  /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;
  /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...]
InlineAsm.cpp 32 LLVMContextImpl *pImpl = Ty->getContext().pImpl;
33 return pImpl->InlineAsms.getOrCreate(PointerType::getUnqual(Ty), Key);
50 getType()->getContext().pImpl->InlineAsms.remove(this);
Metadata.cpp 38 LLVMContextImpl *pImpl = Context.pImpl;
40 pImpl->MDStringCache.GetOrCreateValue(Str);
130 LLVMContextImpl *pImpl = getType()->getContext().pImpl;
132 pImpl->NonUniquedMDNodes.erase(this);
134 pImpl->MDNodeSet.RemoveNode(this);
213 LLVMContextImpl *pImpl = Context.pImpl;
224 MDNode *N = pImpl->MDNodeSet.FindNodeOrInsertPos(ID, InsertPoint)
    [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...]
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...]
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...]
  /external/clang/test/SemaTemplate/
instantiate-method.cpp 137 impl_fun_ptr pImpl = &X::template

Completed in 768 milliseconds