Add default implementation of printing interface
[oota-llvm.git] / lib / Target / TargetInstrInfo.cpp
1 //===-- MachineInstrInfo.cpp - Target Instruction Information -------------===//
2 //
3 //
4 //===----------------------------------------------------------------------===//
5
6 #include "llvm/Target/MachineInstrInfo.h"
7 #include "llvm/CodeGen/MachineInstr.h"
8 #include "llvm/Constant.h"
9 #include "llvm/DerivedTypes.h"
10
11 // External object describing the machine instructions
12 // Initialized only when the TargetMachine class is created
13 // and reset when that class is destroyed.
14 // 
15 const MachineInstrDescriptor* TargetInstrDescriptors = 0;
16
17 //---------------------------------------------------------------------------
18 // class MachineInstructionInfo
19 //      Interface to description of machine instructions
20 //---------------------------------------------------------------------------
21
22
23 MachineInstrInfo::MachineInstrInfo(const MachineInstrDescriptor* Desc,
24                                    unsigned DescSize,
25                                    unsigned NumRealOpCodes)
26   : desc(Desc), descSize(DescSize), numRealOpCodes(NumRealOpCodes) {
27   // FIXME: TargetInstrDescriptors should not be global
28   assert(TargetInstrDescriptors == NULL && desc != NULL);
29   TargetInstrDescriptors = desc;        // initialize global variable
30 }
31
32 MachineInstrInfo::~MachineInstrInfo() {
33   TargetInstrDescriptors = NULL;        // reset global variable
34 }
35
36 void MachineInstrInfo::print(const MachineInstr *MI, std::ostream &O) const {
37   O << *MI;
38 }
39
40 bool MachineInstrInfo::constantFitsInImmedField(MachineOpCode opCode,
41                                                 int64_t intValue) const {
42   // First, check if opCode has an immed field.
43   bool isSignExtended;
44   uint64_t maxImmedValue = maxImmedConstant(opCode, isSignExtended);
45   if (maxImmedValue != 0)
46     {
47       // NEED TO HANDLE UNSIGNED VALUES SINCE THEY MAY BECOME MUCH
48       // SMALLER AFTER CASTING TO SIGN-EXTENDED int, short, or char.
49       // See CreateUIntSetInstruction in SparcInstrInfo.cpp.
50       
51       // Now check if the constant fits
52       if (intValue <= (int64_t) maxImmedValue &&
53           intValue >= -((int64_t) maxImmedValue+1))
54         return true;
55     }
56   
57   return false;
58 }
59
60 bool MachineInstrInfo::ConstantTypeMustBeLoaded(const Constant* CV) const {
61   assert(CV->getType()->isPrimitiveType() || isa<PointerType>(CV->getType()));
62   return !(CV->getType()->isIntegral() || isa<PointerType>(CV->getType()));
63 }