Searched refs:Entry (Results 176 - 200 of 500) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp55 void dumpExportEntry(raw_ostream &OS, MachOYAML::ExportEntry &Entry);
344 MachOYAML::ExportEntry &Entry) {
345 encodeSLEB128(Entry.TerminalSize, OS);
346 if (Entry.TerminalSize > 0) {
347 encodeSLEB128(Entry.Flags, OS);
348 if (Entry.Flags & MachO::EXPORT_SYMBOL_FLAGS_REEXPORT) {
349 encodeSLEB128(Entry.Other, OS);
350 OS << Entry.ImportName;
353 encodeSLEB128(Entry.Address, OS);
354 if (Entry
343 dumpExportEntry(raw_ostream &OS, MachOYAML::ExportEntry &Entry) argument
[all...]
H A DMinidumpYAML.cpp278 mapRequiredHex(IO, "Base of Image", M.Entry.BaseOfImage);
279 mapRequiredHex(IO, "Size of Image", M.Entry.SizeOfImage);
280 mapOptionalHex(IO, "Checksum", M.Entry.Checksum, 0);
281 mapOptional(IO, "Time Date Stamp", M.Entry.TimeDateStamp, 0);
283 IO.mapOptional("Version Info", M.Entry.VersionInfo, VSFixedFileInfo());
286 mapOptionalHex(IO, "Reserved0", M.Entry.Reserved0, 0);
287 mapOptionalHex(IO, "Reserved1", M.Entry.Reserved1, 0);
304 IO, Range.Entry, Range.Content);
361 mapRequiredHex(IO, "Thread Id", T.Entry.ThreadId);
362 mapOptionalHex(IO, "Suspend Count", T.Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DRISCVCompressInstEmitter.cpp496 unsigned Entry = PredicateMap[Rec]; local
497 if (Entry)
498 return Entry;
502 Entry = Predicates.size();
503 PredicateMap[Rec] = Entry;
504 return Entry;
743 unsigned Entry = getPredicates(MCOpPredicateMap, MCOpPredicates, local
747 "), STI, " + std::to_string(Entry) +
750 unsigned Entry = getPredicates(ImmLeafPredicateMap, ImmLeafPredicates, local
756 "), Subtarget, " + std::to_string(Entry)
767 unsigned Entry = getPredicates(MCOpPredicateMap, MCOpPredicates, local
774 unsigned Entry = getPredicates(ImmLeafPredicateMap, ImmLeafPredicates, local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DPHITransAddr.cpp65 SmallVectorImpl<Instruction *>::iterator Entry = find(InstInputs, I);
66 if (Entry != InstInputs.end()) {
67 InstInputs.erase(Entry);
128 SmallVectorImpl<Instruction *>::iterator Entry = find(InstInputs, I);
129 if (Entry != InstInputs.end()) {
130 InstInputs.erase(Entry);
H A DRegionInfo.cpp64 Region::Region(BasicBlock *Entry, BasicBlock *Exit, argument
67 RegionBase<RegionTraits<Function>>(Entry, Exit, RI, DT, Parent) {
H A DProfileSummaryInfo.cpp72 auto It = partition_point(DS, [=](const ProfileSummaryEntry &Entry) {
73 return Entry.Cutoff < Percentile;
271 auto &Entry = local
273 uint64_t CountThreshold = Entry.MinCount;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnit.h56 const DWARFUnitIndex::Entry *IndexEntry = nullptr;
76 const DWARFUnitIndex::Entry *Entry = nullptr);
93 const DWARFUnitIndex::Entry *getIndexEntry() const { return IndexEntry; }
117 const DWARFUnitIndex::Entry *)>
127 DWARFUnit *getUnitForIndexEntry(const DWARFUnitIndex::Entry &E);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp80 TargetLowering::ArgListEntry Entry; local
81 Entry.Node = Dst;
82 Entry.Ty = IntPtrTy;
83 Args.push_back(Entry);
84 Entry.Node = Size;
85 Args.push_back(Entry);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalityPredicates.cpp51 [=](const TypePairAndMemDesc &Entry) ->bool {
52 return Match.isCompatible(Entry);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DRegionInfo.h146 /// @param Entry The entry BasicBlock of the RegionNode. If this
151 inline RegionNodeBase(RegionT *Parent, BlockT *Entry, argument
153 : entry(Entry, isSubRegion), parent(Parent) {}
207 /// The \e Entry of a Region is the first BasicBlock that is passed after
306 /// @param Entry The entry basic block of the region.
312 RegionBase(BlockT *Entry, BlockT *Exit, RegionInfoT *RI, DomTreeT *DT,
587 block_iterator_wrapper(value_type Entry, value_type Exit) argument
588 : super(df_begin(Entry)) {
885 inline RegionNode(Region *Parent, BasicBlock *Entry, bool isSubRegion = false) argument
886 : RegionNodeBase<RegionTraits<Function>>(Parent, Entry, isSubRegio
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DConstantHoisting.h130 BlockFrequencyInfo *BFI, BasicBlock &Entry,
154 BasicBlock *Entry; member in class:llvm::ConstantHoistingPass
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DFileManager.cpp461 FileManager::getBufferForFile(const FileEntry *Entry, bool isVolatile) { argument
462 uint64_t FileSize = Entry->getSize();
468 StringRef Filename = Entry->getName();
470 if (Entry->File) {
472 Entry->File->getBuffer(Filename, FileSize,
474 Entry->closeFile();
540 if (llvm::ErrorOr<SeenFileEntryOrRedirect> Entry = FE->getValue()) {
541 if (const auto *FE = (*Entry).dyn_cast<FileEntry *>())
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DExplainOutputStyle.cpp126 for (const auto &Entry : enumerate(Layout.StreamMap)) {
127 if (!llvm::is_contained(Entry.value(), pdbBlockIndex()))
129 return Entry.index();
389 for (const auto &Entry : Substreams) {
390 if (Entry.Size <= 0)
392 uint32_t S = static_cast<uint32_t>(Entry.Size);
395 Entry.Label);
396 Entry.Explain(P, Stream, SubOffset);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp1514 llvm::GlobalVariable *Entry);
2001 llvm::StringMapEntry<llvm::GlobalVariable *> &Entry = local
2004 if (auto *C = Entry.second)
2028 llvm::ConstantDataArray::getString(VMContext, Entry.first());
2056 Entry.second = GV;
2889 auto *Entry = CreateCStringLiteral(BitMap, ObjCLabelType::ClassName, local
2892 return getConstantGEP(VMContext, Entry, 0, 0);
3076 llvm::GlobalVariable *Entry = Protocols[PD->getIdentifier()]; local
3079 if (Entry && Entry
3123 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()]; local
4461 llvm::BasicBlock &Entry = CGF.CurFn->getEntryBlock(); local
5234 llvm::GlobalVariable *&Entry = ClassReferences[II]; local
5273 llvm::GlobalVariable *&Entry = SelectorReferences[Sel]; local
5288 llvm::GlobalVariable *&Entry = ClassNames[RuntimeName]; local
5543 auto *Entry = CGObjC.CreateCStringLiteral( local
5638 llvm::GlobalVariable *&Entry = MethodVarNames[Sel]; local
5654 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr]; local
5665 llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr]; local
5673 llvm::GlobalVariable *&Entry = PropertyNames[Ident]; local
7002 llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()]; local
7044 llvm::GlobalVariable *Entry = Protocols[PD->getIdentifier()]; local
7440 EmitLoadOfClassRef(CodeGenFunction &CGF, const ObjCInterfaceDecl *ID, llvm::GlobalVariable *Entry) argument
7458 llvm::GlobalVariable *&Entry = ClassReferences[II]; local
7506 llvm::GlobalVariable *&Entry = SuperClassReferences[ID->getIdentifier()]; local
7531 llvm::GlobalVariable * &Entry = MetaClassReferences[ID->getIdentifier()]; local
7622 llvm::GlobalVariable *&Entry = SelectorReferences[Sel]; local
7820 llvm::GlobalVariable * &Entry = EHTypeReferences[ID->getIdentifier()]; local
[all...]
/freebsd-11-stable/contrib/sqlite3/
H A DReplace.cs115 #region Program Entry Point
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSymbolRewriter.h100 bool parseEntry(yaml::Stream &Stream, yaml::KeyValueNode &Entry,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DModule.h159 const FileEntry *Entry; member in struct:clang::Module::Header
161 explicit operator bool() { return Entry; }
168 const DirectoryEntry *Entry; member in struct:clang::Module::DirectoryName
170 explicit operator bool() { return Entry; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugPubTable.cpp57 for (const Entry &E : S.Entries) {
H A DDWARFDebugRnglists.cpp187 auto PrintRawEntry = [](raw_ostream &OS, const RangeListEntry &Entry,
191 DWARFAddressRange(Entry.Value0, Entry.Value1)
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.h145 unsigned Index, const RuntimeFunction &Entry);
148 unsigned Index, const RuntimeFunction &Entry);
150 const object::SectionRef Section, unsigned Entry,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp143 llvm::BitstreamEntry Entry; local
145 Entry = Res.get();
149 switch (Entry.Kind) {
170 if (!InGlobalIndexBlock && Entry.ID == GLOBAL_INDEX_BLOCK_ID) {
182 Cursor.readRecord(Entry.ID, Record, &Blob);
562 llvm::BitstreamEntry Entry = MaybeEntry.get();
564 switch (Entry.Kind) {
572 if (llvm::Expected<unsigned> Skipped = InStream.skipRecord(Entry.ID))
582 if (Entry.ID == CONTROL_BLOCK_ID) {
591 if (Entry
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DFixItRewriter.cpp96 const FileEntry *Entry = Rewrite.getSourceMgr().getFileEntryForID(I->first); local
98 std::string Filename = FixItOpts->RewriteFilename(Entry->getName(), fd);
116 RewrittenFiles->push_back(std::make_pair(Entry->getName(), Filename));
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DEnvironment.cpp85 SVal Environment::getSVal(const EnvironmentEntry &Entry, argument
87 const Stmt *S = Entry.getStmt();
88 const LocationContext *LCtx = Entry.getLocationContext();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DAMDGPUMetadataVerifier.cpp69 auto Entry = MapNode.find(Key); local
70 if (Entry == MapNode.end())
72 return verifyNode(Entry->second);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DBoundsChecking.cpp200 for (const auto &Entry : TrapInfo) {
201 Instruction *Inst = Entry.first;
203 insertBoundsCheck(Entry.second, IRB, GetTrapBB);

Completed in 230 milliseconds

1234567891011>>