2001-09-18 15:03:13 +02:00
|
|
|
// $Id$
|
2001-09-14 05:47:57 +02:00
|
|
|
//***************************************************************************
|
|
|
|
// File:
|
|
|
|
// SparcInstrSelection.cpp
|
|
|
|
//
|
|
|
|
// Purpose:
|
2001-10-01 02:12:53 +02:00
|
|
|
// BURS instruction selection for SPARC V9 architecture.
|
2001-09-14 05:47:57 +02:00
|
|
|
//
|
|
|
|
// History:
|
|
|
|
// 7/02/01 - Vikram Adve - Created
|
|
|
|
//**************************************************************************/
|
|
|
|
|
|
|
|
#include "SparcInternals.h"
|
2001-10-18 02:26:20 +02:00
|
|
|
#include "SparcInstrSelectionSupport.h"
|
2001-10-10 22:56:33 +02:00
|
|
|
#include "llvm/CodeGen/InstrSelectionSupport.h"
|
2001-09-14 05:47:57 +02:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
|
|
|
#include "llvm/CodeGen/InstrForest.h"
|
|
|
|
#include "llvm/CodeGen/InstrSelection.h"
|
|
|
|
#include "llvm/Support/MathExtras.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/iTerminators.h"
|
|
|
|
#include "llvm/iMemory.h"
|
|
|
|
#include "llvm/iOther.h"
|
|
|
|
#include "llvm/BasicBlock.h"
|
|
|
|
#include "llvm/Method.h"
|
|
|
|
#include "llvm/ConstPoolVals.h"
|
2001-10-13 08:54:30 +02:00
|
|
|
#include <math.h>
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
//******************** Internal Data Declarations ************************/
|
|
|
|
|
|
|
|
|
|
|
|
//************************* Forward Declarations ***************************/
|
|
|
|
|
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
static void SetMemOperands_Internal (MachineInstr* minstr,
|
|
|
|
const InstructionNode* vmInstrNode,
|
|
|
|
Value* ptrVal,
|
|
|
|
Value* arrayOffsetVal,
|
|
|
|
const vector<ConstPoolVal*>& idxVec,
|
|
|
|
const TargetMachine& target);
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
//************************ Internal Functions ******************************/
|
|
|
|
|
|
|
|
|
|
|
|
static inline MachineOpCode
|
|
|
|
ChooseBprInstruction(const InstructionNode* instrNode)
|
|
|
|
{
|
|
|
|
MachineOpCode opCode;
|
|
|
|
|
|
|
|
Instruction* setCCInstr =
|
|
|
|
((InstructionNode*) instrNode->leftChild())->getInstruction();
|
|
|
|
|
|
|
|
switch(setCCInstr->getOpcode())
|
|
|
|
{
|
|
|
|
case Instruction::SetEQ: opCode = BRZ; break;
|
|
|
|
case Instruction::SetNE: opCode = BRNZ; break;
|
|
|
|
case Instruction::SetLE: opCode = BRLEZ; break;
|
|
|
|
case Instruction::SetGE: opCode = BRGEZ; break;
|
|
|
|
case Instruction::SetLT: opCode = BRLZ; break;
|
|
|
|
case Instruction::SetGT: opCode = BRGZ; break;
|
|
|
|
default:
|
|
|
|
assert(0 && "Unrecognized VM instruction!");
|
|
|
|
opCode = INVALID_OPCODE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return opCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline MachineOpCode
|
|
|
|
ChooseBpccInstruction(const InstructionNode* instrNode,
|
2001-10-01 02:12:53 +02:00
|
|
|
const BinaryOperator* setCCInstr)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MachineOpCode opCode = INVALID_OPCODE;
|
|
|
|
|
|
|
|
bool isSigned = setCCInstr->getOperand(0)->getType()->isSigned();
|
|
|
|
|
|
|
|
if (isSigned)
|
|
|
|
{
|
|
|
|
switch(setCCInstr->getOpcode())
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
case Instruction::SetEQ: opCode = BE; break;
|
|
|
|
case Instruction::SetNE: opCode = BNE; break;
|
|
|
|
case Instruction::SetLE: opCode = BLE; break;
|
|
|
|
case Instruction::SetGE: opCode = BGE; break;
|
|
|
|
case Instruction::SetLT: opCode = BL; break;
|
|
|
|
case Instruction::SetGT: opCode = BG; break;
|
|
|
|
default:
|
|
|
|
assert(0 && "Unrecognized VM instruction!");
|
|
|
|
break;
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch(setCCInstr->getOpcode())
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
case Instruction::SetEQ: opCode = BE; break;
|
|
|
|
case Instruction::SetNE: opCode = BNE; break;
|
|
|
|
case Instruction::SetLE: opCode = BLEU; break;
|
|
|
|
case Instruction::SetGE: opCode = BCC; break;
|
|
|
|
case Instruction::SetLT: opCode = BCS; break;
|
|
|
|
case Instruction::SetGT: opCode = BGU; break;
|
|
|
|
default:
|
|
|
|
assert(0 && "Unrecognized VM instruction!");
|
|
|
|
break;
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return opCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline MachineOpCode
|
|
|
|
ChooseBFpccInstruction(const InstructionNode* instrNode,
|
2001-10-01 02:12:53 +02:00
|
|
|
const BinaryOperator* setCCInstr)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MachineOpCode opCode = INVALID_OPCODE;
|
|
|
|
|
|
|
|
switch(setCCInstr->getOpcode())
|
|
|
|
{
|
|
|
|
case Instruction::SetEQ: opCode = FBE; break;
|
|
|
|
case Instruction::SetNE: opCode = FBNE; break;
|
|
|
|
case Instruction::SetLE: opCode = FBLE; break;
|
|
|
|
case Instruction::SetGE: opCode = FBGE; break;
|
|
|
|
case Instruction::SetLT: opCode = FBL; break;
|
|
|
|
case Instruction::SetGT: opCode = FBG; break;
|
|
|
|
default:
|
|
|
|
assert(0 && "Unrecognized VM instruction!");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return opCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-04 20:34:49 +01:00
|
|
|
// Create a unique TmpInstruction for a boolean value,
|
|
|
|
// representing the CC register used by a branch on that value.
|
|
|
|
// For now, hack this using a little static cache of TmpInstructions.
|
|
|
|
// Eventually the entire BURG instruction selection should be put
|
|
|
|
// into a separate class that can hold such information.
|
2001-11-08 06:04:09 +01:00
|
|
|
// The static cache is not too bad because the memory for these
|
|
|
|
// TmpInstructions will be freed along with the rest of the Method anyway.
|
2001-11-04 20:34:49 +01:00
|
|
|
//
|
|
|
|
static TmpInstruction*
|
2001-11-08 06:04:09 +01:00
|
|
|
GetTmpForCC(Value* boolVal, const Method* method, const Type* ccType)
|
2001-11-04 20:34:49 +01:00
|
|
|
{
|
|
|
|
typedef hash_map<const Value*, TmpInstruction*> BoolTmpCache;
|
|
|
|
static BoolTmpCache boolToTmpCache; // Map boolVal -> TmpInstruction*
|
|
|
|
static const Method* lastMethod = NULL; // Use to flush cache between methods
|
|
|
|
|
|
|
|
assert(boolVal->getType() == Type::BoolTy && "Weird but ok! Delete assert");
|
|
|
|
|
|
|
|
if (lastMethod != method)
|
|
|
|
{
|
|
|
|
lastMethod = method;
|
|
|
|
boolToTmpCache.clear();
|
|
|
|
}
|
|
|
|
|
2001-11-08 06:04:09 +01:00
|
|
|
// Look for tmpI and create a new one otherwise. The new value is
|
|
|
|
// directly written to map using the ref returned by operator[].
|
2001-11-04 20:34:49 +01:00
|
|
|
TmpInstruction*& tmpI = boolToTmpCache[boolVal];
|
|
|
|
if (tmpI == NULL)
|
2001-11-08 06:04:09 +01:00
|
|
|
tmpI = new TmpInstruction(TMP_INSTRUCTION_OPCODE, ccType, boolVal, NULL);
|
2001-11-04 20:34:49 +01:00
|
|
|
|
|
|
|
return tmpI;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
static inline MachineOpCode
|
|
|
|
ChooseBccInstruction(const InstructionNode* instrNode,
|
|
|
|
bool& isFPBranch)
|
|
|
|
{
|
|
|
|
InstructionNode* setCCNode = (InstructionNode*) instrNode->leftChild();
|
|
|
|
BinaryOperator* setCCInstr = (BinaryOperator*) setCCNode->getInstruction();
|
|
|
|
const Type* setCCType = setCCInstr->getOperand(0)->getType();
|
|
|
|
|
|
|
|
isFPBranch = (setCCType == Type::FloatTy || setCCType == Type::DoubleTy);
|
|
|
|
|
|
|
|
if (isFPBranch)
|
|
|
|
return ChooseBFpccInstruction(instrNode, setCCInstr);
|
|
|
|
else
|
|
|
|
return ChooseBpccInstruction(instrNode, setCCInstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-14 05:47:57 +02:00
|
|
|
static inline MachineOpCode
|
|
|
|
ChooseMovFpccInstruction(const InstructionNode* instrNode)
|
|
|
|
{
|
|
|
|
MachineOpCode opCode = INVALID_OPCODE;
|
|
|
|
|
|
|
|
switch(instrNode->getInstruction()->getOpcode())
|
|
|
|
{
|
|
|
|
case Instruction::SetEQ: opCode = MOVFE; break;
|
|
|
|
case Instruction::SetNE: opCode = MOVFNE; break;
|
|
|
|
case Instruction::SetLE: opCode = MOVFLE; break;
|
|
|
|
case Instruction::SetGE: opCode = MOVFGE; break;
|
|
|
|
case Instruction::SetLT: opCode = MOVFL; break;
|
|
|
|
case Instruction::SetGT: opCode = MOVFG; break;
|
|
|
|
default:
|
|
|
|
assert(0 && "Unrecognized VM instruction!");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return opCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Assumes that SUBcc v1, v2 -> v3 has been executed.
|
|
|
|
// In most cases, we want to clear v3 and then follow it by instruction
|
|
|
|
// MOVcc 1 -> v3.
|
|
|
|
// Set mustClearReg=false if v3 need not be cleared before conditional move.
|
|
|
|
// Set valueToMove=0 if we want to conditionally move 0 instead of 1
|
|
|
|
// (i.e., we want to test inverse of a condition)
|
2001-09-18 15:03:13 +02:00
|
|
|
// (The latter two cases do not seem to arise because SetNE needs nothing.)
|
2001-09-14 05:47:57 +02:00
|
|
|
//
|
|
|
|
static MachineOpCode
|
|
|
|
ChooseMovpccAfterSub(const InstructionNode* instrNode,
|
2001-10-01 02:12:53 +02:00
|
|
|
bool& mustClearReg,
|
|
|
|
int& valueToMove)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MachineOpCode opCode = INVALID_OPCODE;
|
|
|
|
mustClearReg = true;
|
|
|
|
valueToMove = 1;
|
|
|
|
|
|
|
|
switch(instrNode->getInstruction()->getOpcode())
|
|
|
|
{
|
2001-09-18 15:03:13 +02:00
|
|
|
case Instruction::SetEQ: opCode = MOVE; break;
|
2001-09-14 05:47:57 +02:00
|
|
|
case Instruction::SetLE: opCode = MOVLE; break;
|
|
|
|
case Instruction::SetGE: opCode = MOVGE; break;
|
|
|
|
case Instruction::SetLT: opCode = MOVL; break;
|
|
|
|
case Instruction::SetGT: opCode = MOVG; break;
|
2001-09-18 15:03:13 +02:00
|
|
|
case Instruction::SetNE: assert(0 && "No move required!"); break;
|
|
|
|
default: assert(0 && "Unrecognized VM instr!"); break;
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return opCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline MachineOpCode
|
|
|
|
ChooseConvertToFloatInstr(const InstructionNode* instrNode,
|
2001-10-01 02:12:53 +02:00
|
|
|
const Type* opType)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MachineOpCode opCode = INVALID_OPCODE;
|
|
|
|
|
|
|
|
switch(instrNode->getOpLabel())
|
|
|
|
{
|
|
|
|
case ToFloatTy:
|
|
|
|
if (opType == Type::SByteTy || opType == Type::ShortTy || opType == Type::IntTy)
|
2001-10-01 02:12:53 +02:00
|
|
|
opCode = FITOS;
|
2001-09-14 05:47:57 +02:00
|
|
|
else if (opType == Type::LongTy)
|
2001-10-01 02:12:53 +02:00
|
|
|
opCode = FXTOS;
|
2001-09-14 05:47:57 +02:00
|
|
|
else if (opType == Type::DoubleTy)
|
2001-10-01 02:12:53 +02:00
|
|
|
opCode = FDTOS;
|
2001-09-14 05:47:57 +02:00
|
|
|
else if (opType == Type::FloatTy)
|
2001-10-01 02:12:53 +02:00
|
|
|
;
|
2001-09-14 05:47:57 +02:00
|
|
|
else
|
2001-10-01 02:12:53 +02:00
|
|
|
assert(0 && "Cannot convert this type to FLOAT on SPARC");
|
2001-09-14 05:47:57 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ToDoubleTy:
|
2001-11-08 06:04:09 +01:00
|
|
|
// Use FXTOD for all integer-to-double conversions. This has to be
|
|
|
|
// consistent with the code in CreateCodeToCopyIntToFloat() since
|
|
|
|
// that will be used to load the integer into an FP register.
|
|
|
|
//
|
|
|
|
if (opType == Type::SByteTy || opType == Type::ShortTy ||
|
|
|
|
opType == Type::IntTy || opType == Type::LongTy)
|
2001-10-01 02:12:53 +02:00
|
|
|
opCode = FXTOD;
|
2001-09-14 05:47:57 +02:00
|
|
|
else if (opType == Type::FloatTy)
|
2001-10-01 02:12:53 +02:00
|
|
|
opCode = FSTOD;
|
2001-09-14 05:47:57 +02:00
|
|
|
else if (opType == Type::DoubleTy)
|
2001-10-01 02:12:53 +02:00
|
|
|
;
|
2001-09-14 05:47:57 +02:00
|
|
|
else
|
2001-10-01 02:12:53 +02:00
|
|
|
assert(0 && "Cannot convert this type to DOUBLE on SPARC");
|
2001-09-14 05:47:57 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return opCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline MachineOpCode
|
|
|
|
ChooseConvertToIntInstr(const InstructionNode* instrNode,
|
2001-10-01 02:12:53 +02:00
|
|
|
const Type* opType)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MachineOpCode opCode = INVALID_OPCODE;;
|
|
|
|
|
|
|
|
int instrType = (int) instrNode->getOpLabel();
|
|
|
|
|
|
|
|
if (instrType == ToSByteTy || instrType == ToShortTy || instrType == ToIntTy)
|
|
|
|
{
|
|
|
|
switch (opType->getPrimitiveID())
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
2001-09-14 05:47:57 +02:00
|
|
|
case Type::FloatTyID: opCode = FSTOI; break;
|
|
|
|
case Type::DoubleTyID: opCode = FDTOI; break;
|
2001-10-01 02:12:53 +02:00
|
|
|
default:
|
|
|
|
assert(0 && "Non-numeric non-bool type cannot be converted to Int");
|
|
|
|
break;
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
else if (instrType == ToLongTy)
|
|
|
|
{
|
|
|
|
switch (opType->getPrimitiveID())
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
2001-09-14 05:47:57 +02:00
|
|
|
case Type::FloatTyID: opCode = FSTOX; break;
|
|
|
|
case Type::DoubleTyID: opCode = FDTOX; break;
|
2001-10-01 02:12:53 +02:00
|
|
|
default:
|
|
|
|
assert(0 && "Non-numeric non-bool type cannot be converted to Long");
|
|
|
|
break;
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
assert(0 && "Should not get here, Mo!");
|
|
|
|
|
|
|
|
return opCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline MachineOpCode
|
2001-10-01 02:12:53 +02:00
|
|
|
ChooseAddInstructionByType(const Type* resultType)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MachineOpCode opCode = INVALID_OPCODE;
|
|
|
|
|
|
|
|
if (resultType->isIntegral() ||
|
2001-11-09 03:18:16 +01:00
|
|
|
resultType->isPointerType() ||
|
2001-10-01 02:12:53 +02:00
|
|
|
resultType->isLabelType() ||
|
2001-11-09 03:18:16 +01:00
|
|
|
isa<MethodType>(resultType) ||
|
2001-10-01 02:12:53 +02:00
|
|
|
resultType == Type::BoolTy)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
opCode = ADD;
|
|
|
|
}
|
|
|
|
else
|
2001-10-01 02:12:53 +02:00
|
|
|
switch(resultType->getPrimitiveID())
|
|
|
|
{
|
|
|
|
case Type::FloatTyID: opCode = FADDS; break;
|
|
|
|
case Type::DoubleTyID: opCode = FADDD; break;
|
|
|
|
default: assert(0 && "Invalid type for ADD instruction"); break;
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
return opCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
static inline MachineOpCode
|
|
|
|
ChooseAddInstruction(const InstructionNode* instrNode)
|
|
|
|
{
|
|
|
|
return ChooseAddInstructionByType(instrNode->getInstruction()->getType());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-14 05:47:57 +02:00
|
|
|
static inline MachineInstr*
|
|
|
|
CreateMovFloatInstruction(const InstructionNode* instrNode,
|
2001-10-01 02:12:53 +02:00
|
|
|
const Type* resultType)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MachineInstr* minstr = new MachineInstr((resultType == Type::FloatTy)
|
2001-10-01 02:12:53 +02:00
|
|
|
? FMOVS : FMOVD);
|
2001-09-14 05:47:57 +02:00
|
|
|
minstr->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
2001-10-01 02:12:53 +02:00
|
|
|
instrNode->leftChild()->getValue());
|
2001-09-14 05:47:57 +02:00
|
|
|
minstr->SetMachineOperand(1, MachineOperand::MO_VirtualRegister,
|
2001-10-01 02:12:53 +02:00
|
|
|
instrNode->getValue());
|
2001-09-14 05:47:57 +02:00
|
|
|
return minstr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline MachineInstr*
|
|
|
|
CreateAddConstInstruction(const InstructionNode* instrNode)
|
|
|
|
{
|
|
|
|
MachineInstr* minstr = NULL;
|
|
|
|
|
|
|
|
Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
|
2001-10-01 22:11:19 +02:00
|
|
|
assert(isa<ConstPoolVal>(constOp));
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
// Cases worth optimizing are:
|
|
|
|
// (1) Add with 0 for float or double: use an FMOV of appropriate type,
|
|
|
|
// instead of an FADD (1 vs 3 cycles). There is no integer MOV.
|
|
|
|
//
|
|
|
|
const Type* resultType = instrNode->getInstruction()->getType();
|
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
if (resultType == Type::FloatTy ||
|
|
|
|
resultType == Type::DoubleTy)
|
|
|
|
{
|
|
|
|
double dval = ((ConstPoolFP*) constOp)->getValue();
|
|
|
|
if (dval == 0.0)
|
|
|
|
minstr = CreateMovFloatInstruction(instrNode, resultType);
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
return minstr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline MachineOpCode
|
2001-11-04 22:59:14 +01:00
|
|
|
ChooseSubInstructionByType(const Type* resultType)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MachineOpCode opCode = INVALID_OPCODE;
|
|
|
|
|
|
|
|
if (resultType->isIntegral() ||
|
|
|
|
resultType->isPointerType())
|
|
|
|
{
|
|
|
|
opCode = SUB;
|
|
|
|
}
|
|
|
|
else
|
2001-10-01 02:12:53 +02:00
|
|
|
switch(resultType->getPrimitiveID())
|
|
|
|
{
|
|
|
|
case Type::FloatTyID: opCode = FSUBS; break;
|
|
|
|
case Type::DoubleTyID: opCode = FSUBD; break;
|
|
|
|
default: assert(0 && "Invalid type for SUB instruction"); break;
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
return opCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline MachineInstr*
|
|
|
|
CreateSubConstInstruction(const InstructionNode* instrNode)
|
|
|
|
{
|
|
|
|
MachineInstr* minstr = NULL;
|
|
|
|
|
|
|
|
Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
|
2001-10-01 22:11:19 +02:00
|
|
|
assert(isa<ConstPoolVal>(constOp));
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
// Cases worth optimizing are:
|
|
|
|
// (1) Sub with 0 for float or double: use an FMOV of appropriate type,
|
|
|
|
// instead of an FSUB (1 vs 3 cycles). There is no integer MOV.
|
|
|
|
//
|
|
|
|
const Type* resultType = instrNode->getInstruction()->getType();
|
|
|
|
|
|
|
|
if (resultType == Type::FloatTy ||
|
|
|
|
resultType == Type::DoubleTy)
|
|
|
|
{
|
|
|
|
double dval = ((ConstPoolFP*) constOp)->getValue();
|
|
|
|
if (dval == 0.0)
|
2001-10-01 02:12:53 +02:00
|
|
|
minstr = CreateMovFloatInstruction(instrNode, resultType);
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return minstr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline MachineOpCode
|
|
|
|
ChooseFcmpInstruction(const InstructionNode* instrNode)
|
|
|
|
{
|
|
|
|
MachineOpCode opCode = INVALID_OPCODE;
|
|
|
|
|
|
|
|
Value* operand = ((InstrTreeNode*) instrNode->leftChild())->getValue();
|
|
|
|
switch(operand->getType()->getPrimitiveID()) {
|
|
|
|
case Type::FloatTyID: opCode = FCMPS; break;
|
|
|
|
case Type::DoubleTyID: opCode = FCMPD; break;
|
|
|
|
default: assert(0 && "Invalid type for FCMP instruction"); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return opCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Assumes that leftArg and rightArg are both cast instructions.
|
|
|
|
//
|
|
|
|
static inline bool
|
|
|
|
BothFloatToDouble(const InstructionNode* instrNode)
|
|
|
|
{
|
|
|
|
InstrTreeNode* leftArg = instrNode->leftChild();
|
|
|
|
InstrTreeNode* rightArg = instrNode->rightChild();
|
|
|
|
InstrTreeNode* leftArgArg = leftArg->leftChild();
|
|
|
|
InstrTreeNode* rightArgArg = rightArg->leftChild();
|
|
|
|
assert(leftArg->getValue()->getType() == rightArg->getValue()->getType());
|
|
|
|
|
|
|
|
// Check if both arguments are floats cast to double
|
|
|
|
return (leftArg->getValue()->getType() == Type::DoubleTy &&
|
2001-10-01 02:12:53 +02:00
|
|
|
leftArgArg->getValue()->getType() == Type::FloatTy &&
|
|
|
|
rightArgArg->getValue()->getType() == Type::FloatTy);
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline MachineOpCode
|
2001-11-04 22:59:14 +01:00
|
|
|
ChooseMulInstructionByType(const Type* resultType)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MachineOpCode opCode = INVALID_OPCODE;
|
|
|
|
|
|
|
|
if (resultType->isIntegral())
|
2001-11-04 22:59:14 +01:00
|
|
|
opCode = MULX;
|
2001-09-14 05:47:57 +02:00
|
|
|
else
|
2001-10-01 02:12:53 +02:00
|
|
|
switch(resultType->getPrimitiveID())
|
|
|
|
{
|
|
|
|
case Type::FloatTyID: opCode = FMULS; break;
|
|
|
|
case Type::DoubleTyID: opCode = FMULD; break;
|
|
|
|
default: assert(0 && "Invalid type for MUL instruction"); break;
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
return opCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-04 22:59:14 +01:00
|
|
|
static inline MachineOpCode
|
|
|
|
ChooseMulInstruction(const InstructionNode* instrNode,
|
|
|
|
bool checkCasts)
|
|
|
|
{
|
|
|
|
if (checkCasts && BothFloatToDouble(instrNode))
|
|
|
|
return FSMULD;
|
|
|
|
|
|
|
|
// else use the regular multiply instructions
|
|
|
|
return ChooseMulInstructionByType(instrNode->getInstruction()->getType());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-14 05:47:57 +02:00
|
|
|
static inline MachineInstr*
|
2001-10-01 02:12:53 +02:00
|
|
|
CreateIntNegInstruction(TargetMachine& target,
|
|
|
|
Value* vreg)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MachineInstr* minstr = new MachineInstr(SUB);
|
2001-10-01 02:12:53 +02:00
|
|
|
minstr->SetMachineOperand(0, target.getRegInfo().getZeroRegNum());
|
2001-09-14 05:47:57 +02:00
|
|
|
minstr->SetMachineOperand(1, MachineOperand::MO_VirtualRegister, vreg);
|
|
|
|
minstr->SetMachineOperand(2, MachineOperand::MO_VirtualRegister, vreg);
|
|
|
|
return minstr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline MachineInstr*
|
2001-10-01 02:12:53 +02:00
|
|
|
CreateMulConstInstruction(TargetMachine &target,
|
|
|
|
const InstructionNode* instrNode,
|
|
|
|
MachineInstr*& getMinstr2)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
2001-11-09 03:18:16 +01:00
|
|
|
MachineInstr* minstr = NULL; // return NULL if we cannot exploit constant
|
|
|
|
getMinstr2 = NULL; // to create a cheaper instruction
|
2001-09-14 05:47:57 +02:00
|
|
|
bool needNeg = false;
|
|
|
|
|
|
|
|
Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
|
2001-10-01 22:11:19 +02:00
|
|
|
assert(isa<ConstPoolVal>(constOp));
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
// Cases worth optimizing are:
|
|
|
|
// (1) Multiply by 0 or 1 for any type: replace with copy (ADD or FMOV)
|
|
|
|
// (2) Multiply by 2^x for integer types: replace with Shift
|
|
|
|
//
|
|
|
|
const Type* resultType = instrNode->getInstruction()->getType();
|
|
|
|
|
2001-09-18 15:03:13 +02:00
|
|
|
if (resultType->isIntegral() || resultType->isPointerType())
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
unsigned pow;
|
|
|
|
bool isValidConst;
|
|
|
|
int64_t C = GetConstantValueAsSignedInt(constOp, isValidConst);
|
|
|
|
if (isValidConst)
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
bool needNeg = false;
|
|
|
|
if (C < 0)
|
|
|
|
{
|
|
|
|
needNeg = true;
|
|
|
|
C = -C;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (C == 0 || C == 1)
|
|
|
|
{
|
|
|
|
minstr = new MachineInstr(ADD);
|
|
|
|
|
|
|
|
if (C == 0)
|
|
|
|
minstr->SetMachineOperand(0,
|
|
|
|
target.getRegInfo().getZeroRegNum());
|
|
|
|
else
|
|
|
|
minstr->SetMachineOperand(0,MachineOperand::MO_VirtualRegister,
|
|
|
|
instrNode->leftChild()->getValue());
|
|
|
|
minstr->SetMachineOperand(1,target.getRegInfo().getZeroRegNum());
|
|
|
|
}
|
|
|
|
else if (IsPowerOf2(C, pow))
|
|
|
|
{
|
|
|
|
minstr = new MachineInstr((resultType == Type::LongTy)
|
|
|
|
? SLLX : SLL);
|
|
|
|
minstr->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
|
|
|
instrNode->leftChild()->getValue());
|
|
|
|
minstr->SetMachineOperand(1, MachineOperand::MO_UnextendedImmed,
|
|
|
|
pow);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (minstr && needNeg)
|
|
|
|
{ // insert <reg = SUB 0, reg> after the instr to flip the sign
|
|
|
|
getMinstr2 = CreateIntNegInstruction(target,
|
|
|
|
instrNode->getValue());
|
|
|
|
}
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (resultType == Type::FloatTy ||
|
2001-10-01 02:12:53 +02:00
|
|
|
resultType == Type::DoubleTy)
|
|
|
|
{
|
|
|
|
double dval = ((ConstPoolFP*) constOp)->getValue();
|
2001-11-09 03:18:16 +01:00
|
|
|
if (fabs(dval) == 1)
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
2001-11-09 03:18:16 +01:00
|
|
|
bool needNeg = (dval < 0);
|
|
|
|
|
|
|
|
MachineOpCode opCode = needNeg
|
|
|
|
? (resultType == Type::FloatTy? FNEGS : FNEGD)
|
|
|
|
: (resultType == Type::FloatTy? FMOVS : FMOVD);
|
|
|
|
|
|
|
|
minstr = new MachineInstr(opCode);
|
|
|
|
minstr->SetMachineOperand(0,
|
|
|
|
MachineOperand::MO_VirtualRegister,
|
|
|
|
instrNode->leftChild()->getValue());
|
|
|
|
}
|
2001-10-01 02:12:53 +02:00
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (minstr != NULL)
|
|
|
|
minstr->SetMachineOperand(2, MachineOperand::MO_VirtualRegister,
|
2001-10-01 02:12:53 +02:00
|
|
|
instrNode->getValue());
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
return minstr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-04 22:59:14 +01:00
|
|
|
// Generate a divide instruction for Div or Rem.
|
|
|
|
// For Rem, this assumes that the operand type will be signed if the result
|
|
|
|
// type is signed. This is correct because they must have the same sign.
|
|
|
|
//
|
2001-09-14 05:47:57 +02:00
|
|
|
static inline MachineOpCode
|
2001-10-01 02:12:53 +02:00
|
|
|
ChooseDivInstruction(TargetMachine &target,
|
|
|
|
const InstructionNode* instrNode)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MachineOpCode opCode = INVALID_OPCODE;
|
|
|
|
|
|
|
|
const Type* resultType = instrNode->getInstruction()->getType();
|
|
|
|
|
|
|
|
if (resultType->isIntegral())
|
2001-10-01 02:12:53 +02:00
|
|
|
opCode = resultType->isSigned()? SDIVX : UDIVX;
|
2001-09-14 05:47:57 +02:00
|
|
|
else
|
2001-10-01 02:12:53 +02:00
|
|
|
switch(resultType->getPrimitiveID())
|
|
|
|
{
|
|
|
|
case Type::FloatTyID: opCode = FDIVS; break;
|
|
|
|
case Type::DoubleTyID: opCode = FDIVD; break;
|
|
|
|
default: assert(0 && "Invalid type for DIV instruction"); break;
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
return opCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline MachineInstr*
|
2001-10-01 02:12:53 +02:00
|
|
|
CreateDivConstInstruction(TargetMachine &target,
|
|
|
|
const InstructionNode* instrNode,
|
|
|
|
MachineInstr*& getMinstr2)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MachineInstr* minstr = NULL;
|
|
|
|
getMinstr2 = NULL;
|
|
|
|
|
|
|
|
Value* constOp = ((InstrTreeNode*) instrNode->rightChild())->getValue();
|
2001-10-01 22:11:19 +02:00
|
|
|
assert(isa<ConstPoolVal>(constOp));
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
// Cases worth optimizing are:
|
|
|
|
// (1) Divide by 1 for any type: replace with copy (ADD or FMOV)
|
|
|
|
// (2) Divide by 2^x for integer types: replace with SR[L or A]{X}
|
|
|
|
//
|
|
|
|
const Type* resultType = instrNode->getInstruction()->getType();
|
|
|
|
|
|
|
|
if (resultType->isIntegral())
|
|
|
|
{
|
|
|
|
unsigned pow;
|
|
|
|
bool isValidConst;
|
|
|
|
int64_t C = GetConstantValueAsSignedInt(constOp, isValidConst);
|
|
|
|
if (isValidConst)
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
bool needNeg = false;
|
|
|
|
if (C < 0)
|
|
|
|
{
|
|
|
|
needNeg = true;
|
|
|
|
C = -C;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (C == 1)
|
|
|
|
{
|
|
|
|
minstr = new MachineInstr(ADD);
|
|
|
|
minstr->SetMachineOperand(0,MachineOperand::MO_VirtualRegister,
|
|
|
|
instrNode->leftChild()->getValue());
|
|
|
|
minstr->SetMachineOperand(1,target.getRegInfo().getZeroRegNum());
|
|
|
|
}
|
|
|
|
else if (IsPowerOf2(C, pow))
|
|
|
|
{
|
|
|
|
MachineOpCode opCode= ((resultType->isSigned())
|
|
|
|
? (resultType==Type::LongTy)? SRAX : SRA
|
|
|
|
: (resultType==Type::LongTy)? SRLX : SRL);
|
|
|
|
minstr = new MachineInstr(opCode);
|
|
|
|
minstr->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
|
|
|
instrNode->leftChild()->getValue());
|
|
|
|
minstr->SetMachineOperand(1, MachineOperand::MO_UnextendedImmed,
|
|
|
|
pow);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (minstr && needNeg)
|
|
|
|
{ // insert <reg = SUB 0, reg> after the instr to flip the sign
|
|
|
|
getMinstr2 = CreateIntNegInstruction(target,
|
|
|
|
instrNode->getValue());
|
|
|
|
}
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (resultType == Type::FloatTy ||
|
2001-10-01 02:12:53 +02:00
|
|
|
resultType == Type::DoubleTy)
|
|
|
|
{
|
|
|
|
double dval = ((ConstPoolFP*) constOp)->getValue();
|
2001-11-09 03:18:16 +01:00
|
|
|
if (fabs(dval) == 1)
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
bool needNeg = (dval < 0);
|
|
|
|
|
|
|
|
MachineOpCode opCode = needNeg
|
|
|
|
? (resultType == Type::FloatTy? FNEGS : FNEGD)
|
|
|
|
: (resultType == Type::FloatTy? FMOVS : FMOVD);
|
|
|
|
|
|
|
|
minstr = new MachineInstr(opCode);
|
|
|
|
minstr->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
|
|
|
instrNode->leftChild()->getValue());
|
|
|
|
}
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (minstr != NULL)
|
|
|
|
minstr->SetMachineOperand(2, MachineOperand::MO_VirtualRegister,
|
2001-10-01 02:12:53 +02:00
|
|
|
instrNode->getValue());
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
return minstr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Function SetOperandsForMemInstr
|
|
|
|
//
|
|
|
|
// Choose addressing mode for the given load or store instruction.
|
|
|
|
// Use [reg+reg] if it is an indexed reference, and the index offset is
|
|
|
|
// not a constant or if it cannot fit in the offset field.
|
|
|
|
// Use [reg+offset] in all other cases.
|
|
|
|
//
|
|
|
|
// This assumes that all array refs are "lowered" to one of these forms:
|
|
|
|
// %x = load (subarray*) ptr, constant ; single constant offset
|
|
|
|
// %x = load (subarray*) ptr, offsetVal ; single non-constant offset
|
|
|
|
// Generally, this should happen via strength reduction + LICM.
|
|
|
|
// Also, strength reduction should take care of using the same register for
|
|
|
|
// the loop index variable and an array index, when that is profitable.
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void
|
|
|
|
SetOperandsForMemInstr(MachineInstr* minstr,
|
2001-10-01 02:12:53 +02:00
|
|
|
const InstructionNode* vmInstrNode,
|
|
|
|
const TargetMachine& target)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MemAccessInst* memInst = (MemAccessInst*) vmInstrNode->getInstruction();
|
|
|
|
|
|
|
|
// Variables to hold the index vector, ptr value, and offset value.
|
|
|
|
// The major work here is to extract these for all 3 instruction types
|
|
|
|
// and then call the common function SetMemOperands_Internal().
|
|
|
|
//
|
2001-11-04 09:08:34 +01:00
|
|
|
const vector<ConstPoolVal*>* idxVec = &memInst->getIndices();
|
2001-09-14 05:47:57 +02:00
|
|
|
vector<ConstPoolVal*>* newIdxVec = NULL;
|
|
|
|
Value* ptrVal;
|
|
|
|
Value* arrayOffsetVal = NULL;
|
|
|
|
|
|
|
|
// Test if a GetElemPtr instruction is being folded into this mem instrn.
|
|
|
|
// If so, it will be in the left child for Load and GetElemPtr,
|
|
|
|
// and in the right child for Store instructions.
|
|
|
|
//
|
|
|
|
InstrTreeNode* ptrChild = (vmInstrNode->getOpLabel() == Instruction::Store
|
2001-10-01 02:12:53 +02:00
|
|
|
? vmInstrNode->rightChild()
|
|
|
|
: vmInstrNode->leftChild());
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
if (ptrChild->getOpLabel() == Instruction::GetElementPtr ||
|
|
|
|
ptrChild->getOpLabel() == GetElemPtrIdx)
|
|
|
|
{
|
|
|
|
// There is a GetElemPtr instruction and there may be a chain of
|
|
|
|
// more than one. Use the pointer value of the last one in the chain.
|
|
|
|
// Fold the index vectors from the entire chain and from the mem
|
|
|
|
// instruction into one single index vector.
|
|
|
|
// Finally, we never fold for an array instruction so make that NULL.
|
|
|
|
|
|
|
|
newIdxVec = new vector<ConstPoolVal*>;
|
|
|
|
ptrVal = FoldGetElemChain((InstructionNode*) ptrChild, *newIdxVec);
|
|
|
|
|
|
|
|
newIdxVec->insert(newIdxVec->end(), idxVec->begin(), idxVec->end());
|
|
|
|
idxVec = newIdxVec;
|
|
|
|
|
|
|
|
assert(! ((PointerType*)ptrVal->getType())->getValueType()->isArrayType()
|
2001-10-01 02:12:53 +02:00
|
|
|
&& "GetElemPtr cannot be folded into array refs in selection");
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// There is no GetElemPtr instruction.
|
|
|
|
// Use the pointer value and the index vector from the Mem instruction.
|
|
|
|
// If it is an array reference, get the array offset value.
|
|
|
|
//
|
2001-11-14 12:27:58 +01:00
|
|
|
ptrVal = memInst->getPointerOperand();
|
2001-09-14 05:47:57 +02:00
|
|
|
|
2001-11-14 12:27:58 +01:00
|
|
|
const Type* opType = cast<PointerType>(ptrVal->getType())->getValueType();
|
2001-09-14 05:47:57 +02:00
|
|
|
if (opType->isArrayType())
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
assert((memInst->getNumOperands()
|
2001-11-14 12:27:58 +01:00
|
|
|
== (unsigned) 1 + memInst->getFirstIndexOperandNumber())
|
2001-10-01 02:12:53 +02:00
|
|
|
&& "Array refs must be lowered before Instruction Selection");
|
|
|
|
|
2001-11-14 12:27:58 +01:00
|
|
|
arrayOffsetVal = memInst->getOperand(memInst->getFirstIndexOperandNumber());
|
2001-10-01 02:12:53 +02:00
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
SetMemOperands_Internal(minstr, vmInstrNode, ptrVal, arrayOffsetVal,
|
2001-10-01 02:12:53 +02:00
|
|
|
*idxVec, target);
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
if (newIdxVec != NULL)
|
|
|
|
delete newIdxVec;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
SetMemOperands_Internal(MachineInstr* minstr,
|
2001-10-01 02:12:53 +02:00
|
|
|
const InstructionNode* vmInstrNode,
|
|
|
|
Value* ptrVal,
|
|
|
|
Value* arrayOffsetVal,
|
|
|
|
const vector<ConstPoolVal*>& idxVec,
|
|
|
|
const TargetMachine& target)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
MemAccessInst* memInst = (MemAccessInst*) vmInstrNode->getInstruction();
|
|
|
|
|
|
|
|
// Initialize so we default to storing the offset in a register.
|
2001-11-07 15:01:59 +01:00
|
|
|
int64_t smallConstOffset = 0;
|
2001-09-14 05:47:57 +02:00
|
|
|
Value* valueForRegOffset = NULL;
|
|
|
|
MachineOperand::MachineOperandType offsetOpType =MachineOperand::MO_VirtualRegister;
|
|
|
|
|
|
|
|
// Check if there is an index vector and if so, if it translates to
|
|
|
|
// a small enough constant to fit in the immediate-offset field.
|
|
|
|
//
|
|
|
|
if (idxVec.size() > 0)
|
|
|
|
{
|
|
|
|
bool isConstantOffset = false;
|
2001-11-07 15:01:59 +01:00
|
|
|
unsigned offset = 0;
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
const PointerType* ptrType = (PointerType*) ptrVal->getType();
|
|
|
|
|
|
|
|
if (ptrType->getValueType()->isStructType())
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
// the offset is always constant for structs
|
|
|
|
isConstantOffset = true;
|
|
|
|
|
|
|
|
// Compute the offset value using the index vector
|
|
|
|
offset = target.DataLayout.getIndexedOffset(ptrType, idxVec);
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
else
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
// It must be an array ref. Check if the offset is a constant,
|
|
|
|
// and that the indexing has been lowered to a single offset.
|
|
|
|
//
|
|
|
|
assert(ptrType->getValueType()->isArrayType());
|
|
|
|
assert(arrayOffsetVal != NULL
|
|
|
|
&& "Expect to be given Value* for array offsets");
|
|
|
|
|
2001-10-01 22:11:19 +02:00
|
|
|
if (ConstPoolVal *CPV = dyn_cast<ConstPoolVal>(arrayOffsetVal))
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
isConstantOffset = true; // always constant for structs
|
|
|
|
assert(arrayOffsetVal->getType()->isIntegral());
|
|
|
|
offset = (CPV->getType()->isSigned()
|
|
|
|
? ((ConstPoolSInt*)CPV)->getValue()
|
|
|
|
: (int64_t) ((ConstPoolUInt*)CPV)->getValue());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
valueForRegOffset = arrayOffsetVal;
|
|
|
|
}
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
if (isConstantOffset)
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
// create a virtual register for the constant
|
|
|
|
valueForRegOffset = ConstPoolSInt::get(Type::IntTy, offset);
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
offsetOpType = MachineOperand::MO_SignExtendedImmed;
|
|
|
|
smallConstOffset = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Operand 0 is value for STORE, ptr for LOAD or GET_ELEMENT_PTR
|
|
|
|
// It is the left child in the instruction tree in all cases.
|
|
|
|
Value* leftVal = vmInstrNode->leftChild()->getValue();
|
|
|
|
minstr->SetMachineOperand(0, MachineOperand::MO_VirtualRegister, leftVal);
|
|
|
|
|
|
|
|
// Operand 1 is ptr for STORE, offset for LOAD or GET_ELEMENT_PTR
|
2001-10-01 02:12:53 +02:00
|
|
|
// Operand 2 is offset for STORE, result reg for LOAD or GET_ELEMENT_PTR
|
2001-09-14 05:47:57 +02:00
|
|
|
//
|
|
|
|
unsigned offsetOpNum = (memInst->getOpcode() == Instruction::Store)? 2 : 1;
|
|
|
|
if (offsetOpType == MachineOperand::MO_VirtualRegister)
|
|
|
|
{
|
|
|
|
assert(valueForRegOffset != NULL);
|
|
|
|
minstr->SetMachineOperand(offsetOpNum, offsetOpType, valueForRegOffset);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
minstr->SetMachineOperand(offsetOpNum, offsetOpType, smallConstOffset);
|
|
|
|
|
|
|
|
if (memInst->getOpcode() == Instruction::Store)
|
|
|
|
minstr->SetMachineOperand(1, MachineOperand::MO_VirtualRegister, ptrVal);
|
|
|
|
else
|
|
|
|
minstr->SetMachineOperand(2, MachineOperand::MO_VirtualRegister,
|
2001-10-01 02:12:53 +02:00
|
|
|
vmInstrNode->getValue());
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Substitute operand `operandNum' of the instruction in node `treeNode'
|
2001-10-15 01:28:43 +02:00
|
|
|
// in place of the use(s) of that instruction in node `parent'.
|
|
|
|
// Check both explicit and implicit operands!
|
2001-09-14 05:47:57 +02:00
|
|
|
//
|
|
|
|
static void
|
|
|
|
ForwardOperand(InstructionNode* treeNode,
|
2001-10-01 02:12:53 +02:00
|
|
|
InstrTreeNode* parent,
|
|
|
|
int operandNum)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
2001-09-18 15:03:13 +02:00
|
|
|
assert(treeNode && parent && "Invalid invocation of ForwardOperand");
|
|
|
|
|
2001-09-14 05:47:57 +02:00
|
|
|
Instruction* unusedOp = treeNode->getInstruction();
|
|
|
|
Value* fwdOp = unusedOp->getOperand(operandNum);
|
2001-09-18 15:03:13 +02:00
|
|
|
|
|
|
|
// The parent itself may be a list node, so find the real parent instruction
|
|
|
|
while (parent->getNodeType() != InstrTreeNode::NTInstructionNode)
|
|
|
|
{
|
|
|
|
parent = parent->parent();
|
|
|
|
assert(parent && "ERROR: Non-instruction node has no parent in tree.");
|
|
|
|
}
|
|
|
|
InstructionNode* parentInstrNode = (InstructionNode*) parent;
|
|
|
|
|
|
|
|
Instruction* userInstr = parentInstrNode->getInstruction();
|
2001-09-14 05:47:57 +02:00
|
|
|
MachineCodeForVMInstr& mvec = userInstr->getMachineInstrVec();
|
|
|
|
for (unsigned i=0, N=mvec.size(); i < N; i++)
|
|
|
|
{
|
|
|
|
MachineInstr* minstr = mvec[i];
|
2001-10-15 01:28:43 +02:00
|
|
|
|
|
|
|
for (unsigned i=0, numOps=minstr->getNumOperands(); i < numOps; ++i)
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
const MachineOperand& mop = minstr->getOperand(i);
|
|
|
|
if (mop.getOperandType() == MachineOperand::MO_VirtualRegister &&
|
|
|
|
mop.getVRegValue() == unusedOp)
|
|
|
|
{
|
|
|
|
minstr->SetMachineOperand(i, MachineOperand::MO_VirtualRegister,
|
|
|
|
fwdOp);
|
|
|
|
}
|
|
|
|
}
|
2001-10-15 01:28:43 +02:00
|
|
|
|
|
|
|
for (unsigned i=0, numOps=minstr->getNumImplicitRefs(); i < numOps; ++i)
|
|
|
|
if (minstr->getImplicitRef(i) == unusedOp)
|
|
|
|
minstr->setImplicitRef(i, fwdOp, minstr->implicitRefIsDefined(i));
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-12 15:45:33 +01:00
|
|
|
|
|
|
|
void UltraSparcInstrInfo::
|
2001-10-01 02:12:53 +02:00
|
|
|
CreateCopyInstructionsByType(const TargetMachine& target,
|
|
|
|
Value* src,
|
|
|
|
Instruction* dest,
|
2001-11-12 15:45:33 +01:00
|
|
|
vector<MachineInstr*>& minstrVec) const
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
2001-10-18 02:26:20 +02:00
|
|
|
bool loadConstantToReg = false;
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
const Type* resultType = dest->getType();
|
|
|
|
|
|
|
|
MachineOpCode opCode = ChooseAddInstructionByType(resultType);
|
|
|
|
if (opCode == INVALID_OPCODE)
|
|
|
|
{
|
|
|
|
assert(0 && "Unsupported result type in CreateCopyInstructionsByType()");
|
2001-10-18 02:26:20 +02:00
|
|
|
return;
|
2001-10-01 02:12:53 +02:00
|
|
|
}
|
|
|
|
|
2001-10-18 02:26:20 +02:00
|
|
|
// if `src' is a constant that doesn't fit in the immed field or if it is
|
|
|
|
// a global variable (i.e., a constant address), generate a load
|
|
|
|
// instruction instead of an add
|
|
|
|
//
|
2001-10-01 22:11:19 +02:00
|
|
|
if (isa<ConstPoolVal>(src))
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
unsigned int machineRegNum;
|
|
|
|
int64_t immedValue;
|
|
|
|
MachineOperand::MachineOperandType opType =
|
|
|
|
ChooseRegOrImmed(src, opCode, target, /*canUseImmed*/ true,
|
|
|
|
machineRegNum, immedValue);
|
|
|
|
|
|
|
|
if (opType == MachineOperand::MO_VirtualRegister)
|
2001-10-18 02:26:20 +02:00
|
|
|
loadConstantToReg = true;
|
2001-10-01 02:12:53 +02:00
|
|
|
}
|
2001-10-18 02:26:20 +02:00
|
|
|
else if (isa<GlobalValue>(src))
|
|
|
|
loadConstantToReg = true;
|
|
|
|
|
|
|
|
if (loadConstantToReg)
|
|
|
|
{ // `src' is constant and cannot fit in immed field for the ADD
|
|
|
|
// Insert instructions to "load" the constant into a register
|
|
|
|
vector<TmpInstruction*> tempVec;
|
|
|
|
target.getInstrInfo().CreateCodeToLoadConst(src,dest,minstrVec,tempVec);
|
|
|
|
for (unsigned i=0; i < tempVec.size(); i++)
|
|
|
|
dest->getMachineInstrVec().addTempValue(tempVec[i]);
|
|
|
|
}
|
|
|
|
else
|
2001-10-01 02:12:53 +02:00
|
|
|
{ // Create the appropriate add instruction.
|
|
|
|
// Make `src' the second operand, in case it is a constant
|
|
|
|
// Use (unsigned long) 0 for a NULL pointer value.
|
|
|
|
//
|
|
|
|
const Type* nullValueType =
|
|
|
|
(resultType->getPrimitiveID() == Type::PointerTyID)? Type::ULongTy
|
|
|
|
: resultType;
|
2001-10-18 02:26:20 +02:00
|
|
|
MachineInstr* minstr = new MachineInstr(opCode);
|
|
|
|
minstr->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
|
|
|
ConstPoolVal::getNullConstant(nullValueType));
|
|
|
|
minstr->SetMachineOperand(1, MachineOperand::MO_VirtualRegister, src);
|
|
|
|
minstr->SetMachineOperand(2, MachineOperand::MO_VirtualRegister, dest);
|
|
|
|
minstrVec.push_back(minstr);
|
2001-10-01 02:12:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-12 15:45:33 +01:00
|
|
|
|
2001-10-22 15:36:31 +02:00
|
|
|
//******************* Externally Visible Functions *************************/
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// External Function: GetInstructionsForProlog
|
|
|
|
// External Function: GetInstructionsForEpilog
|
|
|
|
//
|
|
|
|
// Purpose:
|
|
|
|
// Create prolog and epilog code for procedure entry and exit
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
|
|
|
extern unsigned
|
|
|
|
GetInstructionsForProlog(BasicBlock* entryBB,
|
|
|
|
TargetMachine &target,
|
|
|
|
MachineInstr** mvec)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
2001-10-22 15:36:31 +02:00
|
|
|
int64_t s0=0; // used to avoid overloading ambiguity below
|
|
|
|
|
2001-11-08 06:04:09 +01:00
|
|
|
const MachineFrameInfo& frameInfo = target.getFrameInfo();
|
|
|
|
|
2001-10-22 15:36:31 +02:00
|
|
|
// The second operand is the stack size. If it does not fit in the
|
|
|
|
// immediate field, we either have to find an unused register in the
|
|
|
|
// caller's window or move some elements to the dynamically allocated
|
|
|
|
// area of the stack frame (just above save area and method args).
|
|
|
|
Method* method = entryBB->getParent();
|
2001-11-08 06:04:09 +01:00
|
|
|
MachineCodeForMethod& mcInfo = MachineCodeForMethod::get(method);
|
|
|
|
unsigned int staticStackSize = mcInfo.getStaticStackSize();
|
|
|
|
|
|
|
|
if (staticStackSize < (unsigned) frameInfo.getMinStackFrameSize())
|
|
|
|
staticStackSize = (unsigned) frameInfo.getMinStackFrameSize();
|
|
|
|
|
|
|
|
if (unsigned padsz = (staticStackSize %
|
|
|
|
(unsigned) frameInfo.getStackFrameSizeAlignment()))
|
2001-11-12 06:16:39 +01:00
|
|
|
staticStackSize += frameInfo.getStackFrameSizeAlignment() - padsz;
|
2001-10-22 15:36:31 +02:00
|
|
|
|
|
|
|
assert(target.getInstrInfo().constantFitsInImmedField(SAVE, staticStackSize)
|
|
|
|
&& "Stack size too large for immediate field of SAVE instruction. Need additional work as described in the comment above");
|
|
|
|
|
|
|
|
mvec[0] = new MachineInstr(SAVE);
|
|
|
|
mvec[0]->SetMachineOperand(0, target.getRegInfo().getStackPointer());
|
|
|
|
mvec[0]->SetMachineOperand(1, MachineOperand::MO_SignExtendedImmed,
|
2001-11-08 06:04:09 +01:00
|
|
|
- (int) staticStackSize);
|
2001-10-22 15:36:31 +02:00
|
|
|
mvec[0]->SetMachineOperand(2, target.getRegInfo().getStackPointer());
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extern unsigned
|
|
|
|
GetInstructionsForEpilog(BasicBlock* anExitBB,
|
|
|
|
TargetMachine &target,
|
|
|
|
MachineInstr** mvec)
|
|
|
|
{
|
|
|
|
int64_t s0=0; // used to avoid overloading ambiguity below
|
2001-09-14 05:47:57 +02:00
|
|
|
|
2001-10-22 15:36:31 +02:00
|
|
|
mvec[0] = new MachineInstr(RESTORE);
|
|
|
|
mvec[0]->SetMachineOperand(0, target.getRegInfo().getZeroRegNum());
|
|
|
|
mvec[0]->SetMachineOperand(1, MachineOperand::MO_SignExtendedImmed, s0);
|
|
|
|
mvec[0]->SetMachineOperand(2, target.getRegInfo().getZeroRegNum());
|
2001-09-14 05:47:57 +02:00
|
|
|
|
2001-10-22 15:36:31 +02:00
|
|
|
return 1;
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-22 15:36:31 +02:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// External Function: ThisIsAChainRule
|
|
|
|
//
|
|
|
|
// Purpose:
|
|
|
|
// Check if a given BURG rule is a chain rule.
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
|
|
|
extern bool
|
|
|
|
ThisIsAChainRule(int eruleno)
|
|
|
|
{
|
|
|
|
switch(eruleno)
|
|
|
|
{
|
|
|
|
case 111: // stmt: reg
|
|
|
|
case 113: // stmt: bool
|
|
|
|
case 123:
|
|
|
|
case 124:
|
|
|
|
case 125:
|
|
|
|
case 126:
|
|
|
|
case 127:
|
|
|
|
case 128:
|
|
|
|
case 129:
|
|
|
|
case 130:
|
|
|
|
case 131:
|
|
|
|
case 132:
|
|
|
|
case 133:
|
|
|
|
case 155:
|
|
|
|
case 221:
|
|
|
|
case 222:
|
|
|
|
case 241:
|
|
|
|
case 242:
|
|
|
|
case 243:
|
|
|
|
case 244:
|
|
|
|
return true; break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false; break;
|
|
|
|
}
|
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// External Function: GetInstructionsByRule
|
|
|
|
//
|
|
|
|
// Purpose:
|
|
|
|
// Choose machine instructions for the SPARC according to the
|
|
|
|
// patterns chosen by the BURG-generated parser.
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
|
|
|
unsigned
|
|
|
|
GetInstructionsByRule(InstructionNode* subtreeRoot,
|
2001-10-01 02:12:53 +02:00
|
|
|
int ruleForNode,
|
|
|
|
short* nts,
|
2001-11-08 06:04:09 +01:00
|
|
|
TargetMachine &target,
|
2001-10-01 02:12:53 +02:00
|
|
|
MachineInstr** mvec)
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
|
|
|
int numInstr = 1; // initialize for common case
|
|
|
|
bool checkCast = false; // initialize here to use fall-through
|
|
|
|
int nextRule;
|
|
|
|
int forwardOperandNum = -1;
|
2001-10-10 22:56:33 +02:00
|
|
|
int64_t s0=0, s8=8; // variables holding constants to avoid
|
|
|
|
uint64_t u0=0; // overloading ambiguities below
|
2001-09-14 05:47:57 +02:00
|
|
|
|
2001-10-22 15:36:31 +02:00
|
|
|
for (unsigned i=0; i < MAX_INSTR_PER_VMINSTR; i++)
|
|
|
|
mvec[i] = NULL;
|
2001-09-14 05:47:57 +02:00
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
//
|
|
|
|
// Let's check for chain rules outside the switch so that we don't have
|
|
|
|
// to duplicate the list of chain rule production numbers here again
|
|
|
|
//
|
|
|
|
if (ThisIsAChainRule(ruleForNode))
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
2001-10-01 02:12:53 +02:00
|
|
|
// Chain rules have a single nonterminal on the RHS.
|
|
|
|
// Get the rule that matches the RHS non-terminal and use that instead.
|
|
|
|
//
|
|
|
|
assert(nts[0] && ! nts[1]
|
|
|
|
&& "A chain rule should have only one RHS non-terminal!");
|
|
|
|
nextRule = burm_rule(subtreeRoot->state, nts[0]);
|
|
|
|
nts = burm_nts[nextRule];
|
|
|
|
numInstr = GetInstructionsByRule(subtreeRoot, nextRule, nts,target,mvec);
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
2001-10-01 02:12:53 +02:00
|
|
|
else
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
2001-10-01 02:12:53 +02:00
|
|
|
switch(ruleForNode) {
|
|
|
|
case 1: // stmt: Ret
|
|
|
|
case 2: // stmt: RetValue(reg)
|
2001-11-04 20:34:49 +01:00
|
|
|
{ // NOTE: Prepass of register allocation is responsible
|
2001-10-01 02:12:53 +02:00
|
|
|
// for moving return value to appropriate register.
|
|
|
|
// Mark the return-address register as a hidden virtual reg.
|
2001-10-11 06:23:19 +02:00
|
|
|
// Mark the return value register as an implicit ref of
|
|
|
|
// the machine instruction.
|
2001-11-04 20:34:49 +01:00
|
|
|
// Finally put a NOP in the delay slot.
|
2001-10-01 02:12:53 +02:00
|
|
|
ReturnInst* returnInstr = (ReturnInst*) subtreeRoot->getInstruction();
|
|
|
|
assert(returnInstr->getOpcode() == Instruction::Ret);
|
2001-10-22 15:36:31 +02:00
|
|
|
Method* method = returnInstr->getParent()->getParent();
|
2001-10-01 02:12:53 +02:00
|
|
|
|
2001-10-18 02:26:20 +02:00
|
|
|
Instruction* returnReg = new TmpInstruction(TMP_INSTRUCTION_OPCODE,
|
2001-10-01 02:12:53 +02:00
|
|
|
returnInstr, NULL);
|
|
|
|
returnInstr->getMachineInstrVec().addTempValue(returnReg);
|
2001-10-22 15:36:31 +02:00
|
|
|
|
|
|
|
mvec[0] = new MachineInstr(JMPLRET);
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
|
|
|
returnReg);
|
2001-10-10 22:56:33 +02:00
|
|
|
mvec[0]->SetMachineOperand(1, MachineOperand::MO_SignExtendedImmed,s8);
|
2001-10-22 15:36:31 +02:00
|
|
|
mvec[0]->SetMachineOperand(2, target.getRegInfo().getZeroRegNum());
|
2001-10-01 02:12:53 +02:00
|
|
|
|
2001-10-11 06:23:19 +02:00
|
|
|
if (returnInstr->getReturnValue() != NULL)
|
|
|
|
mvec[0]->addImplicitRef(returnInstr->getReturnValue());
|
|
|
|
|
2001-10-22 15:36:31 +02:00
|
|
|
unsigned n = numInstr++; // delay slot
|
|
|
|
mvec[n] = new MachineInstr(NOP);
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
break;
|
2001-11-04 20:34:49 +01:00
|
|
|
}
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
case 3: // stmt: Store(reg,reg)
|
|
|
|
case 4: // stmt: Store(reg,ptrreg)
|
|
|
|
mvec[0] = new MachineInstr(
|
|
|
|
ChooseStoreInstruction(
|
|
|
|
subtreeRoot->leftChild()->getValue()->getType()));
|
|
|
|
SetOperandsForMemInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 5: // stmt: BrUncond
|
|
|
|
mvec[0] = new MachineInstr(BA);
|
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_CCRegister,
|
|
|
|
(Value*)NULL);
|
|
|
|
mvec[0]->SetMachineOperand(1, MachineOperand::MO_PCRelativeDisp,
|
|
|
|
((BranchInst*) subtreeRoot->getInstruction())->getSuccessor(0));
|
|
|
|
|
|
|
|
// delay slot
|
|
|
|
mvec[numInstr++] = new MachineInstr(NOP);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 206: // stmt: BrCond(setCCconst)
|
2001-11-04 20:34:49 +01:00
|
|
|
{ // setCCconst => boolean was computed with `%b = setCC type reg1 const'
|
2001-10-01 02:12:53 +02:00
|
|
|
// If the constant is ZERO, we can use the branch-on-integer-register
|
|
|
|
// instructions and avoid the SUBcc instruction entirely.
|
|
|
|
// Otherwise this is just the same as case 5, so just fall through.
|
2001-11-04 20:34:49 +01:00
|
|
|
//
|
2001-10-01 02:12:53 +02:00
|
|
|
InstrTreeNode* constNode = subtreeRoot->leftChild()->rightChild();
|
|
|
|
assert(constNode &&
|
|
|
|
constNode->getNodeType() ==InstrTreeNode::NTConstNode);
|
|
|
|
ConstPoolVal* constVal = (ConstPoolVal*) constNode->getValue();
|
|
|
|
bool isValidConst;
|
|
|
|
|
|
|
|
if ((constVal->getType()->isIntegral()
|
|
|
|
|| constVal->getType()->isPointerType())
|
|
|
|
&& GetConstantValueAsSignedInt(constVal, isValidConst) == 0
|
|
|
|
&& isValidConst)
|
|
|
|
{
|
2001-11-04 20:34:49 +01:00
|
|
|
BranchInst* brInst=cast<BranchInst>(subtreeRoot->getInstruction());
|
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
// That constant is a zero after all...
|
|
|
|
// Use the left child of setCC as the first argument!
|
|
|
|
mvec[0] = new MachineInstr(ChooseBprInstruction(subtreeRoot));
|
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
|
|
|
subtreeRoot->leftChild()->leftChild()->getValue());
|
|
|
|
mvec[0]->SetMachineOperand(1, MachineOperand::MO_PCRelativeDisp,
|
2001-11-04 20:34:49 +01:00
|
|
|
brInst->getSuccessor(0));
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
// delay slot
|
|
|
|
mvec[numInstr++] = new MachineInstr(NOP);
|
|
|
|
|
|
|
|
// false branch
|
|
|
|
int n = numInstr++;
|
|
|
|
mvec[n] = new MachineInstr(BA);
|
|
|
|
mvec[n]->SetMachineOperand(0, MachineOperand::MO_CCRegister,
|
|
|
|
(Value*) NULL);
|
|
|
|
mvec[n]->SetMachineOperand(1, MachineOperand::MO_PCRelativeDisp,
|
2001-11-04 20:34:49 +01:00
|
|
|
brInst->getSuccessor(1));
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
// delay slot
|
|
|
|
mvec[numInstr++] = new MachineInstr(NOP);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// ELSE FALL THROUGH
|
2001-11-04 20:34:49 +01:00
|
|
|
}
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
case 6: // stmt: BrCond(bool)
|
2001-11-04 20:34:49 +01:00
|
|
|
{ // bool => boolean was computed with some boolean operator
|
2001-10-01 02:12:53 +02:00
|
|
|
// (SetCC, Not, ...). We need to check whether the type was a FP,
|
|
|
|
// signed int or unsigned int, and check the branching condition in
|
|
|
|
// order to choose the branch to use.
|
2001-11-04 20:34:49 +01:00
|
|
|
// If it is an integer CC, we also need to find the unique
|
|
|
|
// TmpInstruction representing that CC.
|
2001-10-01 02:12:53 +02:00
|
|
|
//
|
2001-11-04 20:34:49 +01:00
|
|
|
BranchInst* brInst = cast<BranchInst>(subtreeRoot->getInstruction());
|
2001-10-01 02:12:53 +02:00
|
|
|
bool isFPBranch;
|
|
|
|
mvec[0] = new MachineInstr(ChooseBccInstruction(subtreeRoot,
|
|
|
|
isFPBranch));
|
2001-11-04 20:34:49 +01:00
|
|
|
|
2001-11-08 06:04:09 +01:00
|
|
|
Value* ccValue = GetTmpForCC(subtreeRoot->leftChild()->getValue(),
|
|
|
|
brInst->getParent()->getParent(),
|
|
|
|
isFPBranch? Type::FloatTy : Type::IntTy);
|
2001-11-04 20:34:49 +01:00
|
|
|
|
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_CCRegister, ccValue);
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0]->SetMachineOperand(1, MachineOperand::MO_PCRelativeDisp,
|
2001-11-04 20:34:49 +01:00
|
|
|
brInst->getSuccessor(0));
|
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
// delay slot
|
|
|
|
mvec[numInstr++] = new MachineInstr(NOP);
|
2001-11-04 20:34:49 +01:00
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
// false branch
|
|
|
|
int n = numInstr++;
|
|
|
|
mvec[n] = new MachineInstr(BA);
|
|
|
|
mvec[n]->SetMachineOperand(0, MachineOperand::MO_CCRegister,
|
|
|
|
(Value*) NULL);
|
|
|
|
mvec[n]->SetMachineOperand(1, MachineOperand::MO_PCRelativeDisp,
|
2001-11-04 20:34:49 +01:00
|
|
|
brInst->getSuccessor(1));
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
// delay slot
|
|
|
|
mvec[numInstr++] = new MachineInstr(NOP);
|
|
|
|
break;
|
2001-11-04 20:34:49 +01:00
|
|
|
}
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
case 208: // stmt: BrCond(boolconst)
|
2001-11-04 20:34:49 +01:00
|
|
|
{
|
2001-10-01 02:12:53 +02:00
|
|
|
// boolconst => boolean is a constant; use BA to first or second label
|
2001-10-01 20:26:53 +02:00
|
|
|
ConstPoolVal* constVal =
|
|
|
|
cast<ConstPoolVal>(subtreeRoot->leftChild()->getValue());
|
2001-10-01 02:12:53 +02:00
|
|
|
unsigned dest = ((ConstPoolBool*) constVal)->getValue()? 0 : 1;
|
|
|
|
|
|
|
|
mvec[0] = new MachineInstr(BA);
|
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_CCRegister,
|
|
|
|
(Value*) NULL);
|
|
|
|
mvec[0]->SetMachineOperand(1, MachineOperand::MO_PCRelativeDisp,
|
|
|
|
((BranchInst*) subtreeRoot->getInstruction())->getSuccessor(dest));
|
|
|
|
|
|
|
|
// delay slot
|
|
|
|
mvec[numInstr++] = new MachineInstr(NOP);
|
|
|
|
break;
|
2001-11-04 20:34:49 +01:00
|
|
|
}
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
case 8: // stmt: BrCond(boolreg)
|
2001-11-04 20:34:49 +01:00
|
|
|
{ // boolreg => boolean is stored in an existing register.
|
2001-10-01 02:12:53 +02:00
|
|
|
// Just use the branch-on-integer-register instruction!
|
|
|
|
//
|
|
|
|
mvec[0] = new MachineInstr(BRNZ);
|
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
|
|
|
subtreeRoot->leftChild()->getValue());
|
|
|
|
mvec[0]->SetMachineOperand(1, MachineOperand::MO_PCRelativeDisp,
|
|
|
|
((BranchInst*) subtreeRoot->getInstruction())->getSuccessor(0));
|
|
|
|
|
|
|
|
// delay slot
|
|
|
|
mvec[numInstr++] = new MachineInstr(NOP); // delay slot
|
|
|
|
|
|
|
|
// false branch
|
|
|
|
int n = numInstr++;
|
|
|
|
mvec[n] = new MachineInstr(BA);
|
|
|
|
mvec[n]->SetMachineOperand(0, MachineOperand::MO_CCRegister,
|
|
|
|
(Value*) NULL);
|
|
|
|
mvec[n]->SetMachineOperand(1, MachineOperand::MO_PCRelativeDisp,
|
|
|
|
((BranchInst*) subtreeRoot->getInstruction())->getSuccessor(1));
|
|
|
|
|
|
|
|
// delay slot
|
|
|
|
mvec[numInstr++] = new MachineInstr(NOP);
|
|
|
|
break;
|
2001-11-04 20:34:49 +01:00
|
|
|
}
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
case 9: // stmt: Switch(reg)
|
|
|
|
assert(0 && "*** SWITCH instruction is not implemented yet.");
|
|
|
|
numInstr = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 10: // reg: VRegList(reg, reg)
|
|
|
|
assert(0 && "VRegList should never be the topmost non-chain rule");
|
|
|
|
break;
|
|
|
|
|
2001-11-08 06:04:09 +01:00
|
|
|
case 21: // bool: Not(bool): Both these are implemented as:
|
|
|
|
case 321: // reg: BNot(reg) : reg = reg XOR-NOT 0
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0] = new MachineInstr(XNOR);
|
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
|
|
|
subtreeRoot->leftChild()->getValue());
|
|
|
|
mvec[0]->SetMachineOperand(1, target.getRegInfo().getZeroRegNum());
|
|
|
|
mvec[0]->SetMachineOperand(2, MachineOperand::MO_VirtualRegister,
|
|
|
|
subtreeRoot->getValue());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 322: // reg: ToBoolTy(bool):
|
|
|
|
case 22: // reg: ToBoolTy(reg):
|
2001-11-09 03:18:16 +01:00
|
|
|
{
|
|
|
|
const Type* opType = subtreeRoot->leftChild()->getValue()->getType();
|
|
|
|
assert(opType->isIntegral() || opType->isPointerType()
|
|
|
|
|| opType == Type::BoolTy);
|
2001-10-01 02:12:53 +02:00
|
|
|
numInstr = 0;
|
|
|
|
forwardOperandNum = 0;
|
|
|
|
break;
|
2001-11-09 03:18:16 +01:00
|
|
|
}
|
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
case 23: // reg: ToUByteTy(reg)
|
|
|
|
case 25: // reg: ToUShortTy(reg)
|
|
|
|
case 27: // reg: ToUIntTy(reg)
|
|
|
|
case 29: // reg: ToULongTy(reg)
|
2001-11-09 03:18:16 +01:00
|
|
|
{
|
|
|
|
const Type* opType = subtreeRoot->leftChild()->getValue()->getType();
|
2001-10-01 02:12:53 +02:00
|
|
|
assert(opType->isIntegral() ||
|
|
|
|
opType->isPointerType() ||
|
|
|
|
opType == Type::BoolTy && "Cast is illegal for other types");
|
|
|
|
numInstr = 0;
|
|
|
|
forwardOperandNum = 0;
|
|
|
|
break;
|
2001-11-09 03:18:16 +01:00
|
|
|
}
|
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
case 24: // reg: ToSByteTy(reg)
|
|
|
|
case 26: // reg: ToShortTy(reg)
|
|
|
|
case 28: // reg: ToIntTy(reg)
|
|
|
|
case 30: // reg: ToLongTy(reg)
|
2001-11-09 03:18:16 +01:00
|
|
|
{
|
|
|
|
const Type* opType = subtreeRoot->leftChild()->getValue()->getType();
|
|
|
|
if (opType->isIntegral()
|
|
|
|
|| opType->isPointerType()
|
|
|
|
|| opType == Type::BoolTy)
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
numInstr = 0;
|
|
|
|
forwardOperandNum = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-09 03:18:16 +01:00
|
|
|
// If the source operand is an FP type, the int result must be
|
|
|
|
// copied from float to int register via memory!
|
|
|
|
Instruction *dest = subtreeRoot->getInstruction();
|
|
|
|
Value* leftVal = subtreeRoot->leftChild()->getValue();
|
|
|
|
Value* destForCast;
|
|
|
|
vector<MachineInstr*> minstrVec;
|
|
|
|
|
|
|
|
if (opType == Type::FloatTy || opType == Type::DoubleTy)
|
|
|
|
{
|
|
|
|
// Create a temporary to represent the INT register
|
|
|
|
// into which the FP value will be copied via memory.
|
|
|
|
// The type of this temporary will determine the FP
|
|
|
|
// register used: single-prec for a 32-bit int or smaller,
|
|
|
|
// double-prec for a 64-bit int.
|
|
|
|
//
|
|
|
|
const Type* destTypeToUse =
|
|
|
|
(dest->getType() == Type::LongTy)? Type::DoubleTy
|
|
|
|
: Type::FloatTy;
|
|
|
|
destForCast = new TmpInstruction(TMP_INSTRUCTION_OPCODE,
|
|
|
|
destTypeToUse, leftVal, NULL);
|
|
|
|
dest->getMachineInstrVec().addTempValue(destForCast);
|
|
|
|
|
|
|
|
vector<TmpInstruction*> tempVec;
|
|
|
|
target.getInstrInfo().CreateCodeToCopyFloatToInt(
|
|
|
|
dest->getParent()->getParent(),
|
|
|
|
(TmpInstruction*) destForCast, dest,
|
|
|
|
minstrVec, tempVec, target);
|
|
|
|
|
|
|
|
for (unsigned i=0; i < tempVec.size(); ++i)
|
|
|
|
dest->getMachineInstrVec().addTempValue(tempVec[i]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
destForCast = leftVal;
|
|
|
|
|
|
|
|
MachineOpCode opCode=ChooseConvertToIntInstr(subtreeRoot, opType);
|
|
|
|
assert(opCode != INVALID_OPCODE && "Expected to need conversion!");
|
|
|
|
|
|
|
|
mvec[0] = new MachineInstr(opCode);
|
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
|
|
|
leftVal);
|
|
|
|
mvec[0]->SetMachineOperand(1, MachineOperand::MO_VirtualRegister,
|
|
|
|
destForCast);
|
|
|
|
|
|
|
|
assert(numInstr == 1 && "Should be initialized to 1 at the top");
|
|
|
|
for (unsigned i=0; i < minstrVec.size(); ++i)
|
|
|
|
mvec[numInstr++] = minstrVec[i];
|
2001-10-01 02:12:53 +02:00
|
|
|
}
|
|
|
|
break;
|
2001-11-09 03:18:16 +01:00
|
|
|
}
|
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
case 31: // reg: ToFloatTy(reg):
|
|
|
|
case 32: // reg: ToDoubleTy(reg):
|
|
|
|
case 232: // reg: ToDoubleTy(Constant):
|
|
|
|
|
|
|
|
// If this instruction has a parent (a user) in the tree
|
|
|
|
// and the user is translated as an FsMULd instruction,
|
|
|
|
// then the cast is unnecessary. So check that first.
|
|
|
|
// In the future, we'll want to do the same for the FdMULq instruction,
|
|
|
|
// so do the check here instead of only for ToFloatTy(reg).
|
|
|
|
//
|
|
|
|
if (subtreeRoot->parent() != NULL &&
|
|
|
|
((InstructionNode*) subtreeRoot->parent())->getInstruction()->getMachineInstrVec()[0]->getOpCode() == FSMULD)
|
|
|
|
{
|
|
|
|
numInstr = 0;
|
|
|
|
forwardOperandNum = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-09 03:18:16 +01:00
|
|
|
Value* leftVal = subtreeRoot->leftChild()->getValue();
|
|
|
|
const Type* opType = leftVal->getType();
|
2001-10-01 02:12:53 +02:00
|
|
|
MachineOpCode opCode=ChooseConvertToFloatInstr(subtreeRoot,opType);
|
|
|
|
if (opCode == INVALID_OPCODE) // no conversion needed
|
|
|
|
{
|
|
|
|
numInstr = 0;
|
|
|
|
forwardOperandNum = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-11-08 06:04:09 +01:00
|
|
|
// If the source operand is a non-FP type it must be
|
|
|
|
// first copied from int to float register via memory!
|
|
|
|
Instruction *dest = subtreeRoot->getInstruction();
|
|
|
|
Value* srcForCast;
|
|
|
|
int n = 0;
|
|
|
|
if (opType != Type::FloatTy && opType != Type::DoubleTy)
|
|
|
|
{
|
|
|
|
// Create a temporary to represent the FP register
|
|
|
|
// into which the integer will be copied via memory.
|
2001-11-09 03:18:16 +01:00
|
|
|
// The type of this temporary will determine the FP
|
|
|
|
// register used: single-prec for a 32-bit int or smaller,
|
|
|
|
// double-prec for a 64-bit int.
|
|
|
|
//
|
|
|
|
const Type* srcTypeToUse =
|
|
|
|
(leftVal->getType() == Type::LongTy)? Type::DoubleTy
|
|
|
|
: Type::FloatTy;
|
|
|
|
|
2001-11-08 06:04:09 +01:00
|
|
|
srcForCast = new TmpInstruction(TMP_INSTRUCTION_OPCODE,
|
2001-11-09 03:18:16 +01:00
|
|
|
srcTypeToUse, dest, NULL);
|
2001-11-08 06:04:09 +01:00
|
|
|
dest->getMachineInstrVec().addTempValue(srcForCast);
|
|
|
|
|
|
|
|
vector<MachineInstr*> minstrVec;
|
|
|
|
vector<TmpInstruction*> tempVec;
|
|
|
|
target.getInstrInfo().CreateCodeToCopyIntToFloat(
|
|
|
|
dest->getParent()->getParent(),
|
|
|
|
leftVal, (TmpInstruction*) srcForCast,
|
|
|
|
minstrVec, tempVec, target);
|
|
|
|
|
|
|
|
for (unsigned i=0; i < minstrVec.size(); ++i)
|
|
|
|
mvec[n++] = minstrVec[i];
|
|
|
|
|
|
|
|
for (unsigned i=0; i < tempVec.size(); ++i)
|
|
|
|
dest->getMachineInstrVec().addTempValue(tempVec[i]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
srcForCast = leftVal;
|
|
|
|
|
|
|
|
MachineInstr* castI = new MachineInstr(opCode);
|
|
|
|
castI->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
|
|
|
srcForCast);
|
|
|
|
castI->SetMachineOperand(1, MachineOperand::MO_VirtualRegister,
|
|
|
|
dest);
|
|
|
|
mvec[n++] = castI;
|
|
|
|
numInstr = n;
|
2001-10-01 02:12:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 19: // reg: ToArrayTy(reg):
|
|
|
|
case 20: // reg: ToPointerTy(reg):
|
|
|
|
numInstr = 0;
|
|
|
|
forwardOperandNum = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 233: // reg: Add(reg, Constant)
|
|
|
|
mvec[0] = CreateAddConstInstruction(subtreeRoot);
|
|
|
|
if (mvec[0] != NULL)
|
|
|
|
break;
|
|
|
|
// ELSE FALL THROUGH
|
|
|
|
|
|
|
|
case 33: // reg: Add(reg, reg)
|
|
|
|
mvec[0] = new MachineInstr(ChooseAddInstruction(subtreeRoot));
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 234: // reg: Sub(reg, Constant)
|
|
|
|
mvec[0] = CreateSubConstInstruction(subtreeRoot);
|
|
|
|
if (mvec[0] != NULL)
|
|
|
|
break;
|
|
|
|
// ELSE FALL THROUGH
|
|
|
|
|
|
|
|
case 34: // reg: Sub(reg, reg)
|
2001-11-04 22:59:14 +01:00
|
|
|
mvec[0] = new MachineInstr(ChooseSubInstructionByType(
|
|
|
|
subtreeRoot->getInstruction()->getType()));
|
2001-10-01 02:12:53 +02:00
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 135: // reg: Mul(todouble, todouble)
|
|
|
|
checkCast = true;
|
|
|
|
// FALL THROUGH
|
|
|
|
|
|
|
|
case 35: // reg: Mul(reg, reg)
|
|
|
|
mvec[0] =new MachineInstr(ChooseMulInstruction(subtreeRoot,checkCast));
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 335: // reg: Mul(todouble, todoubleConst)
|
|
|
|
checkCast = true;
|
|
|
|
// FALL THROUGH
|
|
|
|
|
|
|
|
case 235: // reg: Mul(reg, Constant)
|
|
|
|
mvec[0] = CreateMulConstInstruction(target, subtreeRoot, mvec[1]);
|
|
|
|
if (mvec[0] == NULL)
|
|
|
|
{
|
|
|
|
mvec[0] = new MachineInstr(ChooseMulInstruction(subtreeRoot,
|
|
|
|
checkCast));
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (mvec[1] != NULL)
|
|
|
|
++numInstr;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 236: // reg: Div(reg, Constant)
|
|
|
|
mvec[0] = CreateDivConstInstruction(target, subtreeRoot, mvec[1]);
|
|
|
|
if (mvec[0] != NULL)
|
|
|
|
{
|
|
|
|
if (mvec[1] != NULL)
|
|
|
|
++numInstr;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
// ELSE FALL THROUGH
|
|
|
|
|
|
|
|
case 36: // reg: Div(reg, reg)
|
|
|
|
mvec[0] = new MachineInstr(ChooseDivInstruction(target, subtreeRoot));
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 37: // reg: Rem(reg, reg)
|
|
|
|
case 237: // reg: Rem(reg, Constant)
|
2001-11-04 22:59:14 +01:00
|
|
|
{
|
|
|
|
Instruction* remInstr = subtreeRoot->getInstruction();
|
|
|
|
|
|
|
|
TmpInstruction* quot = new TmpInstruction(TMP_INSTRUCTION_OPCODE,
|
|
|
|
subtreeRoot->leftChild()->getValue(),
|
|
|
|
subtreeRoot->rightChild()->getValue());
|
|
|
|
TmpInstruction* prod = new TmpInstruction(TMP_INSTRUCTION_OPCODE,
|
|
|
|
quot,
|
|
|
|
subtreeRoot->rightChild()->getValue());
|
|
|
|
remInstr->getMachineInstrVec().addTempValue(quot);
|
|
|
|
remInstr->getMachineInstrVec().addTempValue(prod);
|
|
|
|
|
|
|
|
mvec[0] = new MachineInstr(ChooseDivInstruction(target, subtreeRoot));
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
mvec[0]->SetMachineOperand(2, MachineOperand::MO_VirtualRegister,quot);
|
|
|
|
|
|
|
|
int n = numInstr++;
|
|
|
|
mvec[n] = new MachineInstr(ChooseMulInstructionByType(
|
|
|
|
subtreeRoot->getInstruction()->getType()));
|
|
|
|
mvec[n]->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,quot);
|
|
|
|
mvec[n]->SetMachineOperand(1, MachineOperand::MO_VirtualRegister,
|
|
|
|
subtreeRoot->rightChild()->getValue());
|
|
|
|
mvec[n]->SetMachineOperand(2, MachineOperand::MO_VirtualRegister,prod);
|
|
|
|
|
|
|
|
n = numInstr++;
|
|
|
|
mvec[n] = new MachineInstr(ChooseSubInstructionByType(
|
|
|
|
subtreeRoot->getInstruction()->getType()));
|
|
|
|
Set3OperandsFromInstr(mvec[n], subtreeRoot, target);
|
|
|
|
mvec[n]->SetMachineOperand(1, MachineOperand::MO_VirtualRegister,prod);
|
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
break;
|
2001-11-04 22:59:14 +01:00
|
|
|
}
|
|
|
|
|
2001-11-08 06:04:09 +01:00
|
|
|
case 38: // bool: And(bool, bool)
|
|
|
|
case 238: // bool: And(bool, boolconst)
|
|
|
|
case 338: // reg : BAnd(reg, reg)
|
|
|
|
case 538: // reg : BAnd(reg, Constant)
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0] = new MachineInstr(AND);
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
2001-11-08 06:04:09 +01:00
|
|
|
case 138: // bool: And(bool, not)
|
|
|
|
case 438: // bool: BAnd(bool, not)
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0] = new MachineInstr(ANDN);
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
2001-11-08 06:04:09 +01:00
|
|
|
case 39: // bool: Or(bool, bool)
|
|
|
|
case 239: // bool: Or(bool, boolconst)
|
|
|
|
case 339: // reg : BOr(reg, reg)
|
|
|
|
case 539: // reg : BOr(reg, Constant)
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0] = new MachineInstr(ORN);
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
2001-11-08 06:04:09 +01:00
|
|
|
case 139: // bool: Or(bool, not)
|
|
|
|
case 439: // bool: BOr(bool, not)
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0] = new MachineInstr(ORN);
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
2001-11-08 06:04:09 +01:00
|
|
|
case 40: // bool: Xor(bool, bool)
|
|
|
|
case 240: // bool: Xor(bool, boolconst)
|
|
|
|
case 340: // reg : BXor(reg, reg)
|
|
|
|
case 540: // reg : BXor(reg, Constant)
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0] = new MachineInstr(XOR);
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
2001-11-08 06:04:09 +01:00
|
|
|
case 140: // bool: Xor(bool, not)
|
|
|
|
case 440: // bool: BXor(bool, not)
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0] = new MachineInstr(XNOR);
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 41: // boolconst: SetCC(reg, Constant)
|
|
|
|
// Check if this is an integer comparison, and
|
|
|
|
// there is a parent, and the parent decided to use
|
|
|
|
// a branch-on-integer-register instead of branch-on-condition-code.
|
|
|
|
// If so, the SUBcc instruction is not required.
|
|
|
|
// (However, we must still check for constants to be loaded from
|
|
|
|
// the constant pool so that such a load can be associated with
|
|
|
|
// this instruction.)
|
|
|
|
//
|
|
|
|
// Otherwise this is just the same as case 42, so just fall through.
|
|
|
|
//
|
2001-11-09 03:18:16 +01:00
|
|
|
if ((subtreeRoot->leftChild()->getValue()->getType()->isIntegral() ||
|
|
|
|
subtreeRoot->leftChild()->getValue()->getType()->isPointerType())
|
|
|
|
&& subtreeRoot->parent() != NULL)
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
InstructionNode* parent = (InstructionNode*) subtreeRoot->parent();
|
|
|
|
assert(parent->getNodeType() == InstrTreeNode::NTInstructionNode);
|
|
|
|
const vector<MachineInstr*>&
|
|
|
|
minstrVec = parent->getInstruction()->getMachineInstrVec();
|
|
|
|
MachineOpCode parentOpCode;
|
|
|
|
if (parent->getInstruction()->getOpcode() == Instruction::Br &&
|
|
|
|
(parentOpCode = minstrVec[0]->getOpCode()) >= BRZ &&
|
|
|
|
parentOpCode <= BRGEZ)
|
|
|
|
{
|
|
|
|
numInstr = 0; // don't forward the operand!
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ELSE FALL THROUGH
|
|
|
|
|
|
|
|
case 42: // bool: SetCC(reg, reg):
|
2001-09-14 05:47:57 +02:00
|
|
|
{
|
2001-11-04 20:34:49 +01:00
|
|
|
// This generates a SUBCC instruction, putting the difference in
|
|
|
|
// a result register, and setting a condition code.
|
|
|
|
//
|
|
|
|
// If the boolean result of the SetCC is used by anything other
|
|
|
|
// than a single branch instruction, the boolean must be
|
|
|
|
// computed and stored in the result register. Otherwise, discard
|
|
|
|
// the difference (by using %g0) and keep only the condition code.
|
2001-10-01 02:12:53 +02:00
|
|
|
//
|
2001-11-04 20:34:49 +01:00
|
|
|
// To compute the boolean result in a register we use a conditional
|
|
|
|
// move, unless the result of the SUBCC instruction can be used as
|
|
|
|
// the bool! This assumes that zero is FALSE and any non-zero
|
|
|
|
// integer is TRUE.
|
|
|
|
//
|
|
|
|
InstructionNode* parentNode = (InstructionNode*) subtreeRoot->parent();
|
|
|
|
Instruction* setCCInstr = subtreeRoot->getInstruction();
|
|
|
|
bool keepBoolVal = (parentNode == NULL ||
|
|
|
|
parentNode->getInstruction()->getOpcode()
|
|
|
|
!= Instruction::Br);
|
|
|
|
bool subValIsBoolVal = setCCInstr->getOpcode() == Instruction::SetNE;
|
2001-10-01 02:12:53 +02:00
|
|
|
bool keepSubVal = keepBoolVal && subValIsBoolVal;
|
|
|
|
bool computeBoolVal = keepBoolVal && ! subValIsBoolVal;
|
|
|
|
|
|
|
|
bool mustClearReg;
|
|
|
|
int valueToMove;
|
2001-11-07 15:01:59 +01:00
|
|
|
MachineOpCode movOpCode = 0;
|
2001-11-08 06:04:09 +01:00
|
|
|
|
|
|
|
// Mark the 4th operand as being a CC register, and as a def
|
|
|
|
// A TmpInstruction is created to represent the CC "result".
|
|
|
|
// Unlike other instances of TmpInstruction, this one is used
|
|
|
|
// by machine code of multiple LLVM instructions, viz.,
|
|
|
|
// the SetCC and the branch. Make sure to get the same one!
|
|
|
|
// Note that we do this even for FP CC registers even though they
|
|
|
|
// are explicit operands, because the type of the operand
|
|
|
|
// needs to be a floating point condition code, not an integer
|
|
|
|
// condition code. Think of this as casting the bool result to
|
|
|
|
// a FP condition code register.
|
|
|
|
//
|
2001-11-09 03:18:16 +01:00
|
|
|
Value* leftVal = subtreeRoot->leftChild()->getValue();
|
2001-11-08 06:04:09 +01:00
|
|
|
bool isFPCompare = (leftVal->getType() == Type::FloatTy ||
|
|
|
|
leftVal->getType() == Type::DoubleTy);
|
|
|
|
|
|
|
|
TmpInstruction* tmpForCC = GetTmpForCC(setCCInstr,
|
|
|
|
setCCInstr->getParent()->getParent(),
|
|
|
|
isFPCompare? Type::FloatTy : Type::IntTy);
|
|
|
|
setCCInstr->getMachineInstrVec().addTempValue(tmpForCC);
|
2001-10-01 02:12:53 +02:00
|
|
|
|
2001-11-08 06:04:09 +01:00
|
|
|
if (! isFPCompare)
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
|
|
|
// Integer condition: dest. should be %g0 or an integer register.
|
|
|
|
// If result must be saved but condition is not SetEQ then we need
|
|
|
|
// a separate instruction to compute the bool result, so discard
|
|
|
|
// result of SUBcc instruction anyway.
|
|
|
|
//
|
|
|
|
mvec[0] = new MachineInstr(SUBcc);
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target, ! keepSubVal);
|
|
|
|
|
|
|
|
mvec[0]->SetMachineOperand(3, MachineOperand::MO_CCRegister,
|
2001-11-04 20:34:49 +01:00
|
|
|
tmpForCC, /*def*/true);
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
if (computeBoolVal)
|
|
|
|
{ // recompute bool using the integer condition codes
|
|
|
|
movOpCode =
|
|
|
|
ChooseMovpccAfterSub(subtreeRoot,mustClearReg,valueToMove);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// FP condition: dest of FCMP should be some FCCn register
|
|
|
|
mvec[0] = new MachineInstr(ChooseFcmpInstruction(subtreeRoot));
|
2001-11-04 20:34:49 +01:00
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_CCRegister,
|
2001-11-08 06:04:09 +01:00
|
|
|
tmpForCC);
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0]->SetMachineOperand(1,MachineOperand::MO_VirtualRegister,
|
|
|
|
subtreeRoot->leftChild()->getValue());
|
|
|
|
mvec[0]->SetMachineOperand(2,MachineOperand::MO_VirtualRegister,
|
|
|
|
subtreeRoot->rightChild()->getValue());
|
|
|
|
|
|
|
|
if (computeBoolVal)
|
|
|
|
{// recompute bool using the FP condition codes
|
|
|
|
mustClearReg = true;
|
|
|
|
valueToMove = 1;
|
|
|
|
movOpCode = ChooseMovFpccInstruction(subtreeRoot);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (computeBoolVal)
|
|
|
|
{
|
|
|
|
if (mustClearReg)
|
|
|
|
{// Unconditionally set register to 0
|
|
|
|
int n = numInstr++;
|
|
|
|
mvec[n] = new MachineInstr(SETHI);
|
|
|
|
mvec[n]->SetMachineOperand(0,MachineOperand::MO_UnextendedImmed,
|
|
|
|
s0);
|
|
|
|
mvec[n]->SetMachineOperand(1,MachineOperand::MO_VirtualRegister,
|
2001-11-04 20:34:49 +01:00
|
|
|
setCCInstr);
|
2001-10-01 02:12:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now conditionally move `valueToMove' (0 or 1) into the register
|
|
|
|
int n = numInstr++;
|
|
|
|
mvec[n] = new MachineInstr(movOpCode);
|
|
|
|
mvec[n]->SetMachineOperand(0, MachineOperand::MO_CCRegister,
|
2001-11-08 06:04:09 +01:00
|
|
|
tmpForCC);
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[n]->SetMachineOperand(1, MachineOperand::MO_UnextendedImmed,
|
|
|
|
valueToMove);
|
|
|
|
mvec[n]->SetMachineOperand(2, MachineOperand::MO_VirtualRegister,
|
2001-11-04 20:34:49 +01:00
|
|
|
setCCInstr);
|
2001-10-01 02:12:53 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 43: // boolreg: VReg
|
|
|
|
case 44: // boolreg: Constant
|
|
|
|
numInstr = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 51: // reg: Load(reg)
|
|
|
|
case 52: // reg: Load(ptrreg)
|
|
|
|
case 53: // reg: LoadIdx(reg,reg)
|
|
|
|
case 54: // reg: LoadIdx(ptrreg,reg)
|
|
|
|
mvec[0] = new MachineInstr(ChooseLoadInstruction(
|
|
|
|
subtreeRoot->getValue()->getType()));
|
|
|
|
SetOperandsForMemInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 55: // reg: GetElemPtr(reg)
|
|
|
|
case 56: // reg: GetElemPtrIdx(reg,reg)
|
|
|
|
if (subtreeRoot->parent() != NULL)
|
|
|
|
{
|
2001-11-10 02:05:26 +01:00
|
|
|
// If the parent was a memory operation and not an array access,
|
|
|
|
// the parent will fold this instruction in so generate nothing.
|
|
|
|
//
|
|
|
|
Instruction* parent =
|
|
|
|
cast<Instruction>(subtreeRoot->parent()->getValue());
|
|
|
|
if (parent->getOpcode() == Instruction::Load ||
|
|
|
|
parent->getOpcode() == Instruction::Store ||
|
|
|
|
parent->getOpcode() == Instruction::GetElementPtr)
|
|
|
|
{
|
|
|
|
// Check if the parent is an array access,
|
|
|
|
// If so, we still need to generate this instruction.
|
|
|
|
GetElementPtrInst* getElemInst =
|
|
|
|
cast<GetElementPtrInst>(subtreeRoot->getInstruction());
|
|
|
|
const PointerType* ptrType =
|
2001-11-14 12:27:58 +01:00
|
|
|
cast<PointerType>(getElemInst->getPointerOperand()->getType());
|
2001-11-10 02:05:26 +01:00
|
|
|
if (! ptrType->getValueType()->isArrayType())
|
|
|
|
{// we don't need a separate instr
|
|
|
|
numInstr = 0; // don't forward operand!
|
|
|
|
break;
|
|
|
|
}
|
2001-10-01 02:12:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// else in all other cases we need to a separate ADD instruction
|
|
|
|
mvec[0] = new MachineInstr(ADD);
|
|
|
|
SetOperandsForMemInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
|
|
|
|
2001-11-04 20:34:49 +01:00
|
|
|
case 57: // reg: Alloca: Implement as 1 instruction:
|
|
|
|
{ // add %fp, offsetFromFP -> result
|
2001-10-01 02:12:53 +02:00
|
|
|
Instruction* instr = subtreeRoot->getInstruction();
|
|
|
|
const PointerType* instrType = (const PointerType*) instr->getType();
|
|
|
|
assert(instrType->isPointerType());
|
|
|
|
int tsize = (int)
|
|
|
|
target.findOptimalStorageSize(instrType->getValueType());
|
|
|
|
assert(tsize != 0 && "Just to check when this can happen");
|
|
|
|
|
2001-10-22 15:36:31 +02:00
|
|
|
Method* method = instr->getParent()->getParent();
|
2001-11-08 06:04:09 +01:00
|
|
|
MachineCodeForMethod& mcInfo = MachineCodeForMethod::get(method);
|
|
|
|
int offsetFromFP = mcInfo.allocateLocalVar(target, instr);
|
2001-10-22 15:36:31 +02:00
|
|
|
|
|
|
|
// Create a temporary Value to hold the constant offset.
|
|
|
|
// This is needed because it may not fit in the immediate field.
|
|
|
|
ConstPoolSInt* offsetVal=ConstPoolSInt::get(Type::IntTy, offsetFromFP);
|
|
|
|
|
|
|
|
// Instruction 1: add %fp, offsetFromFP -> result
|
|
|
|
mvec[0] = new MachineInstr(ADD);
|
|
|
|
mvec[0]->SetMachineOperand(0, target.getRegInfo().getFramePointer());
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0]->SetMachineOperand(1, MachineOperand::MO_VirtualRegister,
|
2001-10-22 15:36:31 +02:00
|
|
|
offsetVal);
|
|
|
|
mvec[0]->SetMachineOperand(2, MachineOperand::MO_VirtualRegister,
|
2001-10-01 02:12:53 +02:00
|
|
|
instr);
|
|
|
|
break;
|
2001-11-04 20:34:49 +01:00
|
|
|
}
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
case 58: // reg: Alloca(reg): Implement as 3 instructions:
|
|
|
|
// mul num, typeSz -> tmp
|
|
|
|
// sub %sp, tmp -> %sp
|
2001-11-04 20:34:49 +01:00
|
|
|
{ // add %sp, frameSizeBelowDynamicArea -> result
|
2001-10-01 02:12:53 +02:00
|
|
|
Instruction* instr = subtreeRoot->getInstruction();
|
|
|
|
const PointerType* instrType = (const PointerType*) instr->getType();
|
|
|
|
assert(instrType->isPointerType() &&
|
|
|
|
instrType->getValueType()->isArrayType());
|
|
|
|
const Type* eltType =
|
|
|
|
((ArrayType*) instrType->getValueType())->getElementType();
|
|
|
|
int tsize = (int) target.findOptimalStorageSize(eltType);
|
2001-10-22 15:36:31 +02:00
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
assert(tsize != 0 && "Just to check when this can happen");
|
2001-10-22 15:36:31 +02:00
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
// Create a temporary Value to hold the constant type-size
|
2001-10-22 15:36:31 +02:00
|
|
|
ConstPoolSInt* tsizeVal = ConstPoolSInt::get(Type::IntTy, tsize);
|
|
|
|
|
|
|
|
// Create a temporary Value to hold the constant offset from SP
|
|
|
|
Method* method = instr->getParent()->getParent();
|
2001-11-08 06:04:09 +01:00
|
|
|
bool ignore; // we don't need this
|
|
|
|
ConstPoolSInt* dynamicAreaOffset = ConstPoolSInt::get(Type::IntTy,
|
|
|
|
target.getFrameInfo().getDynamicAreaOffset(MachineCodeForMethod::get(method),
|
|
|
|
ignore));
|
2001-10-22 15:36:31 +02:00
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
// Create a temporary value to hold `tmp'
|
2001-10-18 02:26:20 +02:00
|
|
|
Instruction* tmpInstr = new TmpInstruction(TMP_INSTRUCTION_OPCODE,
|
2001-10-01 02:12:53 +02:00
|
|
|
subtreeRoot->leftChild()->getValue(),
|
|
|
|
NULL /*could insert tsize here*/);
|
|
|
|
subtreeRoot->getInstruction()->getMachineInstrVec().addTempValue(tmpInstr);
|
|
|
|
|
|
|
|
// Instruction 1: mul numElements, typeSize -> tmp
|
|
|
|
mvec[0] = new MachineInstr(MULX);
|
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
2001-10-22 15:36:31 +02:00
|
|
|
subtreeRoot->leftChild()->getValue());
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0]->SetMachineOperand(1, MachineOperand::MO_VirtualRegister,
|
2001-10-22 15:36:31 +02:00
|
|
|
tsizeVal);
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[0]->SetMachineOperand(2, MachineOperand::MO_VirtualRegister,
|
|
|
|
tmpInstr);
|
2001-10-22 15:36:31 +02:00
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
// Instruction 2: sub %sp, tmp -> %sp
|
|
|
|
numInstr++;
|
|
|
|
mvec[1] = new MachineInstr(SUB);
|
2001-10-22 15:36:31 +02:00
|
|
|
mvec[1]->SetMachineOperand(0, target.getRegInfo().getStackPointer());
|
2001-10-01 02:12:53 +02:00
|
|
|
mvec[1]->SetMachineOperand(1, MachineOperand::MO_VirtualRegister,
|
|
|
|
tmpInstr);
|
2001-10-22 15:36:31 +02:00
|
|
|
mvec[1]->SetMachineOperand(2, target.getRegInfo().getStackPointer());
|
2001-10-01 02:12:53 +02:00
|
|
|
|
2001-10-22 15:36:31 +02:00
|
|
|
// Instruction 3: add %sp, frameSizeBelowDynamicArea -> result
|
2001-10-01 02:12:53 +02:00
|
|
|
numInstr++;
|
|
|
|
mvec[2] = new MachineInstr(ADD);
|
2001-10-22 15:36:31 +02:00
|
|
|
mvec[2]->SetMachineOperand(0, target.getRegInfo().getStackPointer());
|
|
|
|
mvec[2]->SetMachineOperand(1, MachineOperand::MO_VirtualRegister,
|
2001-11-08 06:04:09 +01:00
|
|
|
dynamicAreaOffset);
|
2001-10-22 15:36:31 +02:00
|
|
|
mvec[2]->SetMachineOperand(2,MachineOperand::MO_VirtualRegister,instr);
|
2001-10-01 02:12:53 +02:00
|
|
|
break;
|
2001-11-04 20:34:49 +01:00
|
|
|
}
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
case 61: // reg: Call
|
2001-11-04 20:34:49 +01:00
|
|
|
{ // Generate a call-indirect (i.e., jmpl) for now to expose
|
2001-10-01 02:12:53 +02:00
|
|
|
// the potential need for registers. If an absolute address
|
|
|
|
// is available, replace this with a CALL instruction.
|
|
|
|
// Mark both the indirection register and the return-address
|
|
|
|
// register as hidden virtual registers.
|
2001-10-11 06:23:19 +02:00
|
|
|
// Also, mark the operands of the Call and return value (if
|
|
|
|
// any) as implicit operands of the CALL machine instruction.
|
2001-11-04 20:34:49 +01:00
|
|
|
//
|
2001-10-02 05:41:24 +02:00
|
|
|
CallInst *callInstr = cast<CallInst>(subtreeRoot->getInstruction());
|
2001-10-13 08:54:30 +02:00
|
|
|
Value *callee = callInstr->getCalledValue();
|
2001-10-01 02:12:53 +02:00
|
|
|
|
2001-10-18 02:26:20 +02:00
|
|
|
Instruction* retAddrReg = new TmpInstruction(TMP_INSTRUCTION_OPCODE,
|
2001-10-01 02:12:53 +02:00
|
|
|
callInstr, NULL);
|
2001-10-10 22:56:33 +02:00
|
|
|
|
2001-10-11 06:23:19 +02:00
|
|
|
// Note temporary values in the machineInstrVec for the VM instr.
|
2001-10-10 22:56:33 +02:00
|
|
|
//
|
|
|
|
// WARNING: Operands 0..N-1 must go in slots 0..N-1 of implicitUses.
|
|
|
|
// The result value must go in slot N. This is assumed
|
|
|
|
// in register allocation.
|
|
|
|
//
|
2001-10-01 02:12:53 +02:00
|
|
|
callInstr->getMachineInstrVec().addTempValue(retAddrReg);
|
|
|
|
|
2001-10-20 22:57:06 +02:00
|
|
|
|
|
|
|
// Generate the machine instruction and its operands.
|
|
|
|
// Use CALL for direct function calls; this optimistically assumes
|
|
|
|
// the PC-relative address fits in the CALL address field (22 bits).
|
|
|
|
// Use JMPL for indirect calls.
|
|
|
|
//
|
|
|
|
if (callee->getValueType() == Value::MethodVal)
|
|
|
|
{ // direct function call
|
|
|
|
mvec[0] = new MachineInstr(CALL);
|
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_PCRelativeDisp,
|
|
|
|
callee);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // indirect function call
|
2001-10-22 15:36:31 +02:00
|
|
|
mvec[0] = new MachineInstr(JMPLCALL);
|
2001-10-20 22:57:06 +02:00
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
|
|
|
callee);
|
|
|
|
mvec[0]->SetMachineOperand(1, MachineOperand::MO_SignExtendedImmed,
|
|
|
|
(int64_t) 0);
|
|
|
|
mvec[0]->SetMachineOperand(2, MachineOperand::MO_VirtualRegister,
|
|
|
|
retAddrReg);
|
|
|
|
}
|
2001-10-01 02:12:53 +02:00
|
|
|
|
2001-10-11 06:23:19 +02:00
|
|
|
// Add the call operands and return value as implicit refs
|
|
|
|
for (unsigned i=0, N=callInstr->getNumOperands(); i < N; ++i)
|
|
|
|
if (callInstr->getOperand(i) != callee)
|
|
|
|
mvec[0]->addImplicitRef(callInstr->getOperand(i));
|
|
|
|
|
2001-10-20 22:57:06 +02:00
|
|
|
if (callInstr->getType() != Type::VoidTy)
|
2001-10-11 06:23:19 +02:00
|
|
|
mvec[0]->addImplicitRef(callInstr, /*isDef*/ true);
|
|
|
|
|
2001-10-20 22:57:06 +02:00
|
|
|
// For the CALL instruction, the ret. addr. reg. is also implicit
|
|
|
|
if (callee->getValueType() == Value::MethodVal)
|
|
|
|
mvec[0]->addImplicitRef(retAddrReg, /*isDef*/ true);
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
mvec[numInstr++] = new MachineInstr(NOP); // delay slot
|
|
|
|
break;
|
2001-11-04 20:34:49 +01:00
|
|
|
}
|
2001-10-01 02:12:53 +02:00
|
|
|
|
|
|
|
case 62: // reg: Shl(reg, reg)
|
2001-11-09 03:18:16 +01:00
|
|
|
{ const Type* opType = subtreeRoot->leftChild()->getValue()->getType();
|
2001-10-01 02:12:53 +02:00
|
|
|
assert(opType->isIntegral()
|
|
|
|
|| opType == Type::BoolTy
|
|
|
|
|| opType->isPointerType()&& "Shl unsupported for other types");
|
|
|
|
mvec[0] = new MachineInstr((opType == Type::LongTy)? SLLX : SLL);
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
2001-11-09 03:18:16 +01:00
|
|
|
}
|
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
case 63: // reg: Shr(reg, reg)
|
2001-11-09 03:18:16 +01:00
|
|
|
{ const Type* opType = subtreeRoot->leftChild()->getValue()->getType();
|
2001-10-01 02:12:53 +02:00
|
|
|
assert(opType->isIntegral()
|
|
|
|
|| opType == Type::BoolTy
|
|
|
|
|| opType->isPointerType() &&"Shr unsupported for other types");
|
|
|
|
mvec[0] = new MachineInstr((opType->isSigned()
|
|
|
|
? ((opType == Type::LongTy)? SRAX : SRA)
|
|
|
|
: ((opType == Type::LongTy)? SRLX : SRL)));
|
|
|
|
Set3OperandsFromInstr(mvec[0], subtreeRoot, target);
|
|
|
|
break;
|
2001-11-09 03:18:16 +01:00
|
|
|
}
|
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
case 64: // reg: Phi(reg,reg)
|
2001-11-12 19:54:11 +01:00
|
|
|
numInstr = 0; // don't forward the value
|
|
|
|
break;
|
|
|
|
#undef NEED_PHI_MACHINE_INSTRS
|
|
|
|
#ifdef NEED_PHI_MACHINE_INSTRS
|
2001-10-01 02:12:53 +02:00
|
|
|
{ // This instruction has variable #operands, so resultPos is 0.
|
|
|
|
Instruction* phi = subtreeRoot->getInstruction();
|
|
|
|
mvec[0] = new MachineInstr(PHI, 1 + phi->getNumOperands());
|
|
|
|
mvec[0]->SetMachineOperand(0, MachineOperand::MO_VirtualRegister,
|
|
|
|
subtreeRoot->getValue());
|
|
|
|
for (unsigned i=0, N=phi->getNumOperands(); i < N; i++)
|
|
|
|
mvec[0]->SetMachineOperand(i+1, MachineOperand::MO_VirtualRegister,
|
|
|
|
phi->getOperand(i));
|
|
|
|
break;
|
|
|
|
}
|
2001-11-12 19:54:11 +01:00
|
|
|
#endif NEED_PHI_MACHINE_INSTRS
|
2001-11-09 03:18:16 +01:00
|
|
|
|
2001-10-01 02:12:53 +02:00
|
|
|
case 71: // reg: VReg
|
|
|
|
case 72: // reg: Constant
|
|
|
|
numInstr = 0; // don't forward the value
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
assert(0 && "Unrecognized BURG rule");
|
|
|
|
numInstr = 0;
|
|
|
|
break;
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (forwardOperandNum >= 0)
|
|
|
|
{ // We did not generate a machine instruction but need to use operand.
|
|
|
|
// If user is in the same tree, replace Value in its machine operand.
|
|
|
|
// If not, insert a copy instruction which should get coalesced away
|
|
|
|
// by register allocation.
|
|
|
|
if (subtreeRoot->parent() != NULL)
|
2001-10-01 02:12:53 +02:00
|
|
|
ForwardOperand(subtreeRoot, subtreeRoot->parent(), forwardOperandNum);
|
2001-09-14 05:47:57 +02:00
|
|
|
else
|
2001-10-01 02:12:53 +02:00
|
|
|
{
|
2001-10-18 02:26:20 +02:00
|
|
|
vector<MachineInstr*> minstrVec;
|
2001-11-12 15:45:33 +01:00
|
|
|
target.getInstrInfo().CreateCopyInstructionsByType(target,
|
2001-10-01 02:12:53 +02:00
|
|
|
subtreeRoot->getInstruction()->getOperand(forwardOperandNum),
|
2001-10-18 02:26:20 +02:00
|
|
|
subtreeRoot->getInstruction(), minstrVec);
|
|
|
|
assert(minstrVec.size() > 0);
|
|
|
|
for (unsigned i=0; i < minstrVec.size(); ++i)
|
|
|
|
mvec[numInstr++] = minstrVec[i];
|
2001-10-01 02:12:53 +02:00
|
|
|
}
|
2001-09-14 05:47:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return numInstr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|