aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2006-01-23 21:56:07 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2006-01-23 21:56:07 +0000
commitfabd5ba250006e328d9d62962e5f9094ec4306c1 (patch)
tree69362e5ca0eab2861f809e9aba4756435bab417b
parent66e495820a9d992b26f60d1e118521efd7d9c922 (diff)
bye bye Pattern ISEL
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25553 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/Alpha/AlphaISelLowering.cpp6
-rw-r--r--lib/Target/Alpha/AlphaISelPattern.cpp1726
-rw-r--r--lib/Target/Alpha/AlphaTargetMachine.cpp13
3 files changed, 5 insertions, 1740 deletions
diff --git a/lib/Target/Alpha/AlphaISelLowering.cpp b/lib/Target/Alpha/AlphaISelLowering.cpp
index 3b9d32f6f6..6f8226113c 100644
--- a/lib/Target/Alpha/AlphaISelLowering.cpp
+++ b/lib/Target/Alpha/AlphaISelLowering.cpp
@@ -27,9 +27,9 @@
using namespace llvm;
namespace llvm {
- extern cl::opt<bool> EnableAlphaIDIV;
- extern cl::opt<bool> EnableAlphaCount;
- extern cl::opt<bool> EnableAlphaLSMark;
+ cl::opt<bool> EnableAlphaLSMark("enable-alpha-lsmark",
+ cl::desc("Emit symbols to correlate Mem ops to LLVM Values"),
+ cl::Hidden);
}
/// AddLiveIn - This helper function adds the specified physical register to the
diff --git a/lib/Target/Alpha/AlphaISelPattern.cpp b/lib/Target/Alpha/AlphaISelPattern.cpp
deleted file mode 100644
index 0b948b6b76..0000000000
--- a/lib/Target/Alpha/AlphaISelPattern.cpp
+++ /dev/null
@@ -1,1726 +0,0 @@
-//===- AlphaISelPattern.cpp - A pattern matching inst selector for Alpha --===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file defines a pattern matching instruction selector for Alpha.
-//
-//===----------------------------------------------------------------------===//
-
-#include "Alpha.h"
-#include "AlphaRegisterInfo.h"
-#include "AlphaTargetMachine.h"
-#include "AlphaISelLowering.h"
-#include "llvm/Constants.h" // FIXME: REMOVE
-#include "llvm/Module.h"
-#include "llvm/CodeGen/MachineInstrBuilder.h"
-#include "llvm/CodeGen/MachineConstantPool.h" // FIXME: REMOVE
-#include "llvm/CodeGen/MachineFunction.h"
-#include "llvm/CodeGen/MachineFrameInfo.h"
-#include "llvm/CodeGen/SelectionDAG.h"
-#include "llvm/CodeGen/SelectionDAGISel.h"
-#include "llvm/CodeGen/SSARegMap.h"
-#include "llvm/Target/TargetData.h"
-#include "llvm/Target/TargetLowering.h"
-#include "llvm/Support/MathExtras.h"
-#include "llvm/ADT/Statistic.h"
-#include "llvm/Support/Debug.h"
-#include "llvm/Support/CommandLine.h"
-#include <algorithm>
-#include <iostream>
-#include <set>
-using namespace llvm;
-
-namespace llvm {
- cl::opt<bool> EnableAlphaIDIV("enable-alpha-intfpdiv",
- cl::desc("Use the FP div instruction for integer div when possible"),
- cl::Hidden);
- cl::opt<bool> EnableAlphaCount("enable-alpha-count",
- cl::desc("Print estimates on live ins and outs"),
- cl::Hidden);
- cl::opt<bool> EnableAlphaLSMark("enable-alpha-lsmark",
- cl::desc("Emit symbols to correlate Mem ops to LLVM Values"),
- cl::Hidden);
-}
-
-namespace {
-
-//===--------------------------------------------------------------------===//
-/// ISel - Alpha specific code to select Alpha machine instructions for
-/// SelectionDAG operations.
-//===--------------------------------------------------------------------===//
-class AlphaISel : public SelectionDAGISel {
-
- /// AlphaLowering - This object fully describes how to lower LLVM code to an
- /// Alpha-specific SelectionDAG.
- AlphaTargetLowering AlphaLowering;
-
- SelectionDAG *ISelDAG; // Hack to support us having a dag->dag transform
- // for sdiv and udiv until it is put into the future
- // dag combiner.
-
- /// ExprMap - As shared expressions are codegen'd, we keep track of which
- /// vreg the value is produced in, so we only emit one copy of each compiled
- /// tree.
- static const unsigned notIn = (unsigned)(-1);
- std::map<SDOperand, unsigned> ExprMap;
-
- //CCInvMap sometimes (SetNE) we have the inverse CC code for free
- std::map<SDOperand, unsigned> CCInvMap;
-
- int count_ins;
- int count_outs;
- int max_depth;
-
-public:
- AlphaISel(TargetMachine &TM) : SelectionDAGISel(AlphaLowering),
- AlphaLowering(TM)
- {}
-
- virtual const char *getPassName() const {
- return "Alpha Pattern Instruction Selection";
- }
-
- /// InstructionSelectBasicBlock - This callback is invoked by
- /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
- virtual void InstructionSelectBasicBlock(SelectionDAG &DAG) {
- DEBUG(BB->dump());
- count_ins = 0;
- count_outs = 0;
- max_depth = 0;
-
- // Codegen the basic block.
- ISelDAG = &DAG;
- max_depth = DAG.getRoot().getNodeDepth();
- Select(DAG.getRoot());
-
- if(EnableAlphaCount)
- std::cerr << "COUNT: "
- << BB->getParent()->getFunction ()->getName() << " "
- << BB->getNumber() << " "
- << max_depth << " "
- << count_ins << " "
- << count_outs << "\n";
-
- // Clear state used for selection.
- ExprMap.clear();
- CCInvMap.clear();
- }
-
- unsigned SelectExpr(SDOperand N);
- void Select(SDOperand N);
-
- void SelectAddr(SDOperand N, unsigned& Reg, long& offset);
- void SelectBranchCC(SDOperand N);
- void MoveFP2Int(unsigned src, unsigned dst, bool isDouble);
- void MoveInt2FP(unsigned src, unsigned dst, bool isDouble);
- //returns whether the sense of the comparison was inverted
- bool SelectFPSetCC(SDOperand N, unsigned dst);
-
- // dag -> dag expanders for integer divide by constant
- SDOperand BuildSDIVSequence(SDOperand N);
- SDOperand BuildUDIVSequence(SDOperand N);
-
-};
-}
-
-static bool isSIntImmediate(SDOperand N, int64_t& Imm) {
- // test for constant
- if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
- // retrieve value
- Imm = CN->getSignExtended();
- // passes muster
- return true;
- }
- // not a constant
- return false;
-}
-
-// isSIntImmediateBounded - This method tests to see if a constant operand
-// bounded s.t. low <= Imm <= high
-// If so Imm will receive the 64 bit value.
-static bool isSIntImmediateBounded(SDOperand N, int64_t& Imm,
- int64_t low, int64_t high) {
- if (isSIntImmediate(N, Imm) && Imm <= high && Imm >= low)
- return true;
- return false;
-}
-static bool isUIntImmediate(SDOperand N, uint64_t& Imm) {
- // test for constant
- if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
- // retrieve value
- Imm = (uint64_t)CN->getValue();
- // passes muster
- return true;
- }
- // not a constant
- return false;
-}
-
-static bool isUIntImmediateBounded(SDOperand N, uint64_t& Imm,
- uint64_t low, uint64_t high) {
- if (isUIntImmediate(N, Imm) && Imm <= high && Imm >= low)
- return true;
- return false;
-}
-
-static void getValueInfo(const Value* v, int& type, int& fun, int& offset)
-{
- fun = type = offset = 0;
- if (v == NULL) {
- type = 0;
- } else if (const GlobalValue* GV = dyn_cast<GlobalValue>(v)) {
- type = 1;
- const Module* M = GV->getParent();
- for(Module::const_global_iterator ii = M->global_begin(); &*ii != GV; ++ii)
- ++offset;
- } else if (const Argument* Arg = dyn_cast<Argument>(v)) {
- type = 2;
- const Function* F = Arg->getParent();
- const Module* M = F->getParent();
- for(Module::const_iterator ii = M->begin(); &*ii != F; ++ii)
- ++fun;
- for(Function::const_arg_iterator ii = F->arg_begin(); &*ii != Arg; ++ii)
- ++offset;
- } else if (const Instruction* I = dyn_cast<Instruction>(v)) {
- assert(dyn_cast<PointerType>(I->getType()));
- type = 3;
- const BasicBlock* bb = I->getParent();
- const Function* F = bb->getParent();
- const Module* M = F->getParent();
- for(Module::const_iterator ii = M->begin(); &*ii != F; ++ii)
- ++fun;
- for(Function::const_iterator ii = F->begin(); &*ii != bb; ++ii)
- offset += ii->size();
- for(BasicBlock::const_iterator ii = bb->begin(); &*ii != I; ++ii)
- ++offset;
- } else if (const Constant* C = dyn_cast<Constant>(v)) {
- //Don't know how to look these up yet
- type = 0;
- } else {
- assert(0 && "Error in value marking");
- }
- //type = 4: register spilling
- //type = 5: global address loading or constant loading
-}
-
-static int getUID()
-{
- static int id = 0;
- return ++id;
-}
-
-//Factorize a number using the list of constants
-static bool factorize(int v[], int res[], int size, uint64_t c)
-{
- bool cont = true;
- while (c != 1 && cont)
- {
- cont = false;
- for(int i = 0; i < size; ++i)
- {
- if (c % v[i] == 0)
- {
- c /= v[i];
- ++res[i];
- cont=true;
- }
- }
- }
- return c == 1;
-}
-
-
-//These describe LDAx
-static const int IMM_LOW = -32768;
-static const int IMM_HIGH = 32767;
-static const int IMM_MULT = 65536;
-
-static long getUpper16(long l)
-{
- long y = l / IMM_MULT;
- if (l % IMM_MULT > IMM_HIGH)
- ++y;
- return y;
-}
-
-static long getLower16(long l)
-{
- long h = getUpper16(l);
- return l - h * IMM_MULT;
-}
-
-static unsigned GetRelVersion(unsigned opcode)
-{
- switch (opcode) {
- default: assert(0 && "unknown load or store"); return 0;
- case Alpha::LDQ: return Alpha::LDQr;
- case Alpha::LDS: return Alpha::LDSr;
- case Alpha::LDT: return Alpha::LDTr;
- case Alpha::LDL: return Alpha::LDLr;
- case Alpha::LDBU: return Alpha::LDBUr;
- case Alpha::LDWU: return Alpha::LDWUr;
- case Alpha::STB: return Alpha::STBr;
- case Alpha::STW: return Alpha::STWr;
- case Alpha::STL: return Alpha::STLr;
- case Alpha::STQ: return Alpha::STQr;
- case Alpha::STS: return Alpha::STSr;
- case Alpha::STT: return Alpha::STTr;
-
- }
-}
-
-void AlphaISel::MoveFP2Int(unsigned src, unsigned dst, bool isDouble)
-{
- unsigned Opc = Alpha::WTF;
- if (TLI.getTargetMachine().getSubtarget<AlphaSubtarget>().hasF2I()) {
- Opc = isDouble ? Alpha::FTOIT : Alpha::FTOIS;
- BuildMI(BB, Opc, 1, dst).addReg(src).addReg(Alpha::F31);
- } else {
- //The hard way:
- // Spill the integer to memory and reload it from there.
- unsigned Size = MVT::getSizeInBits(MVT::f64)/8;
- MachineFunction *F = BB->getParent();
- int FrameIdx = F->getFrameInfo()->CreateStackObject(Size, 8);
-
- if (EnableAlphaLSMark)
- BuildMI(BB, Alpha::MEMLABEL, 4).addImm(4).addImm(0).addImm(0)
- .addImm(getUID());
- Opc = isDouble ? Alpha::STT : Alpha::STS;
- BuildMI(BB, Opc, 3).addReg(src).addFrameIndex(FrameIdx).addReg(Alpha::F31);
-
- if (EnableAlphaLSMark)
- BuildMI(BB, Alpha::MEMLABEL, 4).addImm(4).addImm(0).addImm(0)
- .addImm(getUID());
- Opc = isDouble ? Alpha::LDQ : Alpha::LDL;
- BuildMI(BB, Alpha::LDQ, 2, dst).addFrameIndex(FrameIdx).addReg(Alpha::F31);
- }
-}
-
-void AlphaISel::MoveInt2FP(unsigned src, unsigned dst, bool isDouble)
-{
- unsigned Opc = Alpha::WTF;
- if (TLI.getTargetMachine().getSubtarget<AlphaSubtarget>().hasF2I()) {
- Opc = isDouble?Alpha::ITOFT:Alpha::ITOFS;
- BuildMI(BB, Opc, 1, dst).addReg(src).addReg(Alpha::R31);
- } else {
- //The hard way:
- // Spill the integer to memory and reload it from there.
- unsigned Size = MVT::getSizeInBits(MVT::f64)/8;
- MachineFunction *F = BB->getParent();
- int FrameIdx = F->getFrameInfo()->CreateStackObject(Size, 8);
-
- if (EnableAlphaLSMark)
- BuildMI(BB, Alpha::MEMLABEL, 4).addImm(4).addImm(0).addImm(0)
- .addImm(getUID());
- Opc = isDouble ? Alpha::STQ : Alpha::STL;
- BuildMI(BB, Opc, 3).addReg(src).addFrameIndex(FrameIdx).addReg(Alpha::F31);
-
- if (EnableAlphaLSMark)
- BuildMI(BB, Alpha::MEMLABEL, 4).addImm(4).addImm(0).addImm(0)
- .addImm(getUID());
- Opc = isDouble ? Alpha::LDT : Alpha::LDS;
- BuildMI(BB, Opc, 2, dst).addFrameIndex(FrameIdx).addReg(Alpha::F31);
- }
-}
-
-bool AlphaISel::SelectFPSetCC(SDOperand N, unsigned dst)
-{
- SDNode *SetCC = N.Val;
- unsigned Tmp1, Tmp2, Tmp3, Opc = Alpha::WTF;
- ISD::CondCode CC = cast<CondCodeSDNode>(SetCC->getOperand(2))->get();
- bool rev = false;
- bool inv = false;
-
- switch (CC) {
- default: SetCC->dump(); assert(0 && "Unknown FP comparison!");
- case ISD::SETEQ: Opc = Alpha::CMPTEQ; break;
- case ISD::SETLT: Opc = Alpha::CMPTLT; break;
- case ISD::SETLE: Opc = Alpha::CMPTLE; break;
- case ISD::SETGT: Opc = Alpha::CMPTLT; rev = true; break;
- case ISD::SETGE: Opc = Alpha::CMPTLE; rev = true; break;
- case ISD::SETNE: Opc = Alpha::CMPTEQ; inv = true; break;
- }
-
- ConstantFPSDNode *CN;
- if ((CN = dyn_cast<ConstantFPSDNode>(SetCC->getOperand(0)))
- && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)))
- Tmp1 = Alpha::F31;
- else
- Tmp1 = SelectExpr(N.getOperand(0));
-
- if ((CN = dyn_cast<ConstantFPSDNode>(SetCC->getOperand(1)))
- && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)))
- Tmp2 = Alpha::F31;
- else
- Tmp2 = SelectExpr(N.getOperand(1));
-
- //Can only compare doubles, and dag won't promote for me
- if (SetCC->getOperand(0).getValueType() == MVT::f32)
- assert(0 && "Setcc On float?\n");
- if (SetCC->getOperand(1).getValueType() == MVT::f32)
- assert (0 && "Setcc On float?\n");
-
- if (rev) std::swap(Tmp1, Tmp2);
- //do the comparison
- BuildMI(BB, Opc, 2, dst).addReg(Tmp1).addReg(Tmp2);
- return inv;
-}
-
-//Check to see if the load is a constant offset from a base register
-void AlphaISel::SelectAddr(SDOperand N, unsigned& Reg, long& offset)
-{
- unsigned opcode = N.getOpcode();
- if (opcode == ISD::ADD && N.getOperand(1).getOpcode() == ISD::Constant &&
- cast<ConstantSDNode>(N.getOperand(1))->getValue() <= 32767)
- { //Normal imm add
- Reg = SelectExpr(N.getOperand(0));
- offset = cast<ConstantSDNode>(N.getOperand(1))->getValue();
- return;
- }
- Reg = SelectExpr(N);
- offset = 0;
- return;
-}
-
-void AlphaISel::SelectBranchCC(SDOperand N)
-{
- assert(N.getOpcode() == ISD::BRCOND && "Not a BranchCC???");
- MachineBasicBlock *Dest =
- cast<BasicBlockSDNode>(N.getOperand(2))->getBasicBlock();
- unsigned Opc = Alpha::WTF;
-
- Select(N.getOperand(0)); //chain
- SDOperand CC = N.getOperand(1);
-
- if (CC.getOpcode() == ISD::SETCC)
- {
- ISD::CondCode cCode= cast<CondCodeSDNode>(CC.getOperand(2))->get();
- if (MVT::isInteger(CC.getOperand(0).getValueType())) {
- //Dropping the CC is only useful if we are comparing to 0
- bool RightZero = CC.getOperand(1).getOpcode() == ISD::Constant &&
- cast<ConstantSDNode>(CC.getOperand(1))->getValue() == 0;
- bool isNE = false;
-
- //Fix up CC
- if(cCode == ISD::SETNE)
- isNE = true;
-
- if (RightZero) {
- switch (cCode) {
- default: CC.Val->dump(); assert(0 && "Unknown integer comparison!");
- case ISD::SETEQ: Opc = Alpha::BEQ; break;
- case ISD::SETLT: Opc = Alpha::BLT; break;
- case ISD::SETLE: Opc = Alpha::BLE; break;
- case ISD::SETGT: Opc = Alpha::BGT; break;
- case ISD::SETGE: Opc = Alpha::BGE; break;
- case ISD::SETULT: assert(0 && "x (unsigned) < 0 is never true"); break;
- case ISD::SETUGT: Opc = Alpha::BNE; break;
- //Technically you could have this CC
- case ISD::SETULE: Opc = Alpha::BEQ; break;
- case ISD::SETUGE: assert(0 && "x (unsgined >= 0 is always true"); break;
- case ISD::SETNE: Opc = Alpha::BNE; break;
- }
- unsigned Tmp1 = SelectExpr(CC.getOperand(0)); //Cond
- BuildMI(BB, Opc, 2).addReg(Tmp1).addMBB(Dest);
- return;
- } else {
- unsigned Tmp1 = SelectExpr(CC);
- if (isNE)
- BuildMI(BB, Alpha::BEQ, 2).addReg(CCInvMap[CC]).addMBB(Dest);
- else
- BuildMI(BB, Alpha::BNE, 2).addReg(Tmp1).addMBB(Dest);
- return;
- }
- } else { //FP
- //Any comparison between 2 values should be codegened as an folded
- //branch, as moving CC to the integer register is very expensive
- //for a cmp b: c = a - b;
- //a = b: c = 0
- //a < b: c < 0
- //a > b: c > 0
-
- bool invTest = false;
- unsigned Tmp3;
-
- ConstantFPSDNode *CN;
- if ((CN = dyn_cast<ConstantFPSDNode>(CC.getOperand(1)))
- && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)))
- Tmp3 = SelectExpr(CC.getOperand(0));
- else if ((CN = dyn_cast<ConstantFPSDNode>(CC.getOperand(0)))
- && (CN->isExactlyValue(+0.0) || CN->isExactlyValue(-0.0)))
- {
- Tmp3 = SelectExpr(CC.getOperand(1));
- invTest = true;
- }
- else
- {
- unsigned Tmp1 = SelectExpr(CC.getOperand(0));
- unsigned Tmp2 = SelectExpr(CC.getOperand(1));
- bool isD = CC.getOperand(0).getValueType() == MVT::f64;
- Tmp3 = MakeReg(isD ? MVT::f64 : MVT::f32);
- BuildMI(BB, isD ? Alpha::SUBT : Alpha::SUBS, 2, Tmp3)
- .addReg(Tmp1).addReg(Tmp2);
- }
-
- switch (cCode) {
- default: CC.Val->dump(); assert(0 && "Unknown FP comparison!");
- case ISD::SETEQ: Opc = invTest ? Alpha::FBNE : Alpha::FBEQ; break;
- case ISD::SETLT: Opc = invTest ? Alpha::FBGT : Alpha::FBLT; break;
- case ISD::SETLE: Opc = invTest ? Alpha::FBGE : Alpha::FBLE; break;
- case ISD::SETGT: Opc = invTest ? Alpha::FBLT : Alpha::FBGT; break;
- case ISD::SETGE: Opc = invTest ? Alpha::FBLE : Alpha::FBGE; break;
- case ISD::SETNE: Opc = invTest ? Alpha::FBEQ : Alpha::FBNE; break;
- }
- BuildMI(BB, Opc, 2).addReg(Tmp3).addMBB(Dest);
- return;
- }
- abort(); //Should never be reached
- } else {
- //Giveup and do the stupid thing
- unsigned Tmp1 = SelectExpr(CC);
- BuildMI(BB, Alpha::BNE, 2).addReg(Tmp1).addMBB(Dest);
- return;
- }
- abort(); //Should never be reached
-}
-
-unsigned AlphaISel::SelectExpr(SDOperand N) {
- unsigned Result;
- unsigned Tmp1, Tmp2 = 0, Tmp3;
- unsigned Opc = 0;
- unsigned opcode = N.getOpcode();
- int64_t SImm = 0;
- uint64_t UImm;
-
- SDNode *Node = N.Val;
- MVT::ValueType DestType = N.getValueType();
- bool isFP = DestType == MVT::f64 || DestType == MVT::f32;
-
- unsigned &Reg = ExprMap[N];
- if (Reg) return Reg;
-
- switch(N.getOpcode()) {
- default:
- Reg = Result = (N.getValueType() != MVT::Other) ?
- MakeReg(N.getValueType()) : notIn;
- break;
- case ISD::AssertSext:
- case ISD::AssertZext:
- return Reg = SelectExpr(N.getOperand(0));
- case ISD::CALL:
- case ISD::TAILCALL:
- // If this is a call instruction, make sure to prepare ALL of the result
- // values as well as the chain.
- if (Node->getNumValues() == 1)
- Reg = Result = notIn; // Void call, just a chain.
- else {
- Result = MakeReg(Node->getValueType(0));
- ExprMap[N.getValue(0)] = Result;
- for (unsigned i = 1, e = N.Val->getNumValues()-1; i != e; ++i)
- ExprMap[N.getValue(i)] = MakeReg(Node->getValueType(i));
- ExprMap[SDOperand(Node, Node->getNumValues()-1)] = notIn;
- }
- break;
- }
-
- switch (opcode) {
- default:
- Node->dump();
- assert(0 && "Node not handled!\n");
-
- case ISD::READCYCLECOUNTER:
- Select(N.getOperand(0)); //Select chain
- if (Result != notIn)
- ExprMap[N.getValue(1)] = notIn; // Generate the token
- else
- Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
-
- BuildMI(BB, Alpha::RPCC, 1, Result).addReg(Alpha::R31);
- return Result;
-
- case ISD::CTPOP:
- case ISD::CTTZ:
- case ISD::CTLZ:
- Opc = opcode == ISD::CTPOP ? Alpha::CTPOP :
- (opcode == ISD::CTTZ ? Alpha::CTTZ : Alpha::CTLZ);
- Tmp1 = SelectExpr(N.getOperand(0));
- BuildMI(BB, Opc, 1, Result).addReg(Tmp1);
- return Result;
-
- case ISD::MULHU:
- Tmp1 = SelectExpr(N.getOperand(0));
- Tmp2 = SelectExpr(N.getOperand(1));
- BuildMI(BB, Alpha::UMULH, 2, Result).addReg(Tmp1).addReg(Tmp2);
- return Result;
- case ISD::MULHS:
- {
- //MULHU - Ra<63>*Rb - Rb<63>*Ra
- Tmp1 = SelectExpr(N.getOperand(0));
- Tmp2 = SelectExpr(N.getOperand(1));
- Tmp3 = MakeReg(MVT::i64);
- BuildMI(BB, Alpha::UMULH, 2, Tmp3).addReg(Tmp1).addReg(Tmp2);
- unsigned V1 = MakeReg(MVT::i64);
- unsigned V2 = MakeReg(MVT::i64);
- BuildMI(BB, Alpha::CMOVGE, 3, V1).addReg(Tmp2).addReg(Alpha::R31)
- .addReg(Tmp1);
- BuildMI(BB, Alpha::CMOVGE, 3, V2).addReg(Tmp1).addReg(Alpha::R31)
- .addReg(Tmp2);
- unsigned IRes = MakeReg(MVT::i64);
- BuildMI(BB, Alpha::SUBQ, 2, IRes).addReg(Tmp3).addReg(V1);
- BuildMI(BB, Alpha::SUBQ, 2, Result).addReg(IRes).addReg(V2);
- return Result;
- }
- case ISD::UNDEF: {
- Opc = isFP ? (DestType == MVT::f32 ? Alpha::IDEF_F32 : Alpha::IDEF_F64)
- : Alpha::IDEF_I;
- BuildMI(BB, Opc, 0, Result);
- return Result;
- }
-
- case ISD::DYNAMIC_STACKALLOC:
- // Generate both result values.
- if (Result != notIn)
- ExprMap[N.getValue(1)] = notIn; // Generate the token
- else
- Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
-
- // FIXME: We are currently ignoring the requested alignment for handling
- // greater than the stack alignment. This will need to be revisited at some
- // point. Align = N.getOperand(2);
-
- if (!isa<ConstantSDNode>(N.getOperand(2)) ||
- cast<ConstantSDNode>(N.getOperand(2))->getValue() != 0) {
- std::cerr << "Cannot allocate stack object with greater alignment than"
- << " the stack alignment yet!";
- abort();
- }
-
- Select(N.getOperand(0));
- if (isSIntImmediateBounded(N.getOperand(1), SImm, 0, 32767))
- BuildMI(BB, Alpha::LDA, 2, Alpha::R30).addImm(-SImm).addReg(Alpha::R30);
- else {
- Tmp1 = SelectExpr(N.getOperand(1));
- // Subtract size from stack pointer, thereby allocating some space.
- BuildMI(BB, Alpha::SUBQ, 2, Alpha::R30).addReg(Alpha::R30).addReg(Tmp1);
- }
-
- // Put a pointer to the space into the result register, by copying the stack
- // pointer.
- BuildMI(BB, Alpha::BIS, 2, Result).addReg(Alpha::R30).addReg(Alpha::R30);
- return Result;
-
- case ISD::ConstantPool:
- Tmp1 = BB->getParent()->getConstantPool()->
- getConstantPoolIndex(cast<ConstantPoolSDNode>(N)->get());
- AlphaLowering.restoreGP(BB);
- Tmp2 = MakeReg(MVT::i64);
- BuildMI(BB, Alpha::LDAHr, 2, Tmp2).addConstantPoolIndex(Tmp1)
- .addReg(Alpha::R29);
- BuildMI(BB, Alpha::LDAr, 2, Result).addConstantPoolIndex(Tmp1)
- .addReg(Tmp2);
- return Result;
-
- case ISD::FrameIndex:
- BuildMI(BB, Alpha::LDA, 2, Result)
- .addFrameIndex(cast<FrameIndexSDNode>(N)->getIndex())
- .addReg(Alpha::F31);
- return Result;
-
- case ISD::EXTLOAD:
- case ISD::ZEXTLOAD:
- case ISD::SEXTLOAD:
- case ISD::LOAD:
- {
- // Make sure we generate both values.
- if (Result != notIn)
- ExprMap[N.getValue(1)] = notIn; // Generate the token
- else
- Result = ExprMap[N.getValue(0)] = MakeReg(N.getValue(0).getValueType());
-
- SDOperand Chain = N.getOperand(0);
- SDOperand Address = N.getOperand(1);
- Select(Chain);
-
- bool fpext = true;
-
- if (opcode == ISD::LOAD)
- switch (Node->getValueType(0)) {
- default: Node->dump(); assert(0 && "Bad load!");
- case MVT::i64: Opc = Alpha::LDQ; break;
- case MVT::f64: Opc = Alpha::LDT; break;
- case MVT::f32: Opc = Alpha::LDS; break;
- }
- else
- switch (cast<VTSDNode>(Node->getOperand(3))->getVT()) {
- default: Node->dump(); assert(0 && "Bad sign extend!");
- case MVT::i32: Opc = Alpha::LDL;
- assert(opcode != ISD::ZEXTLOAD && "Not sext"); break;
- case MVT::i16: Opc = Alpha::LDWU;
- assert(opcode != ISD::SEXTLOAD && "Not zext"); break;
- case MVT::i1: //FIXME: Treat i1 as i8 since there are problems otherwise
- case MVT::i8: Opc = Alpha::LDBU;
- assert(opcode != ISD::SEXTLOAD && "Not zext"); break;
- }
-
- int i, j, k;
- if (EnableAlphaLSMark)
- getValueInfo(dyn_cast<SrcValueSDNode>(N.getOperand(2))->getValue(),
- i, j, k);
-
- if (Address.getOpcode() == AlphaISD::GPRelLo) {
- unsigned Hi = SelectExpr(Address.getOperand(1));
- Address = Address.getOperand(0);
- if (GlobalAddressSDNode *GASD = dyn_cast<GlobalAddressSDNode>(Address)) {
- if (EnableAlphaLSMark)
- BuildMI(BB, Alpha::MEMLABEL, 4).addImm(i).addImm(j).addImm(k)
- .addImm(getUID());
- BuildMI(BB, GetRelVersion(Opc), 2, Result)
- .addGlobalAddress(GASD->getGlobal()).addReg(Hi);
- } else if (ConstantPoolSDNode *CP =
- dyn_cast<ConstantPoolSDNode>(Address)) {
- unsigned CPIdx = BB->getParent()->getConstantPool()->
- getConstantPoolIndex(CP->get());
- if (EnableAlphaLSMark)
- BuildMI(BB, Alpha::MEMLABEL, 4).addImm(i).addImm(j).addImm(k)
- .addImm(getUID());
- BuildMI(BB, GetRelVersion(Opc), 2, Result)
- .addConstantPoolIndex(CPIdx).addReg(Hi);
- } else assert(0 && "Unknown Lo part");
- } else if(Address.getOpcode() == ISD::FrameIndex) {
- if (EnableAlphaLSMark)
- BuildMI(BB, Alpha::MEMLABEL, 4).addImm(i).addImm(j).addImm(k)
- .addImm(getUID());
- BuildMI(BB, Opc, 2, Result)
- .addFrameIndex(cast<FrameIndexSDNode>(Address)->getIndex())
- .addReg(Alpha::F31);
- } else {
- long offset;
- SelectAddr(Address, Tmp1, offset);
- if (EnableAlphaLSMark)
- BuildMI(BB, Alpha::MEMLABEL, 4).addImm(i).addImm(j).addImm(k)
- .addImm(getUID());
- BuildMI(BB, Opc, 2, Result).addImm(offset).addReg(Tmp1);
- }
- return Result;
- }
- case AlphaISD::GlobalBaseReg:
- AlphaLowering.restoreGP(BB);
- BuildMI(BB, Alpha::BIS, 2, Result).addReg(Alpha::R29).addReg(Alpha::R29);
- return Result;
- case AlphaISD::GPRelHi: {
- unsigned hi = SelectExpr(N.getOperand(1));
- if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N.getOperand(0)))
- BuildMI(BB, Alpha::LDAHr, 2, Result)
- .addConstantPoolIndex(BB->getParent()->getConstantPool()->
- getConstantPoolIndex(CP->get())).addReg(hi);
- else if (GlobalAddressSDNode *GASD =
- dyn_cast<GlobalAddressSDNode>(N.getOperand(0)))
- BuildMI(BB, Alpha::LDAHr, 2, Result)
- .addGlobalAddress(GASD->getGlobal()).addReg(hi);
- else assert(0 && "unknown Hi part");
- return Result;
- }
- case AlphaISD::GPRelLo: {
- unsigned hi = SelectExpr(N.getOperand(1));
- if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N.getOperand(0)))
- BuildMI(BB, Alpha::LDAr, 2, Result)
- .addConstantPoolIndex(BB->getParent()->getConstantPool()->
- getConstantPoolIndex(CP->get())).addReg(hi);
- else if (GlobalAddressSDNode *GASD =
- dyn_cast<GlobalAddressSDNode>(N.getOperand(0)))
- BuildMI(BB, Alpha::LDAr, 2, Result)
- .addGlobalAddress(GASD->getGlobal()).addReg(hi);
- else assert(0 && "unknown Lo part");
- return Result;
- }
- case AlphaISD::RelLit: {
- unsigned hi = SelectExpr(N.getOperand(1));
- if (GlobalAddressSDNode *GASD = dyn_cast<GlobalAddressSDNode>(N.getOperand(0)))
- BuildMI(BB, Alpha::LDQl, 2, Result)
- .addGlobalAddress(GASD->getGlobal()).addReg(hi);
- else if (ExternalSymbolSDNode *ESSD = dyn_cast<ExternalSymbolSDNode>(N.getOperand(0)))
- BuildMI(BB, Alpha::LDQl, 2, Result)
- .addExternalSymbol(ESSD->getSymbol()).addReg(hi);
- return Result;
- }
-
- case ISD::TAILCALL:
- case ISD::CALL:
- {
- Select(N.getOperand(0));
-
- // The chain for this call is now lowered.
- ExprMap[N.getValue(Node->getNumValues()-1)] = notIn;
-
- //grab the arguments
- std::vector<unsigned> argvregs;
- //assert(Node->getNumOperands() < 8 && "Only 6 args supported");
- for(int i = 2, e = Node->getNumOperands(); i < e; ++i)
- argvregs.push_back(SelectExpr(N.getOperand(i)));
-
- //in reg args
- for(int i = 0, e = std::min(6, (int)argvregs.size()); i < e; ++i)
- {
- unsigned args_int[] = {Alpha::R16, Alpha::R17, Alpha::R18,
- Alpha::R19, Alpha::R20, Alpha::R21};
- unsigned args_float[] = {Alpha::F16, Alpha::F17, Alpha::F18,
- Alpha::F19, Alpha::F20, Alpha::F21};
- switch(N.getOperand(i+2).getValueType()) {
- default:
- Node->dump();
- N.getOperand(i).Val->dump();
- std::cerr << "Type for " << i << " is: " <<
- N.getOperand(i+2).getValueType() << "\n";
- assert(0 && "Unknown value type for call");
- case MVT::i1:
- case MVT::i8:
- case MVT::i16:
- case MVT::i32:
- case MVT::i64:
- BuildMI(BB, Alpha::BIS, 2, args_int[i]).addReg(argvregs[i])
- .addReg(argvregs[i]);
- break;
- case MVT::f32:
- BuildMI(BB, Alpha::CPYSS, 2, args_float[i]).addReg(argvregs[i])
- .addReg(argvregs[i]);
- break;
- case MVT::f64:
- BuildMI(BB, Alpha::CPYST, 2, args_float[i]).addReg(argvregs[i])
- .addReg(argvregs[i]);
- break;
- }
- }
- //in mem args
- for (int i = 6, e = argvregs.size(); i < e; ++i)
- {
- switch(N.getOperand(i+2).getValueType()) {
- default:
- Node->dump();
- N.getOperand(i).Val->dump();
- std::cerr << "Type for " << i << " is: " <<
- N.getOperand(i+2).getValueType() << "\n";
- assert(0 && "Unknown value type for call");
- case MVT::i1:
- case MVT::i8:
- case MVT::i16:
- case MVT::i32:
- case MVT::i64:
- BuildMI(BB, Alpha::STQ, 3).addReg(argvregs[i]).addImm((i - 6) * 8)
- .addReg(Alpha::R30);
- break;
- case MVT::f32:
- BuildMI(BB, Alpha::STS, 3).addReg(argvregs[i]).addImm((i - 6) * 8)
- .addReg(Alpha::R30);
- break;
- case MVT::f64:
- BuildMI(BB, Alpha::STT, 3).addReg(argvregs[i]).addImm((i - 6) * 8)
- .addReg(Alpha::R30);
- break;
- }
- }
- //build the right kind of call
- if (N.getOperand(1).getOpcode() == AlphaISD::GPRelLo) {
- //use PC relative branch call
- AlphaLowering.restoreGP(BB);
- BuildMI(BB, Alpha::BSR, 1)
- .addGlobalAddress(cast<GlobalAddressSDNode>(N.getOperand(1)
- .getOperand(0))
- ->getGlobal(),true);
- } else {
- //no need to restore GP as we are doing an indirect call
- Tmp1 = SelectExpr(N.getOperand(1));
- BuildMI(BB, Alpha::BIS, 2, Alpha::R27).addReg(Tmp1).addReg(Tmp1);
- BuildMI(BB, Alpha::JSR, 0);
- }
-
- //push the result into a virtual register
-
- switch (Node->getValueType(0)) {
- default: Node->dump(); assert(0 && "Unknown value type for call result!");
- case MVT::Other: return notIn;
- case MVT::i64:
- BuildMI(BB, Alpha::BIS, 2, Result).addReg(Alpha::R0).addReg(Alpha::R0);
- break;
- case MVT::f32:
- BuildMI(BB, Alpha::CPYSS, 2, Result).addReg(Alpha::F0).addReg(Alpha::F0);
- break;
- case MVT::f64:
- BuildMI(BB, Alpha::CPYST, 2, Result).addReg(Alpha::F0).addReg(Alpha::F0);
- break;
- }
- return Result+N.ResNo;
- }
-
- case ISD::SIGN_EXTEND_INREG:
- {
- //do SDIV opt for all levels of ints if not dividing by a constant
- if (EnableAlphaIDIV && N.getOperand(0).getOpcode() == ISD::SDIV
- && N.getOperand(0).getOperand(1).getOpcode() != ISD::Constant)
- {
- unsigned Tmp4 = MakeReg(MVT::f64);
- unsigned Tmp5 = MakeReg(MVT::f64);
- unsigned Tmp6 = MakeReg(MVT::f64);
- unsigned Tmp7 = MakeReg(MVT::f64);
- unsigned Tmp8 = MakeReg(MVT::f64);
- unsigned Tmp9 = MakeReg(MVT::f64);
-
- Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
- Tmp2 = SelectExpr(N.getOperand(0).getOperand(1));
- MoveInt2FP(Tmp1, Tmp4, true);
- MoveInt2FP(Tmp2, Tmp5, true);
- BuildMI(BB, Alpha::CVTQT, 1, Tmp6).addReg(Alpha::F31).addReg(Tmp4);
- BuildMI(BB, Alpha::CVTQT, 1, Tmp7).addReg(Alpha::F31).addReg(Tmp5);
- BuildMI(BB, Alpha::DIVT, 2, Tmp8).addReg(Tmp6).addReg(Tmp7);
- BuildMI(BB, Alpha::CVTTQ, 1, Tmp9).addReg(Alpha::F31).addReg(Tmp8);
- MoveFP2Int(Tmp9, Result, true);
- return Result;
- }
-
- //Alpha has instructions for a bunch of signed 32 bit stuff
- if(cast<VTSDNode>(Node->getOperand(1))->getVT() == MVT::i32) {
- switch (N.getOperand(0).getOpcode()) {
- case ISD::ADD:
- case ISD::SUB:
- case ISD::MUL:
- {
- bool isAdd = N.getOperand(0).getOpcode() == ISD::ADD;
- bool isMul = N.getOperand(0).getOpcode() == ISD::MUL;
- //FIXME: first check for Scaled Adds and Subs!
- if(!isMul && N.getOperand(0).getOperand(0).getOpcode() == ISD::SHL &&
- isSIntImmediateBounded(N.getOperand(0).getOperand(0).getOperand(1), SImm, 2, 3))
- {
- bool use4 = SImm == 2;
- Tmp1 = SelectExpr(N.getOperand(0).getOperand(0).getOperand(0));
- Tmp2 = SelectExpr(N.getOperand(0).getOperand(1));
- BuildMI(BB, isAdd?(use4?Alpha::S4ADDL:Alpha::S8ADDL):(use4?Alpha::S4SUBL:Alpha::S8SUBL),
- 2,Result).addReg(Tmp1).addReg(Tmp2);
- }
- else if(isAdd && N.getOperand(0).getOperand(1).getOpcode() == ISD::SHL &&
- isSIntImmediateBounded(N.getOperand(0).getOperand(1).getOperand(1), SImm, 2, 3))
- {
- bool use4 = SImm == 2;
- Tmp1 = SelectExpr(N.getOperand(0).getOperand(1).getOperand(0));
- Tmp2 = SelectExpr(N.getOperand(0).getOperand(0));
- BuildMI(BB, use4?Alpha::S4ADDL:Alpha::S8ADDL, 2,Result).addReg(Tmp1).addReg(Tmp2);
- }
- else if(isSIntImmediateBounded(N.getOperand(0).getOperand(1), SImm, 0, 255))
- { //Normal imm add/sub
- Opc = isAdd ? Alpha::ADDLi : (isMul ? Alpha::MULLi : Alpha::SUBLi);
- Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
- BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(SImm);
- }
- else if(!isMul && isSIntImmediate(N.getOperand(0).getOperand(1), SImm) &&
- (((SImm << 32) >> 32) >= -255) && (((SImm << 32) >> 32) <= 0))
- { //handle canonicalization
- Opc = isAdd ? Alpha::SUBLi : Alpha::ADDLi;
- Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
- SImm = 0 - ((SImm << 32) >> 32);
- assert(SImm >= 0 && SImm <= 255);
- BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addImm(SImm);
- }
- else
- { //Normal add/sub
- Opc = isAdd ? Alpha::ADDL : (isMul ? Alpha::MULL : Alpha::SUBL);
- Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
- Tmp2 = SelectExpr(N.getOperand(0).getOperand(1));
- BuildMI(BB, Opc, 2, Result).addReg(Tmp1).addReg(Tmp2);
- }
- return Result;
- }
- default: break; //Fall Though;
- }
- } //Every thing else fall though too, including unhandled opcodes above
- Tmp1 = SelectExpr(N.getOperand(0));
- //std::cerr << "SrcT: " << MVN->getExtraValueType() << "\n";
- switch(cast<VTSDNode>(Node->getOperand(1))->getVT()) {
- default:
- Node->dump();
- assert(0 && "Sign Extend InReg not there yet");
- break;
- case MVT::i32:
- {
- BuildMI(BB, Alpha::ADDLi, 2, Result).addReg(Tmp1).a