aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnand Shukla <ashukla@cs.uiuc.edu>2003-06-01 02:48:23 +0000
committerAnand Shukla <ashukla@cs.uiuc.edu>2003-06-01 02:48:23 +0000
commit55afc33882d85db54e7ce4801a38dbb0cab54317 (patch)
treee99e76ea3266cf74c78f4ae1f9f46caad039e328
parent619754fb180a39d5a1b76518938ec140a37d1c91 (diff)
Add map info for arguments to call (copies)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6503 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/SparcV9/SparcV9RegInfo.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/SparcV9RegInfo.cpp b/lib/Target/SparcV9/SparcV9RegInfo.cpp
index 141f22667d..1cc274de00 100644
--- a/lib/Target/SparcV9/SparcV9RegInfo.cpp
+++ b/lib/Target/SparcV9/SparcV9RegInfo.cpp
@@ -12,6 +12,7 @@
#include "llvm/CodeGen/PhyRegAlloc.h"
#include "llvm/CodeGen/InstrSelection.h"
#include "llvm/CodeGen/MachineInstrBuilder.h"
+#include "llvm/CodeGen/MachineCodeForInstruction.h"
#include "llvm/CodeGen/MachineInstrAnnot.h"
#include "llvm/CodeGen/FunctionLiveVarInfo.h" // FIXME: Remove
#include "../../CodeGen/RegAlloc/RegAllocCommon.h" // FIXME!
@@ -940,10 +941,19 @@ void UltraSparcRegInfo::colorCallArgs(MachineInstr *CallMI,
//
for(unsigned i=0; i < ReorderedVec.size(); i++)
CallAI->InstrnsBefore.push_back( ReorderedVec[i] );
+
+ //Insert machine instructions before and after call into the
+ //call instructions map --- Anand
+ const CallInst *callInst = argDesc->getCallInst();
+ MachineCodeForInstruction &mvec = MachineCodeForInstruction::get(callInst);
+ mvec.insert(mvec.begin(), CallAI->InstrnsBefore.begin(),
+ CallAI->InstrnsBefore.end());
+ mvec.insert(mvec.end(), CallAI->InstrnsAfter.begin(),
+ CallAI->InstrnsAfter.end());
}
//---------------------------------------------------------------------------
-// This method is called for an LLVM return instruction to identify which
+// this method is called for an LLVM return instruction to identify which
// values will be returned from this method and to suggest colors.
//---------------------------------------------------------------------------
void UltraSparcRegInfo::suggestReg4RetValue(MachineInstr *RetMI,