| /llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeTypeFunctionSig.cpp | 177 return (MemberFunc.getOptions() & FunctionOptions::Constructor) != in hasConstructor() 178 FunctionOptions::None; in hasConstructor() 188 FunctionOptions::ConstructorWithVirtualBases) != in isConstructorVirtualBase() 189 FunctionOptions::None; in isConstructorVirtualBase() 193 FunctionOptions Options = in isCxxReturnUdt() 195 return (Options & FunctionOptions::CxxReturnUdt) != FunctionOptions::None; in isCxxReturnUdt()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/COFF/ |
| H A D | function-options.ll | 64 ; CHECK: FunctionOptions [ (0x0) 79 ; CHECK: FunctionOptions [ (0x1) 91 ; CHECK: FunctionOptions [ (0x2) 117 ; CHECK: FunctionOptions [ (0x0) 128 ; CHECK: FunctionOptions [ (0x0) 153 ; CHECK: FunctionOptions [ (0x1) 165 ; CHECK: FunctionOptions [ (0x0) 190 ; CHECK: FunctionOptions [ (0x1) 215 ; CHECK: FunctionOptions [ (0x0) 226 ; CHECK: FunctionOptions [ (0x1) [all …]
|
| H A D | types-calling-conv.ll | 54 ; CHECK: FunctionOptions [ (0x0) 112 ; CHECK: FunctionOptions [ (0x0) 127 ; CHECK: FunctionOptions [ (0x0) 142 ; CHECK: FunctionOptions [ (0x0) 157 ; CHECK: FunctionOptions [ (0x0)
|
| H A D | types-non-virtual-methods.ll | 42 ; CHECK: FunctionOptions [ (0x0) 81 ; CHECK: FunctionOptions [ (0x0) 161 ; CHECK: FunctionOptions [ (0x0) 180 ; CHECK: FunctionOptions [ (0x0) 199 ; CHECK: FunctionOptions [ (0x0)
|
| H A D | static-methods.ll | 22 ; CHECK-NEXT: FunctionOptions [ (0x0) 34 ; CHECK-NEXT: FunctionOptions [ (0x0) 46 ; CHECK-NEXT: FunctionOptions [ (0x0)
|
| H A D | types-method-ref-qualifiers.ll | 110 ; CHECK: FunctionOptions [ (0x0) 136 ; CHECK: FunctionOptions [ (0x0) 162 ; CHECK: FunctionOptions [ (0x0)
|
| H A D | types-empty-member-fn.ll | 24 ; CHECK-NEXT: FunctionOptions [ (0x0)
|
| H A D | types-basic.ll | 53 ; CHECK: FunctionOptions [ (0x0) 127 ; CHECK: FunctionOptions [ (0x0) 202 ; CHECK: FunctionOptions [ (0x0) 365 ; ASM: .byte 0x0 # FunctionOptions 423 ; ASM: .byte 0x0 # FunctionOptions 489 ; ASM: .byte 0x0 # FunctionOptions
|
| H A D | type-quals.ll | 76 ; CHECK: FunctionOptions [ (0x0) 202 ; CHECK: FunctionOptions [ (0x0) 237 ; CHECK: FunctionOptions [ (0x0) 286 ; CHECK: FunctionOptions [ (0x0)
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeRecord.h | 151 FunctionOptions Options, uint16_t ParameterCount, in ProcedureRecord() 159 FunctionOptions getOptions() const { return Options; } in getOptions() 165 FunctionOptions Options = FunctionOptions::None; 178 FunctionOptions Options, uint16_t ParameterCount, in MemberFunctionRecord() 190 FunctionOptions getOptions() const { return Options; } in getOptions() 199 FunctionOptions Options = FunctionOptions::None;
|
| H A D | CodeView.h | 249 enum class FunctionOptions : uint8_t { enum 255 CV_DEFINE_ENUM_CLASS_FLAGS_OPERATORS(FunctionOptions)
|
| /llvm-project-15.0.7/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLTypes.cpp | 67 LLVM_YAML_DECLARE_BITSET_TRAITS(FunctionOptions) 352 void ScalarBitSetTraits<FunctionOptions>::bitset(IO &IO, in bitset() 353 FunctionOptions &Options) { in bitset() 354 IO.bitSetCase(Options, "None", FunctionOptions::None); in bitset() 355 IO.bitSetCase(Options, "CxxReturnUdt", FunctionOptions::CxxReturnUdt); in bitset() 356 IO.bitSetCase(Options, "Constructor", FunctionOptions::Constructor); in bitset() 358 FunctionOptions::ConstructorWithVirtualBases); in bitset()
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-readobj/COFF/ |
| H A D | codeview-merging.test | 28 OBJ1-NEXT: FunctionOptions [ (0x0) 67 CHECK-NEXT: FunctionOptions [ (0x0)
|
| /llvm-project-15.0.7/lldb/test/Shell/SymbolFile/NativePDB/Inputs/ |
| H A D | inline_sites.s | 397 .byte 0x0 # FunctionOptions 426 .byte 0x0 # FunctionOptions 489 .byte 0x0 # FunctionOptions 554 .byte 0x0 # FunctionOptions
|
| /llvm-project-15.0.7/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalTypeDumper.cpp | 212 static std::string formatFunctionOptions(FunctionOptions Options) { in formatFunctionOptions() 215 PUSH_FLAG(FunctionOptions, CxxReturnUdt, Options, "returns cxx udt"); in formatFunctionOptions() 216 PUSH_FLAG(FunctionOptions, ConstructorWithVirtualBases, Options, in formatFunctionOptions() 218 PUSH_FLAG(FunctionOptions, Constructor, Options, "constructor"); in formatFunctionOptions()
|
| /llvm-project-15.0.7/lld/test/COFF/ |
| H A D | pdb-inlinees.s | 223 # FunctionOptions [ (0x0) 260 # FunctionOptions [ (0x0)
|
| H A D | pdb-inlinees-extrafiles.s | 225 # FunctionOptions [ (0x0) 262 # FunctionOptions [ (0x0)
|
| /llvm-project-15.0.7/lldb/test/Shell/SymbolFile/NativePDB/ |
| H A D | missing-type.s | 67 .byte 0x0 # FunctionOptions
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/ |
| H A D | EnumTables.cpp | 426 CV_ENUM_CLASS_ENT(FunctionOptions, CxxReturnUdt), 427 CV_ENUM_CLASS_ENT(FunctionOptions, Constructor), 428 CV_ENUM_CLASS_ENT(FunctionOptions, ConstructorWithVirtualBases),
|
| H A D | TypeDumpVisitor.cpp | 139 ENUM_ENTRY(FunctionOptions, CxxReturnUdt), 140 ENUM_ENTRY(FunctionOptions, Constructor), 141 ENUM_ENTRY(FunctionOptions, ConstructorWithVirtualBases),
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.h | 433 codeview::FunctionOptions FO = codeview::FunctionOptions::None);
|
| /llvm-project-15.0.7/llvm/unittests/DebugInfo/CodeView/ |
| H A D | TypeHashingTest.cpp | 41 PR.Options = FunctionOptions::None; in createProcedureRecord()
|
| /llvm-project-15.0.7/lld/test/COFF/Inputs/ |
| H A D | pdb-global-constants-b.s | 135 # FunctionOptions [ (0x0)
|
| H A D | pdb-global-constants-a.s | 145 # FunctionOptions [ (0x0)
|
| /llvm-project-15.0.7/llvm/test/MC/COFF/ |
| H A D | cv-def-range-align.s | 142 # FunctionOptions [ (0x0)
|