Searched refs:MethodOptions (Results 1 – 8 of 8) sorted by relevance
| /freebsd-12.1/contrib/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), 449 if (Options != MethodOptions::None) { in printMemberAttributes() 496 MethodOptions::None); in visitKnownMember() 506 MethodOptions::None); in visitKnownMember() 521 MethodOptions::None); in visitKnownMember() 530 MethodOptions::None); in visitKnownMember() [all …]
|
| H A D | TypeIndexDiscovery.cpp | 18 Attrs &= uint16_t(MethodOptions::MethodKindMask); in getMethodKind()
|
| /freebsd-12.1/contrib/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLTypes.cpp | 70 LLVM_YAML_DECLARE_BITSET_TRAITS(MethodOptions) 377 void ScalarBitSetTraits<MethodOptions>::bitset(IO &IO, MethodOptions &Options) { in bitset() 378 IO.bitSetCase(Options, "None", MethodOptions::None); in bitset() 379 IO.bitSetCase(Options, "Pseudo", MethodOptions::Pseudo); in bitset() 380 IO.bitSetCase(Options, "NoInherit", MethodOptions::NoInherit); in bitset() 381 IO.bitSetCase(Options, "NoConstruct", MethodOptions::NoConstruct); in bitset() 382 IO.bitSetCase(Options, "CompilerGenerated", MethodOptions::CompilerGenerated); in bitset() 383 IO.bitSetCase(Options, "Sealed", MethodOptions::Sealed); in bitset()
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeRecord.h | 59 MemberAttributes(MemberAccess Access, MethodKind Kind, MethodOptions Flags) { in MemberAttributes() 67 return MemberAccess(unsigned(Attrs) & unsigned(MethodOptions::AccessMask)); in getAccess() 73 (unsigned(Attrs) & unsigned(MethodOptions::MethodKindMask)) >> in getMethodKind() 79 MethodOptions getFlags() const { in getFlags() 80 return MethodOptions( in getFlags() 82 ~unsigned(MethodOptions::AccessMask | MethodOptions::MethodKindMask)); in getFlags() 735 MethodOptions Options, int32_t VFTableOffset, StringRef Name) in OneMethodRecord() 741 MethodOptions getOptions() const { return Attrs.getFlags(); } in getOptions()
|
| H A D | TypeDumpVisitor.h | 66 MethodOptions Options);
|
| H A D | CodeView.h | 279 enum class MethodOptions : uint16_t { enum 289 CV_DEFINE_ENUM_CLASS_FLAGS_OPERATORS(MethodOptions)
|
| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalTypeDumper.cpp | 191 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()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.cpp | 1897 static MethodOptions translateMethodOptionFlags(const DISubprogram *SP) { in translateMethodOptionFlags() 1899 return MethodOptions::CompilerGenerated; in translateMethodOptionFlags() 1903 return MethodOptions::None; in translateMethodOptionFlags()
|