forked from OSchip/llvm-project
57 lines
1.7 KiB
C++
57 lines
1.7 KiB
C++
|
//===-- MSP430ISelLowering.cpp - MSP430 DAG Lowering Implementation ------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This file implements the MSP430TargetLowering class.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#define DEBUG_TYPE "msp430-lower"
|
||
|
|
||
|
#include "MSP430ISelLowering.h"
|
||
|
#include "MSP430.h"
|
||
|
#include "MSP430TargetMachine.h"
|
||
|
#include "MSP430Subtarget.h"
|
||
|
#include "llvm/DerivedTypes.h"
|
||
|
#include "llvm/Function.h"
|
||
|
#include "llvm/Intrinsics.h"
|
||
|
#include "llvm/CallingConv.h"
|
||
|
#include "llvm/GlobalVariable.h"
|
||
|
#include "llvm/GlobalAlias.h"
|
||
|
#include "llvm/CodeGen/CallingConvLower.h"
|
||
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||
|
#include "llvm/CodeGen/MachineFunction.h"
|
||
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||
|
#include "llvm/CodeGen/SelectionDAGISel.h"
|
||
|
#include "llvm/CodeGen/ValueTypes.h"
|
||
|
#include "llvm/Support/Debug.h"
|
||
|
#include "llvm/ADT/VectorExtras.h"
|
||
|
using namespace llvm;
|
||
|
|
||
|
MSP430TargetLowering::MSP430TargetLowering(MSP430TargetMachine &tm) :
|
||
|
TargetLowering(tm), Subtarget(*tm.getSubtargetImpl()), TM(tm) {
|
||
|
|
||
|
// Set up the register classes.
|
||
|
addRegisterClass(MVT::i16, MSP430::MSP430RegsRegisterClass);
|
||
|
|
||
|
// Compute derived properties from the register classes
|
||
|
computeRegisterProperties();
|
||
|
}
|
||
|
|
||
|
SDValue MSP430TargetLowering::
|
||
|
LowerOperation(SDValue Op, SelectionDAG &DAG) {
|
||
|
switch (Op.getOpcode()) {
|
||
|
default:
|
||
|
assert(0 && "unimplemented operand");
|
||
|
return SDValue();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#include "MSP430GenCallingConv.inc"
|