/openbsd/gnu/llvm/llvm/lib/DebugInfo/CodeView/ |
H A D | EnumTables.cpp | 399 CV_ENUM_CLASS_ENT(CallingConvention, NearC), 400 CV_ENUM_CLASS_ENT(CallingConvention, FarC), 404 CV_ENUM_CLASS_ENT(CallingConvention, FarFast), 411 CV_ENUM_CLASS_ENT(CallingConvention, Generic), 413 CV_ENUM_CLASS_ENT(CallingConvention, PpcCall), 414 CV_ENUM_CLASS_ENT(CallingConvention, SHCall), 415 CV_ENUM_CLASS_ENT(CallingConvention, ArmCall), 417 CV_ENUM_CLASS_ENT(CallingConvention, TriCall), 418 CV_ENUM_CLASS_ENT(CallingConvention, SH5Call), 420 CV_ENUM_CLASS_ENT(CallingConvention, ClrCall), [all …]
|
H A D | TypeDumpVisitor.cpp | 112 ENUM_ENTRY(CallingConvention, NearC), 113 ENUM_ENTRY(CallingConvention, FarC), 117 ENUM_ENTRY(CallingConvention, FarFast), 124 ENUM_ENTRY(CallingConvention, Generic), 126 ENUM_ENTRY(CallingConvention, PpcCall), 127 ENUM_ENTRY(CallingConvention, SHCall), 128 ENUM_ENTRY(CallingConvention, ArmCall), 130 ENUM_ENTRY(CallingConvention, TriCall), 131 ENUM_ENTRY(CallingConvention, SH5Call), 133 ENUM_ENTRY(CallingConvention, ClrCall), [all …]
|
/openbsd/gnu/llvm/llvm/tools/llvm-pdbutil/ |
H A D | MinimalTypeDumper.cpp | 106 RETURN_CASE(CallingConvention, AM33Call, "am33call"); in formatCallingConvention() 107 RETURN_CASE(CallingConvention, ArmCall, "armcall"); in formatCallingConvention() 108 RETURN_CASE(CallingConvention, ClrCall, "clrcall"); in formatCallingConvention() 109 RETURN_CASE(CallingConvention, FarC, "far cdecl"); in formatCallingConvention() 114 RETURN_CASE(CallingConvention, Generic, "generic"); in formatCallingConvention() 115 RETURN_CASE(CallingConvention, Inline, "inline"); in formatCallingConvention() 118 RETURN_CASE(CallingConvention, NearC, "cdecl"); in formatCallingConvention() 124 RETURN_CASE(CallingConvention, PpcCall, "ppccall"); in formatCallingConvention() 125 RETURN_CASE(CallingConvention, SHCall, "shcall"); in formatCallingConvention() 126 RETURN_CASE(CallingConvention, SH5Call, "sh5call"); in formatCallingConvention() [all …]
|
H A D | PrettyFunctionDumper.cpp | 70 if ((ClassParent && CC == CallingConvention::ThisCall) || in start() 71 (!ClassParent && CC == CallingConvention::NearStdCall)) { in start() 169 CallingConvention CC = Signature->getCallingConvention(); in start() 173 if ((ClassParent && CC != CallingConvention::ThisCall) || in start() 174 (!ClassParent && CC != CallingConvention::NearStdCall)) { in start()
|
/openbsd/gnu/llvm/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFTypePrinter.cpp | 571 case CallingConvention::DW_CC_BORLAND_stdcall: in appendSubroutineNameAfter() 577 case CallingConvention::DW_CC_BORLAND_thiscall: in appendSubroutineNameAfter() 580 case CallingConvention::DW_CC_LLVM_vectorcall: in appendSubroutineNameAfter() 583 case CallingConvention::DW_CC_BORLAND_pascal: in appendSubroutineNameAfter() 586 case CallingConvention::DW_CC_LLVM_Win64: in appendSubroutineNameAfter() 589 case CallingConvention::DW_CC_LLVM_X86_64SysV: in appendSubroutineNameAfter() 592 case CallingConvention::DW_CC_LLVM_AAPCS: in appendSubroutineNameAfter() 596 case CallingConvention::DW_CC_LLVM_AAPCS_VFP: in appendSubroutineNameAfter() 610 case CallingConvention::DW_CC_LLVM_Swift: in appendSubroutineNameAfter() 617 case CallingConvention::DW_CC_LLVM_PreserveAll: in appendSubroutineNameAfter() [all …]
|
/openbsd/gnu/llvm/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLTypes.cpp | 56 LLVM_YAML_DECLARE_ENUM_TRAITS(CallingConvention) 237 IO &IO, CallingConvention &Value) { in enumeration() 238 IO.enumCase(Value, "NearC", CallingConvention::NearC); in enumeration() 239 IO.enumCase(Value, "FarC", CallingConvention::FarC); in enumeration() 243 IO.enumCase(Value, "FarFast", CallingConvention::FarFast); in enumeration() 250 IO.enumCase(Value, "Generic", CallingConvention::Generic); in enumeration() 252 IO.enumCase(Value, "PpcCall", CallingConvention::PpcCall); in enumeration() 253 IO.enumCase(Value, "SHCall", CallingConvention::SHCall); in enumeration() 254 IO.enumCase(Value, "ArmCall", CallingConvention::ArmCall); in enumeration() 256 IO.enumCase(Value, "TriCall", CallingConvention::TriCall); in enumeration() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | TypeRecord.h | 150 ProcedureRecord(TypeIndex ReturnType, CallingConvention CallConv, in ProcedureRecord() 158 CallingConvention getCallConv() const { return CallConv; } in getCallConv() 164 CallingConvention CallConv = CallingConvention::NearC; 177 TypeIndex ThisType, CallingConvention CallConv, in MemberFunctionRecord() 189 CallingConvention getCallConv() const { return CallConv; } in getCallConv() 198 CallingConvention CallConv = CallingConvention::NearC;
|
H A D | CodeView.h | 175 enum class CallingConvention : uint8_t { enum
|
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | PDBASTParser.cpp | 348 case llvm::codeview::CallingConvention::NearC: in TranslateCallingConvention() 350 case llvm::codeview::CallingConvention::NearStdCall: in TranslateCallingConvention() 352 case llvm::codeview::CallingConvention::NearFast: in TranslateCallingConvention() 354 case llvm::codeview::CallingConvention::ThisCall: in TranslateCallingConvention() 356 case llvm::codeview::CallingConvention::NearVector: in TranslateCallingConvention() 358 case llvm::codeview::CallingConvention::NearPascal: in TranslateCallingConvention()
|
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbAstBuilder.h | 108 llvm::codeview::CallingConvention calling_convention);
|
H A D | PdbAstBuilder.cpp | 133 TranslateCallingConvention(llvm::codeview::CallingConvention conv) { in TranslateCallingConvention() 134 using CC = llvm::codeview::CallingConvention; in TranslateCallingConvention() 1182 llvm::codeview::CallingConvention calling_convention) { in CreateFunctionType()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
H A D | CodeViewDebug.cpp | 1965 static CallingConvention dwarfCCToCodeView(unsigned DwarfCC) { in dwarfCCToCodeView() 1967 case dwarf::DW_CC_normal: return CallingConvention::NearC; in dwarfCCToCodeView() 1968 case dwarf::DW_CC_BORLAND_msfastcall: return CallingConvention::NearFast; in dwarfCCToCodeView() 1969 case dwarf::DW_CC_BORLAND_thiscall: return CallingConvention::ThisCall; in dwarfCCToCodeView() 1970 case dwarf::DW_CC_BORLAND_stdcall: return CallingConvention::NearStdCall; in dwarfCCToCodeView() 1971 case dwarf::DW_CC_BORLAND_pascal: return CallingConvention::NearPascal; in dwarfCCToCodeView() 1972 case dwarf::DW_CC_LLVM_vectorcall: return CallingConvention::NearVector; in dwarfCCToCodeView() 1974 return CallingConvention::NearC; in dwarfCCToCodeView() 2055 CallingConvention CC = dwarfCCToCodeView(Ty->getCC()); in lowerTypeFunction() 2104 CallingConvention CC = dwarfCCToCodeView(Ty->getCC()); in lowerTypeMemberFunction()
|
/openbsd/gnu/llvm/clang/include/clang/CodeGen/ |
H A D | CGFunctionInfo.h | 555 unsigned CallingConvention : 8; variable 688 unsigned getCallingConvention() const { return CallingConvention; } in getCallingConvention()
|
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/ |
H A D | PDBTypes.h | 220 using PDB_CallingConv = codeview::CallingConvention;
|
/openbsd/gnu/llvm/llvm/include/llvm/BinaryFormat/ |
H A D | Dwarf.h | 413 enum CallingConvention { enum
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/ |
H A D | X86FrameLowering.cpp | 2954 CallingConv::ID CallingConvention = MF.getFunction().getCallingConv(); in GetScratchRegister() local 2957 if (CallingConvention == CallingConv::HiPE) { in GetScratchRegister() 2973 if (CallingConvention == CallingConv::X86_FastCall || in GetScratchRegister() 2974 CallingConvention == CallingConv::Fast || in GetScratchRegister() 2975 CallingConvention == CallingConv::Tail) { in GetScratchRegister()
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | TargetInfo.cpp | 5518 unsigned CallingConvention) const; 5754 unsigned CallingConvention) const { in classifyArgumentType() 5800 bool IsWin64 = Kind == Win64 || CallingConvention == llvm::CallingConv::Win64; in classifyArgumentType()
|
H A D | CGCall.cpp | 832 FI->CallingConvention = llvmCC; in create()
|