Searched refs:PDB_CallingConv (Results 1 – 13 of 13) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
H A D | PDBExtras.cpp | 72 const PDB_CallingConv &Conv) { in operator <<() 75 CASE_OUTPUT_ENUM_CLASS_STR(PDB_CallingConv, NearC , "cdecl", OS) in operator <<() 76 CASE_OUTPUT_ENUM_CLASS_STR(PDB_CallingConv, FarC , "cdecl", OS) in operator <<() 77 CASE_OUTPUT_ENUM_CLASS_STR(PDB_CallingConv, NearPascal , "pascal", OS) in operator <<() 78 CASE_OUTPUT_ENUM_CLASS_STR(PDB_CallingConv, FarPascal , "pascal", OS) in operator <<() 79 CASE_OUTPUT_ENUM_CLASS_STR(PDB_CallingConv, NearFast , "fastcall", OS) in operator <<() 80 CASE_OUTPUT_ENUM_CLASS_STR(PDB_CallingConv, FarFast , "fastcall", OS) in operator <<() 81 CASE_OUTPUT_ENUM_CLASS_STR(PDB_CallingConv, NearStdCall, "stdcall", OS) in operator <<() 82 CASE_OUTPUT_ENUM_CLASS_STR(PDB_CallingConv, FarStdCall , "stdcall", OS) in operator <<() 83 CASE_OUTPUT_ENUM_CLASS_STR(PDB_CallingConv, NearSysCall, "syscall", OS) in operator <<() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | NativeTypeFunctionSig.h | 42 PDB_CallingConv getCallingConvention() const override;
|
H A D | NativeRawSymbol.h | 77 PDB_CallingConv getCallingConvention() const override;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
H A D | PDBExtras.h | 26 raw_ostream &operator<<(raw_ostream &OS, const PDB_CallingConv &Conv);
|
H A D | IPDBRawSymbol.h | 97 virtual PDB_CallingConv getCallingConvention() const = 0;
|
H A D | PDBTypes.h | 220 using PDB_CallingConv = codeview::CallingConvention; variable
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | NativeRawSymbol.cpp | 143 PDB_CallingConv NativeRawSymbol::getCallingConvention() const { in getCallingConvention() 144 return PDB_CallingConv::FarStdCall; in getCallingConvention()
|
H A D | NativeTypeFunctionSig.cpp | 152 PDB_CallingConv NativeTypeFunctionSig::getCallingConvention() const { in getCallingConvention()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | PrettyVariableDumper.cpp | 186 PDB_CallingConv CC = FuncSig->getCallingConvention(); in dump()
|
H A D | PrettyFunctionDumper.cpp | 68 PDB_CallingConv CC = Symbol.getCallingConvention(); in start()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/ |
H A D | DIARawSymbol.h | 72 PDB_CallingConv getCallingConvention() const override;
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/ |
H A D | DIARawSymbol.cpp | 239 RAW_METHOD_DUMP_AS(OS, callingConvention, PDB_CallingConv); in dump() 624 PDB_CallingConv DIARawSymbol::getCallingConvention() const { in getCallingConvention() 625 return PrivateGetDIAValue<DWORD, PDB_CallingConv>( in getCallingConvention()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | PDBASTParser.cpp | 345 static clang::CallingConv TranslateCallingConvention(PDB_CallingConv pdb_cc) { in TranslateCallingConvention()
|