| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 45 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Distinct); \ 50 getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Temporary)); \ 54 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued); \ 58 return getImpl(Context, DEFINE_MDNODE_GET_UNPACK(ARGS), Uniqued, \ 254 static GenericDINode *getImpl(LLVMContext &Context, unsigned Tag, 257 return getImpl(Context, Tag, getCanonicalMDString(Context, Header), 261 LLVM_ABI static GenericDINode *getImpl(LLVMContext &Context, unsigned Tag, 323 LLVM_ABI static DIAssignID *getImpl(LLVMContext &Context, StorageType Storage, 337 return getImpl(Context, Distinct); in getDistinct() 340 return TempDIAssignID(getImpl(Context, Temporary)); in getTemporary() [all …]
|
| H A D | Constants.h | 447 static Constant *getImpl(ArrayType *T, ArrayRef<Constant *> V); 531 static Constant *getImpl(ArrayRef<Constant *> V); 613 LLVM_ABI static Constant *getImpl(StringRef Bytes, Type *Ty); 737 return getImpl(Data, Ty); 809 return getImpl(Data, Ty);
|
| H A D | Metadata.h | 1491 LLVM_ABI static MDTuple *getImpl(LLVMContext &Context, 1506 return getImpl(Context, MDs, Uniqued); 1510 return getImpl(Context, MDs, Uniqued, /* ShouldCreate */ false); 1517 return getImpl(Context, MDs, Distinct); 1527 return TempMDTuple(getImpl(Context, MDs, Temporary));
|
| H A D | Attributes.h | 541 static AttributeList getImpl(LLVMContext &C, ArrayRef<AttributeSet> AttrSets);
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DebugInfoMetadata.cpp | 98 DILocation *DILocation::getImpl(LLVMContext &Context, unsigned Line, in getImpl() function in DILocation 572 GenericDINode *GenericDINode::getImpl(LLVMContext &Context, unsigned Tag, in getImpl() function in GenericDINode 634 DISubrange *DISubrange::getImpl(LLVMContext &Context, int64_t Count, int64_t Lo, in getImpl() function in DISubrange 640 return getImpl(Context, CountNode, LB, nullptr, nullptr, Storage, in getImpl() 644 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() function in DISubrange 649 return getImpl(Context, CountNode, LB, nullptr, nullptr, Storage, in getImpl() 653 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() function in DISubrange 749 DIGenericSubrange *DIGenericSubrange::getImpl(LLVMContext &Context, in getImpl() function in DIGenericSubrange 833 DISubrangeType *DISubrangeType::getImpl( in getImpl() function in DISubrangeType 874 DIEnumerator *DIEnumerator::getImpl(LLVMContext &Context, const APInt &Value, in getImpl() function in DIEnumerator [all …]
|
| H A D | Constants.cpp | 1315 if (Constant *C = getImpl(Ty, V)) in get() 1320 Constant *ConstantArray::getImpl(ArrayType *Ty, ArrayRef<Constant*> V) { in getImpl() function in ConstantArray 1424 if (Constant *C = getImpl(V)) in get() 1430 Constant *ConstantVector::getImpl(ArrayRef<Constant*> V) { in getImpl() function in ConstantVector 2869 Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) { in getImpl() function in ConstantDataSequential 2954 return getImpl(StringRef(Data, Elts.size() * 2), Ty); in getFP() 2960 return getImpl(StringRef(Data, Elts.size() * 4), Ty); in getFP() 2967 return getImpl(StringRef(Data, Elts.size() * 8), Ty); in getFP() 2989 return getImpl(StringRef(Data, Elts.size() * 1), Ty); in get() 2994 return getImpl(StringRef(Data, Elts.size() * 2), Ty); in get() [all …]
|
| H A D | Attributes.cpp | 1482 AttributeList AttributeList::getImpl(LLVMContext &C, in getImpl() function in AttributeList 1567 return getImpl(C, AttrVec); in get() 1608 return getImpl(C, AttrSets); in get() 1618 return getImpl(C, AttrSets); in get() 1676 return getImpl(C, NewAttrSets); in get() 1720 return AttributeList::getImpl(C, AttrSets); in setAttributesAtIndex() 1754 return getImpl(C, AttrSets); in addParamAttribute()
|
| H A D | Metadata.cpp | 1031 MDTuple *MDTuple::getImpl(LLVMContext &Context, ArrayRef<Metadata *> MDs, in getImpl() function in MDTuple
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | LiveVariables.cpp | 60 static LiveVariablesImpl &getImpl(void *x) { in getImpl() function 143 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D); in isLive() 147 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D); in isLive() 151 return getImpl(impl).stmtsToLiveness[Loc].isLive(Val); in isLive() 548 const CFG *cfg = getImpl(impl).analysisContext.getCFG(); in runOnAllBlocks() 550 getImpl(impl).runOnBlock(B, getImpl(impl).blocksEndToLiveness[B], &obs); in runOnAllBlocks() 616 getImpl(impl).dumpBlockLiveness(M); in dumpBlockLiveness() 660 getImpl(impl).dumpExprLiveness(M); in dumpExprLiveness()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/Dialect/IR/ |
| H A D | CIRTypes.cpp | 244 return getImpl()->members; in getMembers() 247 bool RecordType::isIncomplete() const { return getImpl()->incomplete; } in isIncomplete() 249 mlir::StringAttr RecordType::getName() const { return getImpl()->name; } in getName() 251 bool RecordType::getIncomplete() const { return getImpl()->incomplete; } in getIncomplete() 253 bool RecordType::getPacked() const { return getImpl()->packed; } in getPacked() 255 bool RecordType::getPadded() const { return getImpl()->padded; } in getPadded() 258 return getImpl()->kind; in getKind() 668 return getImpl()->optionalReturnType; in getReturnTypes()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | timing.h | 183 getImpl(Str, I); in getAllImpl() 187 void getImpl(ScopedString &Str, const u32 HandleId, const u32 ExtraIndent = 0) 211 getImpl(Str, I, ExtraIndent + 1); in REQUIRES()
|
| /freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | Record.cpp | 144 ListTy = new (RK.getImpl().Allocator) ListRecTy(this); in getListTy() 156 return &RK.getImpl().SharedBitRecTy; in get() 168 detail::RecordKeeperImpl &RKImpl = RK.getImpl(); in get() 189 return &RK.getImpl().SharedIntRecTy; in get() 198 return &RK.getImpl().SharedStringRecTy; in get() 227 return &RK.getImpl().SharedDagRecTy; in get() 248 detail::RecordKeeperImpl &RKImpl = RK.getImpl(); in get() 394 return &RK.getImpl().TheUnsetInit; in get() 423 detail::RecordKeeperImpl &RKImpl = RK.getImpl(); in get() 443 return V ? &RK.getImpl().TrueBitInit : &RK.getImpl().FalseBitInit; in get() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | LazyValueInfo.h | 40 LazyValueInfoImpl *getImpl();
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | LazyValueInfo.cpp | 1724 if (auto *Impl = Info.getImpl()) in runOnFunction() 1751 LazyValueInfoImpl *LazyValueInfo::getImpl() { return PImpl; } in getImpl() function in LazyValueInfo 1757 if (auto *Impl = getImpl()) { in releaseMemory() 2051 if (auto *Impl = getImpl()) in threadEdge() 2056 if (auto *Impl = getImpl()) in forgetValue() 2061 if (auto *Impl = getImpl()) in eraseBlock() 2066 if (auto *Impl = getImpl()) in clear() 2071 if (auto *Impl = getImpl()) in printLVI()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | TrieRawHashMap.h | 181 ImplType *getImpl() const;
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 1981 detail::RecordKeeperImpl &getImpl() { return *Impl; } in getImpl() function
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/ |
| H A D | DemangleTestCases.inc | 631 {"_ZNK4llvm12PassRegistry7getImplEv", "llvm::PassRegistry::getImpl() const"},
|