mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
fix x86-64 mmx calling convention for real, which passes in integer gprs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37534 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6b7c21cc30
commit
fdbe720416
@ -1183,9 +1183,10 @@ X86TargetLowering::LowerX86_64CCCArguments(SDOperand Op, SelectionDAG &DAG) {
|
||||
RC = X86::FR64RegisterClass;
|
||||
else {
|
||||
assert(MVT::isVector(RegVT));
|
||||
if (MVT::getSizeInBits(RegVT) == 64)
|
||||
RC = X86::VR64RegisterClass;
|
||||
else
|
||||
if (MVT::getSizeInBits(RegVT) == 64) {
|
||||
RC = X86::GR64RegisterClass; // MMX values are passed in GPRs.
|
||||
RegVT = MVT::i64;
|
||||
} else
|
||||
RC = X86::VR128RegisterClass;
|
||||
}
|
||||
|
||||
@ -1205,6 +1206,11 @@ X86TargetLowering::LowerX86_64CCCArguments(SDOperand Op, SelectionDAG &DAG) {
|
||||
if (VA.getLocInfo() != CCValAssign::Full)
|
||||
ArgValue = DAG.getNode(ISD::TRUNCATE, VA.getValVT(), ArgValue);
|
||||
|
||||
// Handle MMX values passed in GPRs.
|
||||
if (RegVT != VA.getLocVT() && RC == X86::GR64RegisterClass &&
|
||||
MVT::getSizeInBits(RegVT) == 64)
|
||||
ArgValue = DAG.getNode(ISD::BIT_CONVERT, VA.getLocVT(), ArgValue);
|
||||
|
||||
ArgValues.push_back(ArgValue);
|
||||
} else {
|
||||
assert(VA.isMemLoc());
|
||||
|
Loading…
x
Reference in New Issue
Block a user