Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeDumpVisitor.cpp53 ENUM_ENTRY(MethodOptions, Pseudo),
54 ENUM_ENTRY(MethodOptions, NoInherit),
55 ENUM_ENTRY(MethodOptions, NoConstruct),
56 ENUM_ENTRY(MethodOptions, CompilerGenerated),
57 ENUM_ENTRY(MethodOptions, Sealed),
447 if (Options != MethodOptions::None) { in printMemberAttributes()
494 MethodOptions::None); in visitKnownMember()
504 MethodOptions::None); in visitKnownMember()
519 MethodOptions::None); in visitKnownMember()
528 MethodOptions::None); in visitKnownMember()
[all …]
H A DTypeRecordMapping.cpp121 MethodOptions Options) { in getMemberAttributes()
132 if (Options != MethodOptions::None) { in getMemberAttributes()
133 std::string MethodOptions = in getMemberAttributes() local
135 MemberAttrs += ", " + MethodOptions; in getMemberAttributes()
638 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None); in visitKnownMember()
649 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None); in visitKnownMember()
662 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None); in visitKnownMember()
701 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None); in visitKnownMember()
713 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None); in visitKnownMember()
H A DEnumTables.cpp338 CV_ENUM_CLASS_ENT(MethodOptions, Pseudo),
339 CV_ENUM_CLASS_ENT(MethodOptions, NoInherit),
340 CV_ENUM_CLASS_ENT(MethodOptions, NoConstruct),
341 CV_ENUM_CLASS_ENT(MethodOptions, CompilerGenerated),
342 CV_ENUM_CLASS_ENT(MethodOptions, Sealed),
H A DTypeIndexDiscovery.cpp18 Attrs &= uint16_t(MethodOptions::MethodKindMask); in getMethodKind()
/freebsd/contrib/llvm-project/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()
729 MethodOptions Options, int32_t VFTableOffset, StringRef Name) in OneMethodRecord()
735 MethodOptions getOptions() const { return Attrs.getFlags(); } in getOptions()
H A DTypeDumpVisitor.h67 MethodOptions Options);
H A DCodeView.h284 enum class MethodOptions : uint16_t { enum
294 CV_DEFINE_ENUM_CLASS_FLAGS_OPERATORS(MethodOptions)
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp195 MethodOptions Flags = Attrs.getFlags(); in memberAttributes()
196 PUSH_FLAG(MethodOptions, Pseudo, Flags, "pseudo"); in memberAttributes()
197 PUSH_FLAG(MethodOptions, NoInherit, Flags, "noinherit"); in memberAttributes()
198 PUSH_FLAG(MethodOptions, NoConstruct, Flags, "noconstruct"); in memberAttributes()
199 PUSH_FLAG(MethodOptions, CompilerGenerated, Flags, "compiler-generated"); in memberAttributes()
200 PUSH_FLAG(MethodOptions, Sealed, Flags, "sealed"); in memberAttributes()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp90 MemberAccess access, MethodOptions options, in AddMethod()
108 bool is_artificial = (options & MethodOptions::CompilerGenerated) == in AddMethod()
109 MethodOptions::CompilerGenerated; in AddMethod()
H A DUdtRecordCompleter.h134 llvm::codeview::MethodOptions options,
H A DPdbAstBuilder.cpp81 MethodOptions options, MemberAttributes attrs) { in AddMethod()
87 bool is_artificial = (options & MethodOptions::CompilerGenerated) == in AddMethod()
88 MethodOptions::CompilerGenerated; in AddMethod()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h310 MethodOptions Options);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp2788 MethodOptions Flags = Method.Attrs.getFlags(); in visitKnownMember()
2789 if (MethodOptions::CompilerGenerated == in visitKnownMember()
2790 (Flags & MethodOptions::CompilerGenerated)) in visitKnownMember()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp2166 static MethodOptions translateMethodOptionFlags(const DISubprogram *SP) { in translateMethodOptionFlags()
2168 return MethodOptions::CompilerGenerated; in translateMethodOptionFlags()
2172 return MethodOptions::None; in translateMethodOptionFlags()