Home
last modified time | relevance | path

Searched refs:addEntry (Results 1 – 22 of 22) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/TextAPI/
H A DInterfaceFile.cpp22 typename C::iterator addEntry(C &Container, StringRef InstallName) { in addEntry() function
33 typename C::iterator addEntry(C &Container, const Target &Target_) { in addEntry() function
46 addEntry(Targets, Target); in addTarget()
51 auto Client = addEntry(AllowableClients, InstallName); in addAllowableClient()
57 auto Lib = addEntry(ReexportedLibraries, InstallName); in addReexportedLibrary()
99 addEntry(Targets, Target); in addTarget()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DConstantPools.cpp39 const MCExpr *ConstantPool::addEntry(const MCExpr *Value, MCContext &Context, in addEntry() function in ConstantPool
109 const MCExpr *AssemblerConstantPools::addEntry(MCStreamer &Streamer, in addEntry() function in AssemblerConstantPools
113 return getOrCreateConstantPool(Section).addEntry(Expr, Streamer.getContext(), in addEntry()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DConstantPools.h57 const MCExpr *addEntry(const MCExpr *Value, MCContext &Context,
91 const MCExpr *addEntry(MCStreamer &Streamer, const MCExpr *Expr,
/freebsd-13.1/contrib/llvm-project/lld/MachO/
H A DSyntheticSections.h124 void addEntry(Symbol *sym);
163 void addEntry(const InputSection *isec, uint64_t offset) { in addEntry() function
192 void addEntry(const DylibSymbol *dysym, const InputSection *isec,
223 void addEntry(const Symbol *symbol, const InputSection *isec, uint64_t offset,
283 bool addEntry(Symbol *);
331 void addEntry(DylibSymbol *dysym);
H A DWriter.cpp576 if (in.stubs->addEntry(dysym)) { in prepareBranchTarget()
578 in.binding->addEntry(dysym, in.lazyPointers->isec, in prepareBranchTarget()
580 in.weakBinding->addEntry(sym, in.lazyPointers->isec, in prepareBranchTarget()
583 in.lazyBinding->addEntry(dysym); in prepareBranchTarget()
588 if (in.stubs->addEntry(sym)) { in prepareBranchTarget()
589 in.rebase->addEntry(in.lazyPointers->isec, in prepareBranchTarget()
591 in.weakBinding->addEntry(sym, in.lazyPointers->isec, in prepareBranchTarget()
618 in.got->addEntry(sym); in prepareSymbolRelocation()
621 in.tlvPointers->addEntry(sym); in prepareSymbolRelocation()
664 in.rebase->addEntry(isec, r.offset); in scanRelocations()
H A DSyntheticSections.cpp230 in.binding->addEntry(dysym, isec, offset, addend); in addNonLazyBindingEntries()
232 in.weakBinding->addEntry(sym, isec, offset, addend); in addNonLazyBindingEntries()
234 in.rebase->addEntry(isec, offset); in addNonLazyBindingEntries()
236 in.weakBinding->addEntry(sym, isec, offset, addend); in addNonLazyBindingEntries()
244 void NonLazyPointerSectionBase::addEntry(Symbol *sym) { in addEntry() function in NonLazyPointerSectionBase
575 bool StubsSection::addEntry(Symbol *sym) { in addEntry() function in StubsSection
616 in.got->addEntry(stubBinder); in setup()
677 void LazyBindingSection::addEntry(DylibSymbol *dysym) { in addEntry() function in LazyBindingSection
680 in.rebase->addEntry(in.lazyPointers->isec, in addEntry()
H A DUnwindInfoSection.cpp199 in.got->addEntry(defined); in prepareRelocations()
206 in.got->addEntry(s); in prepareRelocations()
224 in.got->addEntry(s); in prepareRelocations()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/CodeGen/
H A DSwiftCallingConv.h61 addEntry(nullptr, begin, end); in addOpaqueData()
115 void addEntry(llvm::Type *type, CharUnits begin, CharUnits end);
/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.h132 void addEntry(Symbol &sym);
213 void addEntry(InputFile &file, Symbol &sym, int64_t addend, RelExpr expr);
380 void addEntry(Symbol &sym);
400 void addEntry(Symbol &sym);
733 void addEntry(Symbol &sym);
754 void addEntry(Symbol &sym);
1160 llvm::Optional<uint32_t> addEntry(const Symbol *sym, int64_t addend);
H A DRelocations.cpp266 in.got->addEntry(sym); in handleTlsRelocation()
310 in.got->addEntry(sym); in handleTlsRelocation()
1080 plt->addEntry(sym); in addPltEntry()
1081 gotPlt->addEntry(sym); in addPltEntry()
1089 in.got->addEntry(sym); in addGotEntry()
1204 in.mipsGot->addEntry(*sec.file, sym, addend, expr); in processRelocAux()
1451 in.mipsGot->addEntry(*sec.file, sym, addend, expr); in scanReloc()
H A DThunks.cpp385 in.ppc64LongBranchTarget->addEntry(&dest, addend)) { in PPC64PILongBranchThunk()
398 in.ppc64LongBranchTarget->addEntry(&dest, addend); in PPC64PDLongBranchThunk()
958 in.ppc64LongBranchTarget->addEntry(&destination, addend); in writeTo()
H A DSyntheticSections.cpp652 void GotSection::addEntry(Symbol &sym) { in addEntry() function in GotSection
715 void MipsGotSection::addEntry(InputFile &file, Symbol &sym, int64_t addend, in addEntry() function in MipsGotSection
1148 void GotPltSection::addEntry(Symbol &sym) { in addEntry() function in GotPltSection
1193 void IgotPltSection::addEntry(Symbol &sym) { in addEntry() function in IgotPltSection
2589 void PltSection::addEntry(Symbol &sym) { in addEntry() function in PltSection
2635 void IpltSection::addEntry(Symbol &sym) { in addEntry() function in IpltSection
3692 Optional<uint32_t> PPC64LongBranchTargetSection::addEntry(const Symbol *sym, in addEntry() function in PPC64LongBranchTargetSection
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64TargetStreamer.cpp44 return ConstantPools->addEntry(Streamer, Expr, Size, Loc); in addConstantPoolEntry()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp268 addEntry(type, begin, end); in addLegalTypedData()
271 void SwiftAggLowering::addEntry(llvm::Type *type, in addEntry() function in SwiftAggLowering
342 addEntry(eltTy, begin, begin + eltSize); in addEntry()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DWindowsResource.h201 bool addEntry(const ResourceEntryRef &Entry, uint32_t Origin,
/freebsd-13.1/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.h208 bool addEntry(RecordsEntry E);
H A DTGParser.cpp346 bool TGParser::addEntry(RecordsEntry E) { in addEntry() function in TGParser
3037 return addEntry(std::move(CurRec)); in ParseDef()
3176 return addEntry(std::move(Loop)); in ParseForeach()
3222 if (addEntry(std::move(Loop))) in ParseIf()
3245 if (addEntry(std::move(Loop))) in ParseIf()
3310 addEntry(std::make_unique<Record::AssertionInfo>(ConditionLoc, Condition, in ParseAssert()
3662 addEntry(std::move(E)); in ParseDefm()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMTargetStreamer.cpp37 return ConstantPools->addEntry(Streamer, Expr, 4, Loc); in addConstantPoolEntry()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp354 bool IsNewNode = Root.addEntry(Entry, Origin, Data, StringTable, Node); in parse()
381 bool WindowsResourceParser::TreeNode::addEntry( in addEntry() function in llvm::object::WindowsResourceParser::TreeNode
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp2150 void YAMLVFSWriter::addEntry(StringRef VirtualPath, StringRef RealPath, in addEntry() function in YAMLVFSWriter
2159 addEntry(VirtualPath, RealPath, /*IsDirectory=*/false); in addFileMapping()
2164 addEntry(VirtualPath, RealPath, /*IsDirectory=*/true); in addDirectoryMapping()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h879 void addEntry(StringRef VirtualPath, StringRef RealPath, bool IsDirectory);
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DLocalizationChecker.cpp532 ADD_UNARY_METHOD(NSForm, addEntry, 0) in initUIMethods()