Home
last modified time | relevance | path

Searched refs:X86_VectorCall (Results 1 – 11 of 11) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DMangler.cpp85 case CallingConv::X86_VectorCall: in hasByteCountSuffix()
153 CC != CallingConv::X86_VectorCall) in getNameWithPrefix()
158 else if (CC == CallingConv::X86_VectorCall) in getNameWithPrefix()
170 if (CC == CallingConv::X86_VectorCall) in getNameWithPrefix()
H A DAsmWriter.cpp306 case CallingConv::X86_VectorCall:Out << "x86_vectorcallcc"; break; in PrintCallingConv()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DCallingConv.h173 X86_VectorCall = 80, enumerator
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DCallingConvLower.cpp203 return (CC == CallingConv::X86_VectorCall || CC == CallingConv::X86_FastCall); in isValueTypeInRegForCC()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86Subtarget.h901 case CallingConv::X86_VectorCall: in isCallingConvWin64()
H A DX86CallingConv.td447 CCIfCC<"CallingConv::X86_VectorCall", CCDelegateTo<RetCC_X86_32_VectorCall>>,
472 CCIfCC<"CallingConv::X86_VectorCall", CCDelegateTo<RetCC_X86_64_Vectorcall>>,
1044 CCIfCC<"CallingConv::X86_VectorCall", CCDelegateTo<CC_X86_Win32_VectorCall>>,
1065 CCIfCC<"CallingConv::X86_VectorCall", CCDelegateTo<CC_X86_Win64_VectorCall>>,
H A DX86ISelLowering.cpp3206 case CallingConv::X86_VectorCall: in mayTailCallThisCC()
3555 (is64Bit() || (CallConv == CallingConv::X86_VectorCall || in forwardMustTailParameters()
3637 if (CallingConv::X86_VectorCall == CallConv) { in LowerFormalArguments()
3989 if (CallingConv::X86_VectorCall == CallConv) { in LowerCall()
4981 case CallingConv::X86_VectorCall: in isCalleePop()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DTargetInfo.cpp1480 if ((State.CC == llvm::CallingConv::X86_VectorCall || in classifyReturnType()
1707 State.CC == llvm::CallingConv::X86_VectorCall || in shouldAggregateUseDirect()
1726 State.CC == llvm::CallingConv::X86_VectorCall || in shouldPrimitiveUseInReg()
1769 bool IsVectorCall = State.CC == llvm::CallingConv::X86_VectorCall; in classifyArgumentType()
1911 } else if (State.CC == llvm::CallingConv::X86_VectorCall) { in computeInfo()
1945 if (State.CC == llvm::CallingConv::X86_VectorCall) in computeInfo()
4314 bool IsVectorCall = CC == llvm::CallingConv::X86_VectorCall; in computeInfo()
H A DCGCall.cpp62 case CC_X86VectorCall: return llvm::CallingConv::X86_VectorCall; in ClangCallConvToLLVMCallConv()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp9569 if (CLI.CallConv == CallingConv::X86_VectorCall && in LowerCallTo()
10109 if (F.getCallingConv() == CallingConv::X86_VectorCall && in LowerArguments()
/freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp1828 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break; in parseOptionalCallingConv()