Home
last modified time | relevance | path

Searched refs:MethodOptions (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DTypeDumpVisitor.cpp52 ENUM_ENTRY(MethodOptions, Pseudo),
53 ENUM_ENTRY(MethodOptions, NoInherit),
54 ENUM_ENTRY(MethodOptions, NoConstruct),
55 ENUM_ENTRY(MethodOptions, CompilerGenerated),
56 ENUM_ENTRY(MethodOptions, Sealed),
442 MethodOptions Options) { in printMemberAttributes()
448 if (Options != MethodOptions::None) { in printMemberAttributes()
495 MethodOptions::None); in visitKnownMember()
505 MethodOptions::None); in visitKnownMember()
520 MethodOptions::None); in visitKnownMember()
[all …]
H A DTypeRecordMapping.cpp101 MethodOptions Options) { in getMemberAttributes()
112 if (Options != MethodOptions::None) { in getMemberAttributes()
113 std::string MethodOptions = getFlagNames( in getMemberAttributes() local
115 MemberAttrs += ", " + MethodOptions; in getMemberAttributes()
619 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None); in visitKnownMember()
630 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None); in visitKnownMember()
643 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None); in visitKnownMember()
682 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None); in visitKnownMember()
694 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None); in visitKnownMember()
H A DEnumTables.cpp334 CV_ENUM_CLASS_ENT(MethodOptions, Pseudo),
335 CV_ENUM_CLASS_ENT(MethodOptions, NoInherit),
336 CV_ENUM_CLASS_ENT(MethodOptions, NoConstruct),
337 CV_ENUM_CLASS_ENT(MethodOptions, CompilerGenerated),
338 CV_ENUM_CLASS_ENT(MethodOptions, Sealed),
H A DTypeIndexDiscovery.cpp18 Attrs &= uint16_t(MethodOptions::MethodKindMask); in getMethodKind()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h52 MemberAttributes(MemberAccess Access, MethodKind Kind, MethodOptions Flags) { in MemberAttributes()
60 return MemberAccess(unsigned(Attrs) & unsigned(MethodOptions::AccessMask)); in getAccess()
66 (unsigned(Attrs) & unsigned(MethodOptions::MethodKindMask)) >> in getMethodKind()
72 MethodOptions getFlags() const { in getFlags()
73 return MethodOptions( in getFlags()
75 ~unsigned(MethodOptions::AccessMask | MethodOptions::MethodKindMask)); in getFlags()
728 MethodOptions Options, int32_t VFTableOffset, StringRef Name) in OneMethodRecord()
734 MethodOptions getOptions() const { return Attrs.getFlags(); } in getOptions()
H A DTypeDumpVisitor.h65 MethodOptions Options);
H A DCodeView.h279 enum class MethodOptions : uint16_t { enum
289 CV_DEFINE_ENUM_CLASS_FLAGS_OPERATORS(MethodOptions)
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp69 LLVM_YAML_DECLARE_BITSET_TRAITS(MethodOptions)
381 void ScalarBitSetTraits<MethodOptions>::bitset(IO &IO, MethodOptions &Options) { in bitset()
382 IO.bitSetCase(Options, "None", MethodOptions::None); in bitset()
383 IO.bitSetCase(Options, "Pseudo", MethodOptions::Pseudo); in bitset()
384 IO.bitSetCase(Options, "NoInherit", MethodOptions::NoInherit); in bitset()
385 IO.bitSetCase(Options, "NoConstruct", MethodOptions::NoConstruct); in bitset()
386 IO.bitSetCase(Options, "CompilerGenerated", MethodOptions::CompilerGenerated); in bitset()
387 IO.bitSetCase(Options, "Sealed", MethodOptions::Sealed); in bitset()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp191 MethodOptions Flags = Attrs.getFlags(); in memberAttributes()
192 PUSH_FLAG(MethodOptions, Pseudo, Flags, "pseudo"); in memberAttributes()
193 PUSH_FLAG(MethodOptions, NoInherit, Flags, "noinherit"); in memberAttributes()
194 PUSH_FLAG(MethodOptions, NoConstruct, Flags, "noconstruct"); in memberAttributes()
195 PUSH_FLAG(MethodOptions, CompilerGenerated, Flags, "compiler-generated"); in memberAttributes()
196 PUSH_FLAG(MethodOptions, Sealed, Flags, "sealed"); in memberAttributes()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp2007 static MethodOptions translateMethodOptionFlags(const DISubprogram *SP) { in translateMethodOptionFlags()
2009 return MethodOptions::CompilerGenerated; in translateMethodOptionFlags()
2013 return MethodOptions::None; in translateMethodOptionFlags()