Chris Lattner | cf3056d | 2003-10-13 03:32:08 +0000 | [diff] [blame] | 1 | //===-- InstructionWriter.cpp - Functions for writing instructions --------===// |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file implements the routines for encoding instruction opcodes to a |
| 11 | // bytecode stream. |
| 12 | // |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "WriterInternals.h" |
| 16 | #include "llvm/Module.h" |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 17 | #include "llvm/DerivedTypes.h" |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 18 | #include "llvm/Instructions.h" |
Chris Lattner | a92f696 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 19 | #include "Support/Statistic.h" |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 20 | #include <algorithm> |
Chris Lattner | 44f549b | 2004-01-10 18:49:43 +0000 | [diff] [blame^] | 21 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 22 | |
Chris Lattner | ce6ef11 | 2002-07-26 18:40:14 +0000 | [diff] [blame] | 23 | static Statistic<> |
Chris Lattner | a407ba1 | 2003-01-21 20:13:49 +0000 | [diff] [blame] | 24 | NumInstrs("bytecodewriter", "Number of instructions"); |
Chris Lattner | ce6ef11 | 2002-07-26 18:40:14 +0000 | [diff] [blame] | 25 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 26 | typedef unsigned char uchar; |
| 27 | |
| 28 | // outputInstructionFormat0 - Output those wierd instructions that have a large |
| 29 | // number of operands or have large operands themselves... |
| 30 | // |
| 31 | // Format: [opcode] [type] [numargs] [arg0] [arg1] ... [arg<numargs-1>] |
| 32 | // |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 33 | static void outputInstructionFormat0(const Instruction *I, unsigned Opcode, |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 34 | const SlotCalculator &Table, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 35 | unsigned Type, std::deque<uchar> &Out) { |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 36 | // Opcode must have top two bits clear... |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 37 | output_vbr(Opcode << 2, Out); // Instruction Opcode ID |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 38 | output_vbr(Type, Out); // Result type |
| 39 | |
Chris Lattner | c8b25d4 | 2001-07-07 08:36:50 +0000 | [diff] [blame] | 40 | unsigned NumArgs = I->getNumOperands(); |
Chris Lattner | eff112c | 2003-10-18 05:54:48 +0000 | [diff] [blame] | 41 | output_vbr(NumArgs + (isa<CastInst>(I) || isa<VANextInst>(I) || |
| 42 | isa<VAArgInst>(I)), Out); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 43 | |
Chris Lattner | c8b25d4 | 2001-07-07 08:36:50 +0000 | [diff] [blame] | 44 | for (unsigned i = 0; i < NumArgs; ++i) { |
Alkis Evlogimenos | 6059638 | 2003-10-17 02:02:40 +0000 | [diff] [blame] | 45 | int Slot = Table.getSlot(I->getOperand(i)); |
Chris Lattner | e5a57ee | 2001-07-25 22:47:55 +0000 | [diff] [blame] | 46 | assert(Slot >= 0 && "No slot number for value!?!?"); |
| 47 | output_vbr((unsigned)Slot, Out); |
| 48 | } |
Chris Lattner | 5ab1f87 | 2001-10-21 00:14:44 +0000 | [diff] [blame] | 49 | |
Chris Lattner | eff112c | 2003-10-18 05:54:48 +0000 | [diff] [blame] | 50 | if (isa<CastInst>(I) || isa<VAArgInst>(I)) { |
Alkis Evlogimenos | 6059638 | 2003-10-17 02:02:40 +0000 | [diff] [blame] | 51 | int Slot = Table.getSlot(I->getType()); |
Chris Lattner | eff112c | 2003-10-18 05:54:48 +0000 | [diff] [blame] | 52 | assert(Slot != -1 && "Cast return type unknown?"); |
| 53 | output_vbr((unsigned)Slot, Out); |
| 54 | } else if (const VANextInst *VAI = dyn_cast<VANextInst>(I)) { |
| 55 | int Slot = Table.getSlot(VAI->getArgType()); |
| 56 | assert(Slot != -1 && "VarArg argument type unknown?"); |
Chris Lattner | 5ab1f87 | 2001-10-21 00:14:44 +0000 | [diff] [blame] | 57 | output_vbr((unsigned)Slot, Out); |
| 58 | } |
| 59 | |
Chris Lattner | e5a57ee | 2001-07-25 22:47:55 +0000 | [diff] [blame] | 60 | align32(Out); // We must maintain correct alignment! |
| 61 | } |
| 62 | |
| 63 | |
Misha Brukman | 37f92e2 | 2003-09-11 22:34:13 +0000 | [diff] [blame] | 64 | // outputInstrVarArgsCall - Output the absurdly annoying varargs function calls. |
Chris Lattner | e5a57ee | 2001-07-25 22:47:55 +0000 | [diff] [blame] | 65 | // This are more annoying than most because the signature of the call does not |
| 66 | // tell us anything about the types of the arguments in the varargs portion. |
| 67 | // Because of this, we encode (as type 0) all of the argument types explicitly |
| 68 | // before the argument value. This really sucks, but you shouldn't be using |
| 69 | // varargs functions in your code! *death to printf*! |
| 70 | // |
| 71 | // Format: [opcode] [type] [numargs] [arg0] [arg1] ... [arg<numargs-1>] |
| 72 | // |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 73 | static void outputInstrVarArgsCall(const Instruction *I, unsigned Opcode, |
Chris Lattner | e5a57ee | 2001-07-25 22:47:55 +0000 | [diff] [blame] | 74 | const SlotCalculator &Table, unsigned Type, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 75 | std::deque<uchar> &Out) { |
Chris Lattner | 1b98c5c | 2001-10-13 06:48:38 +0000 | [diff] [blame] | 76 | assert(isa<CallInst>(I) || isa<InvokeInst>(I)); |
Chris Lattner | e5a57ee | 2001-07-25 22:47:55 +0000 | [diff] [blame] | 77 | // Opcode must have top two bits clear... |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 78 | output_vbr(Opcode << 2, Out); // Instruction Opcode ID |
Chris Lattner | e5a57ee | 2001-07-25 22:47:55 +0000 | [diff] [blame] | 79 | output_vbr(Type, Out); // Result type (varargs type) |
| 80 | |
Chris Lattner | eff112c | 2003-10-18 05:54:48 +0000 | [diff] [blame] | 81 | const PointerType *PTy = cast<PointerType>(I->getOperand(0)->getType()); |
| 82 | const FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); |
| 83 | unsigned NumParams = FTy->getNumParams(); |
| 84 | |
| 85 | unsigned NumFixedOperands; |
| 86 | if (isa<CallInst>(I)) { |
| 87 | // Output an operand for the callee and each fixed argument, then two for |
| 88 | // each variable argument. |
| 89 | NumFixedOperands = 1+NumParams; |
| 90 | } else { |
| 91 | assert(isa<InvokeInst>(I) && "Not call or invoke??"); |
| 92 | // Output an operand for the callee and destinations, then two for each |
| 93 | // variable argument. |
| 94 | NumFixedOperands = 3+NumParams; |
| 95 | } |
| 96 | output_vbr(2 * I->getNumOperands()-NumFixedOperands, Out); |
Chris Lattner | e5a57ee | 2001-07-25 22:47:55 +0000 | [diff] [blame] | 97 | |
Chris Lattner | 2fbfdcf | 2002-04-07 20:49:59 +0000 | [diff] [blame] | 98 | // The type for the function has already been emitted in the type field of the |
Chris Lattner | 1b98c5c | 2001-10-13 06:48:38 +0000 | [diff] [blame] | 99 | // instruction. Just emit the slot # now. |
Chris Lattner | eff112c | 2003-10-18 05:54:48 +0000 | [diff] [blame] | 100 | for (unsigned i = 0; i != NumFixedOperands; ++i) { |
| 101 | int Slot = Table.getSlot(I->getOperand(i)); |
Chris Lattner | e5a57ee | 2001-07-25 22:47:55 +0000 | [diff] [blame] | 102 | assert(Slot >= 0 && "No slot number for value!?!?"); |
| 103 | output_vbr((unsigned)Slot, Out); |
Chris Lattner | eff112c | 2003-10-18 05:54:48 +0000 | [diff] [blame] | 104 | } |
Chris Lattner | e5a57ee | 2001-07-25 22:47:55 +0000 | [diff] [blame] | 105 | |
Chris Lattner | eff112c | 2003-10-18 05:54:48 +0000 | [diff] [blame] | 106 | for (unsigned i = NumFixedOperands, e = I->getNumOperands(); i != e; ++i) { |
| 107 | // Output Arg Type ID |
| 108 | int Slot = Table.getSlot(I->getOperand(i)->getType()); |
| 109 | assert(Slot >= 0 && "No slot number for value!?!?"); |
| 110 | output_vbr((unsigned)Slot, Out); |
| 111 | |
Chris Lattner | e5a57ee | 2001-07-25 22:47:55 +0000 | [diff] [blame] | 112 | // Output arg ID itself |
Alkis Evlogimenos | 6059638 | 2003-10-17 02:02:40 +0000 | [diff] [blame] | 113 | Slot = Table.getSlot(I->getOperand(i)); |
Chris Lattner | c8b25d4 | 2001-07-07 08:36:50 +0000 | [diff] [blame] | 114 | assert(Slot >= 0 && "No slot number for value!?!?"); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 115 | output_vbr((unsigned)Slot, Out); |
| 116 | } |
| 117 | align32(Out); // We must maintain correct alignment! |
| 118 | } |
| 119 | |
| 120 | |
| 121 | // outputInstructionFormat1 - Output one operand instructions, knowing that no |
| 122 | // operand index is >= 2^12. |
| 123 | // |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 124 | static void outputInstructionFormat1(const Instruction *I, unsigned Opcode, |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 125 | const SlotCalculator &Table, int *Slots, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 126 | unsigned Type, std::deque<uchar> &Out) { |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 127 | // bits Instruction format: |
| 128 | // -------------------------- |
Chris Lattner | 2b9f600 | 2001-10-23 03:21:10 +0000 | [diff] [blame] | 129 | // 01-00: Opcode type, fixed to 1. |
| 130 | // 07-02: Opcode |
| 131 | // 19-08: Resulting type plane |
| 132 | // 31-20: Operand #1 (if set to (2^12-1), then zero operands) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 133 | // |
Chris Lattner | 2b9f600 | 2001-10-23 03:21:10 +0000 | [diff] [blame] | 134 | unsigned Bits = 1 | (Opcode << 2) | (Type << 8) | (Slots[0] << 20); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 135 | // cerr << "1 " << IType << " " << Type << " " << Slots[0] << endl; |
Chris Lattner | 2b9f600 | 2001-10-23 03:21:10 +0000 | [diff] [blame] | 136 | output(Bits, Out); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | |
| 140 | // outputInstructionFormat2 - Output two operand instructions, knowing that no |
| 141 | // operand index is >= 2^8. |
| 142 | // |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 143 | static void outputInstructionFormat2(const Instruction *I, unsigned Opcode, |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 144 | const SlotCalculator &Table, int *Slots, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 145 | unsigned Type, std::deque<uchar> &Out) { |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 146 | // bits Instruction format: |
| 147 | // -------------------------- |
Chris Lattner | 2b9f600 | 2001-10-23 03:21:10 +0000 | [diff] [blame] | 148 | // 01-00: Opcode type, fixed to 2. |
| 149 | // 07-02: Opcode |
| 150 | // 15-08: Resulting type plane |
| 151 | // 23-16: Operand #1 |
| 152 | // 31-24: Operand #2 |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 153 | // |
Chris Lattner | 2b9f600 | 2001-10-23 03:21:10 +0000 | [diff] [blame] | 154 | unsigned Bits = 2 | (Opcode << 2) | (Type << 8) | |
| 155 | (Slots[0] << 16) | (Slots[1] << 24); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 156 | // cerr << "2 " << IType << " " << Type << " " << Slots[0] << " " |
| 157 | // << Slots[1] << endl; |
Chris Lattner | 2b9f600 | 2001-10-23 03:21:10 +0000 | [diff] [blame] | 158 | output(Bits, Out); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | |
| 162 | // outputInstructionFormat3 - Output three operand instructions, knowing that no |
| 163 | // operand index is >= 2^6. |
| 164 | // |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 165 | static void outputInstructionFormat3(const Instruction *I, unsigned Opcode, |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 166 | const SlotCalculator &Table, int *Slots, |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 167 | unsigned Type, std::deque<uchar> &Out) { |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 168 | // bits Instruction format: |
| 169 | // -------------------------- |
Chris Lattner | 2b9f600 | 2001-10-23 03:21:10 +0000 | [diff] [blame] | 170 | // 01-00: Opcode type, fixed to 3. |
| 171 | // 07-02: Opcode |
| 172 | // 13-08: Resulting type plane |
| 173 | // 19-14: Operand #1 |
| 174 | // 25-20: Operand #2 |
| 175 | // 31-26: Operand #3 |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 176 | // |
Chris Lattner | 2b9f600 | 2001-10-23 03:21:10 +0000 | [diff] [blame] | 177 | unsigned Bits = 3 | (Opcode << 2) | (Type << 8) | |
| 178 | (Slots[0] << 14) | (Slots[1] << 20) | (Slots[2] << 26); |
Chris Lattner | c8b25d4 | 2001-07-07 08:36:50 +0000 | [diff] [blame] | 179 | //cerr << "3 " << IType << " " << Type << " " << Slots[0] << " " |
| 180 | // << Slots[1] << " " << Slots[2] << endl; |
Chris Lattner | 2b9f600 | 2001-10-23 03:21:10 +0000 | [diff] [blame] | 181 | output(Bits, Out); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 182 | } |
| 183 | |
Chris Lattner | 0b12b5f | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 184 | void BytecodeWriter::processInstruction(const Instruction &I) { |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 185 | assert(I.getOpcode() < 62 && "Opcode too big???"); |
| 186 | unsigned Opcode = I.getOpcode(); |
| 187 | |
| 188 | // Encode 'volatile load' as 62 and 'volatile store' as 63. |
| 189 | if (isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) |
| 190 | Opcode = 62; |
| 191 | if (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile()) |
| 192 | Opcode = 63; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 193 | |
Chris Lattner | 0b12b5f | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 194 | unsigned NumOperands = I.getNumOperands(); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 195 | int MaxOpSlot = 0; |
Chris Lattner | c8b25d4 | 2001-07-07 08:36:50 +0000 | [diff] [blame] | 196 | int Slots[3]; Slots[0] = (1 << 12)-1; // Marker to signify 0 operands |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 197 | |
Chris Lattner | c8b25d4 | 2001-07-07 08:36:50 +0000 | [diff] [blame] | 198 | for (unsigned i = 0; i < NumOperands; ++i) { |
Chris Lattner | 0b12b5f | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 199 | const Value *Def = I.getOperand(i); |
Alkis Evlogimenos | 6059638 | 2003-10-17 02:02:40 +0000 | [diff] [blame] | 200 | int slot = Table.getSlot(Def); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 201 | assert(slot != -1 && "Broken bytecode!"); |
| 202 | if (slot > MaxOpSlot) MaxOpSlot = slot; |
Chris Lattner | c8b25d4 | 2001-07-07 08:36:50 +0000 | [diff] [blame] | 203 | if (i < 3) Slots[i] = slot; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | // Figure out which type to encode with the instruction. Typically we want |
| 207 | // the type of the first parameter, as opposed to the type of the instruction |
| 208 | // (for example, with setcc, we always know it returns bool, but the type of |
| 209 | // the first param is actually interesting). But if we have no arguments |
| 210 | // we take the type of the instruction itself. |
| 211 | // |
Chris Lattner | ab5ac6b | 2001-07-08 23:22:50 +0000 | [diff] [blame] | 212 | const Type *Ty; |
Chris Lattner | 0b12b5f | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 213 | switch (I.getOpcode()) { |
Chris Lattner | ab5ac6b | 2001-07-08 23:22:50 +0000 | [diff] [blame] | 214 | case Instruction::Malloc: |
| 215 | case Instruction::Alloca: |
Chris Lattner | 0b12b5f | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 216 | Ty = I.getType(); // Malloc & Alloca ALWAYS want to encode the return type |
Chris Lattner | ab5ac6b | 2001-07-08 23:22:50 +0000 | [diff] [blame] | 217 | break; |
| 218 | case Instruction::Store: |
Chris Lattner | 0b12b5f | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 219 | Ty = I.getOperand(1)->getType(); // Encode the pointer type... |
Chris Lattner | 9b62503 | 2002-05-06 16:15:30 +0000 | [diff] [blame] | 220 | assert(isa<PointerType>(Ty) && "Store to nonpointer type!?!?"); |
Chris Lattner | ab5ac6b | 2001-07-08 23:22:50 +0000 | [diff] [blame] | 221 | break; |
| 222 | default: // Otherwise use the default behavior... |
Chris Lattner | 0b12b5f | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 223 | Ty = NumOperands ? I.getOperand(0)->getType() : I.getType(); |
Chris Lattner | ab5ac6b | 2001-07-08 23:22:50 +0000 | [diff] [blame] | 224 | break; |
| 225 | } |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 226 | |
| 227 | unsigned Type; |
Alkis Evlogimenos | 6059638 | 2003-10-17 02:02:40 +0000 | [diff] [blame] | 228 | int Slot = Table.getSlot(Ty); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 229 | assert(Slot != -1 && "Type not available!!?!"); |
| 230 | Type = (unsigned)Slot; |
| 231 | |
Chris Lattner | 7c50147 | 2001-07-28 17:51:21 +0000 | [diff] [blame] | 232 | // Make sure that we take the type number into consideration. We don't want |
| 233 | // to overflow the field size for the instruction format we select. |
| 234 | // |
| 235 | if (Slot > MaxOpSlot) MaxOpSlot = Slot; |
| 236 | |
Chris Lattner | 0908309 | 2001-07-08 04:57:15 +0000 | [diff] [blame] | 237 | // Handle the special case for cast... |
Chris Lattner | eff112c | 2003-10-18 05:54:48 +0000 | [diff] [blame] | 238 | if (isa<CastInst>(I) || isa<VAArgInst>(I)) { |
Chris Lattner | 0908309 | 2001-07-08 04:57:15 +0000 | [diff] [blame] | 239 | // Cast has to encode the destination type as the second argument in the |
| 240 | // packet, or else we won't know what type to cast to! |
Alkis Evlogimenos | 6059638 | 2003-10-17 02:02:40 +0000 | [diff] [blame] | 241 | Slots[1] = Table.getSlot(I.getType()); |
Chris Lattner | 0908309 | 2001-07-08 04:57:15 +0000 | [diff] [blame] | 242 | assert(Slots[1] != -1 && "Cast return type unknown?"); |
| 243 | if (Slots[1] > MaxOpSlot) MaxOpSlot = Slots[1]; |
| 244 | NumOperands++; |
Chris Lattner | eff112c | 2003-10-18 05:54:48 +0000 | [diff] [blame] | 245 | } else if (const VANextInst *VANI = dyn_cast<VANextInst>(&I)) { |
| 246 | Slots[1] = Table.getSlot(VANI->getArgType()); |
| 247 | assert(Slots[1] != -1 && "va_next return type unknown?"); |
| 248 | if (Slots[1] > MaxOpSlot) MaxOpSlot = Slots[1]; |
| 249 | NumOperands++; |
Chris Lattner | 0b12b5f | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 250 | } else if (const CallInst *CI = dyn_cast<CallInst>(&I)){// Handle VarArg calls |
Chris Lattner | 9fcccb0 | 2002-06-05 17:49:40 +0000 | [diff] [blame] | 251 | const PointerType *Ty = cast<PointerType>(CI->getCalledValue()->getType()); |
Chris Lattner | 2aac6bf | 2002-04-04 22:19:18 +0000 | [diff] [blame] | 252 | if (cast<FunctionType>(Ty->getElementType())->isVarArg()) { |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 253 | outputInstrVarArgsCall(CI, Opcode, Table, Type, Out); |
Chris Lattner | 1b98c5c | 2001-10-13 06:48:38 +0000 | [diff] [blame] | 254 | return; |
| 255 | } |
Chris Lattner | 0b12b5f | 2002-06-25 16:13:21 +0000 | [diff] [blame] | 256 | } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {// ... & Invokes |
Chris Lattner | 9fcccb0 | 2002-06-05 17:49:40 +0000 | [diff] [blame] | 257 | const PointerType *Ty = cast<PointerType>(II->getCalledValue()->getType()); |
Chris Lattner | 2aac6bf | 2002-04-04 22:19:18 +0000 | [diff] [blame] | 258 | if (cast<FunctionType>(Ty->getElementType())->isVarArg()) { |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 259 | outputInstrVarArgsCall(II, Opcode, Table, Type, Out); |
Chris Lattner | ef9c23f | 2001-10-03 14:53:21 +0000 | [diff] [blame] | 260 | return; |
| 261 | } |
Chris Lattner | 0908309 | 2001-07-08 04:57:15 +0000 | [diff] [blame] | 262 | } |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 263 | |
Chris Lattner | a407ba1 | 2003-01-21 20:13:49 +0000 | [diff] [blame] | 264 | ++NumInstrs; |
| 265 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 266 | // Decide which instruction encoding to use. This is determined primarily by |
| 267 | // the number of operands, and secondarily by whether or not the max operand |
| 268 | // will fit into the instruction encoding. More operands == fewer bits per |
| 269 | // operand. |
| 270 | // |
| 271 | switch (NumOperands) { |
| 272 | case 0: |
| 273 | case 1: |
| 274 | if (MaxOpSlot < (1 << 12)-1) { // -1 because we use 4095 to indicate 0 ops |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 275 | outputInstructionFormat1(&I, Opcode, Table, Slots, Type, Out); |
Chris Lattner | e8fdde1 | 2001-09-07 16:39:41 +0000 | [diff] [blame] | 276 | return; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 277 | } |
| 278 | break; |
| 279 | |
| 280 | case 2: |
| 281 | if (MaxOpSlot < (1 << 8)) { |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 282 | outputInstructionFormat2(&I, Opcode, Table, Slots, Type, Out); |
Chris Lattner | e8fdde1 | 2001-09-07 16:39:41 +0000 | [diff] [blame] | 283 | return; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 284 | } |
| 285 | break; |
| 286 | |
| 287 | case 3: |
| 288 | if (MaxOpSlot < (1 << 6)) { |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 289 | outputInstructionFormat3(&I, Opcode, Table, Slots, Type, Out); |
Chris Lattner | e8fdde1 | 2001-09-07 16:39:41 +0000 | [diff] [blame] | 290 | return; |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 291 | } |
| 292 | break; |
| 293 | } |
| 294 | |
Chris Lattner | ab5ac6b | 2001-07-08 23:22:50 +0000 | [diff] [blame] | 295 | // If we weren't handled before here, we either have a large number of |
Misha Brukman | 37f92e2 | 2003-09-11 22:34:13 +0000 | [diff] [blame] | 296 | // operands or a large operand index that we are referring to. |
Chris Lattner | 0fe56f4 | 2003-09-08 17:58:37 +0000 | [diff] [blame] | 297 | outputInstructionFormat0(&I, Opcode, Table, Type, Out); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 298 | } |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 299 | |