@@ -28728,10 +28728,18 @@ X86TargetLowering::EmitVAARG64WithCustomInserter(MachineInstr &MI,
28728
28728
unsigned ArgMode = MI.getOperand(7).getImm();
28729
28729
unsigned Align = MI.getOperand(8).getImm();
28730
28730
28731
+ MachineFunction *MF = MBB->getParent();
28732
+
28731
28733
// Memory Reference
28732
28734
assert(MI.hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
28733
- SmallVector<MachineMemOperand *, 1> MMOs(MI.memoperands_begin(),
28734
- MI.memoperands_end());
28735
+
28736
+ MachineMemOperand *OldMMO = MI.memoperands().front();
28737
+
28738
+ // Clone the MMO into two separate MMOs for loading and storing
28739
+ MachineMemOperand *LoadOnlyMMO = MF->getMachineMemOperand(
28740
+ OldMMO, OldMMO->getFlags() & ~MachineMemOperand::MOStore);
28741
+ MachineMemOperand *StoreOnlyMMO = MF->getMachineMemOperand(
28742
+ OldMMO, OldMMO->getFlags() & ~MachineMemOperand::MOLoad);
28735
28743
28736
28744
// Machine Information
28737
28745
const TargetInstrInfo *TII = Subtarget.getInstrInfo();
@@ -28796,7 +28804,6 @@ X86TargetLowering::EmitVAARG64WithCustomInserter(MachineInstr &MI,
28796
28804
OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
28797
28805
28798
28806
const BasicBlock *LLVM_BB = MBB->getBasicBlock();
28799
- MachineFunction *MF = MBB->getParent();
28800
28807
overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
28801
28808
offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
28802
28809
endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
@@ -28829,7 +28836,7 @@ X86TargetLowering::EmitVAARG64WithCustomInserter(MachineInstr &MI,
28829
28836
.add(Index)
28830
28837
.addDisp(Disp, UseFPOffset ? 4 : 0)
28831
28838
.add(Segment)
28832
- .setMemRefs(MMOs );
28839
+ .setMemRefs(LoadOnlyMMO );
28833
28840
28834
28841
// Check if there is enough room left to pull this argument.
28835
28842
BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
@@ -28854,7 +28861,7 @@ X86TargetLowering::EmitVAARG64WithCustomInserter(MachineInstr &MI,
28854
28861
.add(Index)
28855
28862
.addDisp(Disp, 16)
28856
28863
.add(Segment)
28857
- .setMemRefs(MMOs );
28864
+ .setMemRefs(LoadOnlyMMO );
28858
28865
28859
28866
// Zero-extend the offset
28860
28867
unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
@@ -28882,7 +28889,7 @@ X86TargetLowering::EmitVAARG64WithCustomInserter(MachineInstr &MI,
28882
28889
.addDisp(Disp, UseFPOffset ? 4 : 0)
28883
28890
.add(Segment)
28884
28891
.addReg(NextOffsetReg)
28885
- .setMemRefs(MMOs );
28892
+ .setMemRefs(StoreOnlyMMO );
28886
28893
28887
28894
// Jump to endMBB
28888
28895
BuildMI(offsetMBB, DL, TII->get(X86::JMP_1))
@@ -28901,7 +28908,7 @@ X86TargetLowering::EmitVAARG64WithCustomInserter(MachineInstr &MI,
28901
28908
.add(Index)
28902
28909
.addDisp(Disp, 8)
28903
28910
.add(Segment)
28904
- .setMemRefs(MMOs );
28911
+ .setMemRefs(LoadOnlyMMO );
28905
28912
28906
28913
// If we need to align it, do so. Otherwise, just copy the address
28907
28914
// to OverflowDestReg.
@@ -28938,7 +28945,7 @@ X86TargetLowering::EmitVAARG64WithCustomInserter(MachineInstr &MI,
28938
28945
.addDisp(Disp, 8)
28939
28946
.add(Segment)
28940
28947
.addReg(NextAddrReg)
28941
- .setMemRefs(MMOs );
28948
+ .setMemRefs(StoreOnlyMMO );
28942
28949
28943
28950
// If we branched, emit the PHI to the front of endMBB.
28944
28951
if (offsetMBB) {
0 commit comments