/openbsd/gnu/llvm/llvm/lib/DebugInfo/CodeView/ |
H A D | TypeDumpVisitor.cpp | 53 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 D | TypeRecordMapping.cpp | 121 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 D | EnumTables.cpp | 337 CV_ENUM_CLASS_ENT(MethodOptions, Pseudo), 338 CV_ENUM_CLASS_ENT(MethodOptions, NoInherit), 339 CV_ENUM_CLASS_ENT(MethodOptions, NoConstruct), 340 CV_ENUM_CLASS_ENT(MethodOptions, CompilerGenerated), 341 CV_ENUM_CLASS_ENT(MethodOptions, Sealed),
|
H A D | TypeIndexDiscovery.cpp | 18 Attrs &= uint16_t(MethodOptions::MethodKindMask); in getMethodKind()
|
/openbsd/gnu/llvm/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLTypes.cpp | 69 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()
|
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | TypeRecord.h | 52 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 D | TypeDumpVisitor.h | 67 MethodOptions Options);
|
H A D | CodeView.h | 281 enum class MethodOptions : uint16_t { enum 291 CV_DEFINE_ENUM_CLASS_FLAGS_OPERATORS(MethodOptions)
|
/openbsd/gnu/llvm/llvm/tools/llvm-pdbutil/ |
H A D | MinimalTypeDumper.cpp | 194 MethodOptions Flags = Attrs.getFlags(); in memberAttributes() 195 PUSH_FLAG(MethodOptions, Pseudo, Flags, "pseudo"); in memberAttributes() 196 PUSH_FLAG(MethodOptions, NoInherit, Flags, "noinherit"); in memberAttributes() 197 PUSH_FLAG(MethodOptions, NoConstruct, Flags, "noconstruct"); in memberAttributes() 198 PUSH_FLAG(MethodOptions, CompilerGenerated, Flags, "compiler-generated"); in memberAttributes() 199 PUSH_FLAG(MethodOptions, Sealed, Flags, "sealed"); in memberAttributes()
|
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | UdtRecordCompleter.cpp | 90 MemberAccess access, MethodOptions options, in AddMethod() 108 bool is_artificial = (options & MethodOptions::CompilerGenerated) == in AddMethod() 109 MethodOptions::CompilerGenerated; in AddMethod()
|
H A D | UdtRecordCompleter.h | 134 llvm::codeview::MethodOptions options,
|
H A D | PdbAstBuilder.cpp | 80 MethodOptions options, MemberAttributes attrs) { in AddMethod() 86 bool is_artificial = (options & MethodOptions::CompilerGenerated) == in AddMethod() 87 MethodOptions::CompilerGenerated; in AddMethod()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
H A D | CodeViewDebug.cpp | 2133 static MethodOptions translateMethodOptionFlags(const DISubprogram *SP) { in translateMethodOptionFlags() 2135 return MethodOptions::CompilerGenerated; in translateMethodOptionFlags() 2139 return MethodOptions::None; in translateMethodOptionFlags()
|