Home
last modified time | relevance | path

Searched refs:EntryKind (Results 1 – 12 of 12) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h35 : Expression(Expr), EntryKind(E_Integer) { in Value()
39 : Expression(Expr), EntryKind(E_ConstantFP) { in Value()
43 : Expression(Expr), EntryKind(E_ConstantInt) { in Value()
47 : Expression(Expr), EntryKind(E_Location), Loc(Loc) { in Value()
56 enum EntryType EntryKind; member
68 bool isLocation() const { return EntryKind == E_Location; } in isLocation()
69 bool isInt() const { return EntryKind == E_Integer; } in isInt()
70 bool isConstantFP() const { return EntryKind == E_ConstantFP; } in isConstantFP()
71 bool isConstantInt() const { return EntryKind == E_ConstantInt; } in isConstantInt()
159 if (A.EntryKind != B.EntryKind)
[all …]
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugRnglists.cpp112 EntryKind = Encoding; in extract()
121 if (RLE.EntryKind == dwarf::DW_RLE_end_of_list) in getAbsoluteRanges()
123 if (RLE.EntryKind == dwarf::DW_RLE_base_addressx) { in getAbsoluteRanges()
129 if (RLE.EntryKind == dwarf::DW_RLE_base_address) { in getAbsoluteRanges()
139 switch (RLE.EntryKind) { in getAbsoluteRanges()
193 auto EncodingString = dwarf::RangeListEncodingString(EntryKind); in dump()
198 if (EntryKind != dwarf::DW_RLE_end_of_list) in dump()
202 switch (EntryKind) { in dump()
H A DDWARFDebugPubTable.cpp63 StringRef EntryKind = dwarf::GDBIndexEntryKindString(E.Descriptor.Kind); in dump() local
65 << format("%-8s", EntryKind.data()) << ' '; in dump()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineJumpTableInfo.h80 JTEntryKind EntryKind;
83 explicit MachineJumpTableInfo(JTEntryKind Kind): EntryKind(Kind) {} in MachineJumpTableInfo()
85 JTEntryKind getEntryKind() const { return EntryKind; } in getEntryKind()
H A DMIRYamlMapping.h130 MachineJumpTableInfo::JTEntryKind &EntryKind) {
131 IO.enumCase(EntryKind, "block-address",
133 IO.enumCase(EntryKind, "gp-rel64-block-address",
135 IO.enumCase(EntryKind, "gp-rel32-block-address",
137 IO.enumCase(EntryKind, "label-difference32",
139 IO.enumCase(EntryKind, "inline", MachineJumpTableInfo::EK_Inline);
140 IO.enumCase(EntryKind, "custom32", MachineJumpTableInfo::EK_Custom32);
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugRnglists.h43 bool isSentinel() const { return EntryKind == dwarf::DW_RLE_end_of_list; } in isSentinel()
H A DDWARFListTable.h32 uint8_t EntryKind; member
252 dwarf::RangeListEncodingString(Entry.EntryKind).size()); in dump()
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DVirtualFileSystem.h559 enum EntryKind { EK_Directory, EK_File }; enum
563 EntryKind Kind;
567 Entry(EntryKind K, StringRef Name) : Kind(K), Name(Name) {} in Entry()
571 EntryKind getKind() const { return Kind; } in getKind()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineFunction.cpp264 getOrCreateJumpTableInfo(unsigned EntryKind) { in getOrCreateJumpTableInfo() argument
268 MachineJumpTableInfo((MachineJumpTableInfo::JTEntryKind)EntryKind); in getOrCreateJumpTableInfo()
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp67 enum EntryKind { enum
/freebsd-12.1/contrib/llvm/lib/Support/
H A DVirtualFileSystem.cpp1243 RedirectingFileSystem::EntryKind Kind; in parseEntry()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaInit.cpp6428 enum EntryKind { enum
6438 IndirectLocalPathEntry(EntryKind K, Expr *E) : Kind(K), E(E) {} in IndirectLocalPathEntry()
6439 IndirectLocalPathEntry(EntryKind K, Expr *E, const Decl *D) in IndirectLocalPathEntry()