Home
last modified time | relevance | path

Searched refs:ThisCall (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyFunctionDumper.cpp70 if ((ClassParent && CC == CallingConvention::ThisCall) || in start()
173 if ((ClassParent && CC != CallingConvention::ThisCall) || in start()
H A DMinimalTypeDumper.cpp129 RETURN_CASE(CallingConvention, ThisCall, "thiscall"); in formatCallingConvention()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp2357 auto ThisCall = *It; in handleCallsitesWithMultipleTargets() local
2366 if (!calleesMatch(ThisCall.call(), EI, TailCallToContextNodeMap)) { in handleCallsitesWithMultipleTargets()
2375 if (Node->Call != ThisCall) { in handleCallsitesWithMultipleTargets()
2376 Node->setCall(ThisCall); in handleCallsitesWithMultipleTargets()
2380 NewCallToNode.push_back({ThisCall, Node}); in handleCallsitesWithMultipleTargets()
2401 auto ThisCall = *It; in handleCallsitesWithMultipleTargets() local
2402 if (!sameCallee(Node->Call.call(), ThisCall.call())) in handleCallsitesWithMultipleTargets()
2404 Node->MatchingCalls.push_back(ThisCall); in handleCallsitesWithMultipleTargets()
2442 for (auto ThisCall : AllCalls) { in partitionCallsByCallee() local
2443 auto *F = getCalleeFunc(ThisCall.call()); in partitionCallsByCallee()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h168 ThisCall = 0x0b, // this call (this passed in register) enumerator
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp85 CASE_OUTPUT_ENUM_CLASS_STR(PDB_CallingConv, ThisCall , "thiscall", OS) in operator <<()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DEnumTables.cpp413 CV_ENUM_CLASS_ENT(CallingConvention, ThisCall),
H A DTypeDumpVisitor.cpp122 ENUM_ENTRY(CallingConvention, ThisCall),
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp248 IO.enumCase(Value, "ThisCall", CallingConvention::ThisCall); in enumeration()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp353 case llvm::codeview::CallingConvention::ThisCall: in TranslateCallingConvention()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp150 case CC::ThisCall: in TranslateCallingConvention()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp2072 case attr::ThisCall: OS << "thiscall"; break; in printAttributedAfter()
H A DType.cpp4340 case attr::ThisCall: in isCallingConv()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp2016 case dwarf::DW_CC_BORLAND_thiscall: return CallingConvention::ThisCall; in dwarfCCToCodeView()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td3402 def ThisCall : DeclOrTypeAttr {