Jim Grosbach | 754578b | 2010-09-15 19:26:06 +0000 | [diff] [blame] | 1 | //===-- ARMBaseInfo.h - Top level definitions for ARM -------- --*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains small standalone helper functions and enum definitions for |
| 11 | // the ARM target useful for the compiler back-end and the MC libraries. |
| 12 | // As such, it deliberately does not include references to LLVM core |
| 13 | // code gen types, passes, etc.. |
| 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
| 17 | #ifndef ARMBASEINFO_H |
| 18 | #define ARMBASEINFO_H |
| 19 | |
| 20 | #include "llvm/Support/ErrorHandling.h" |
| 21 | |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 22 | // Note that the following auto-generated files only defined enum types, and |
| 23 | // so are safe to include here. |
| 24 | |
| 25 | // Defines symbolic names for ARM registers. This defines a mapping from |
| 26 | // register name to register number. |
| 27 | // |
| 28 | #include "ARMGenRegisterNames.inc" |
| 29 | |
| 30 | // Defines symbolic names for the ARM instructions. |
| 31 | // |
| 32 | #include "ARMGenInstrNames.inc" |
| 33 | |
Jim Grosbach | 754578b | 2010-09-15 19:26:06 +0000 | [diff] [blame] | 34 | namespace llvm { |
| 35 | |
| 36 | // Enums corresponding to ARM condition codes |
| 37 | namespace ARMCC { |
| 38 | // The CondCodes constants map directly to the 4-bit encoding of the |
| 39 | // condition field for predicated instructions. |
| 40 | enum CondCodes { // Meaning (integer) Meaning (floating-point) |
| 41 | EQ, // Equal Equal |
| 42 | NE, // Not equal Not equal, or unordered |
| 43 | HS, // Carry set >, ==, or unordered |
| 44 | LO, // Carry clear Less than |
| 45 | MI, // Minus, negative Less than |
| 46 | PL, // Plus, positive or zero >, ==, or unordered |
| 47 | VS, // Overflow Unordered |
| 48 | VC, // No overflow Not unordered |
| 49 | HI, // Unsigned higher Greater than, or unordered |
| 50 | LS, // Unsigned lower or same Less than or equal |
| 51 | GE, // Greater than or equal Greater than or equal |
| 52 | LT, // Less than Less than, or unordered |
| 53 | GT, // Greater than Greater than |
| 54 | LE, // Less than or equal <, ==, or unordered |
| 55 | AL // Always (unconditional) Always (unconditional) |
| 56 | }; |
| 57 | |
| 58 | inline static CondCodes getOppositeCondition(CondCodes CC) { |
| 59 | switch (CC) { |
| 60 | default: llvm_unreachable("Unknown condition code"); |
| 61 | case EQ: return NE; |
| 62 | case NE: return EQ; |
| 63 | case HS: return LO; |
| 64 | case LO: return HS; |
| 65 | case MI: return PL; |
| 66 | case PL: return MI; |
| 67 | case VS: return VC; |
| 68 | case VC: return VS; |
| 69 | case HI: return LS; |
| 70 | case LS: return HI; |
| 71 | case GE: return LT; |
| 72 | case LT: return GE; |
| 73 | case GT: return LE; |
| 74 | case LE: return GT; |
| 75 | } |
| 76 | } |
| 77 | } // namespace ARMCC |
| 78 | |
| 79 | inline static const char *ARMCondCodeToString(ARMCC::CondCodes CC) { |
| 80 | switch (CC) { |
| 81 | default: llvm_unreachable("Unknown condition code"); |
| 82 | case ARMCC::EQ: return "eq"; |
| 83 | case ARMCC::NE: return "ne"; |
| 84 | case ARMCC::HS: return "hs"; |
| 85 | case ARMCC::LO: return "lo"; |
| 86 | case ARMCC::MI: return "mi"; |
| 87 | case ARMCC::PL: return "pl"; |
| 88 | case ARMCC::VS: return "vs"; |
| 89 | case ARMCC::VC: return "vc"; |
| 90 | case ARMCC::HI: return "hi"; |
| 91 | case ARMCC::LS: return "ls"; |
| 92 | case ARMCC::GE: return "ge"; |
| 93 | case ARMCC::LT: return "lt"; |
| 94 | case ARMCC::GT: return "gt"; |
| 95 | case ARMCC::LE: return "le"; |
| 96 | case ARMCC::AL: return "al"; |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | namespace ARM_MB { |
| 101 | // The Memory Barrier Option constants map directly to the 4-bit encoding of |
| 102 | // the option field for memory barrier operations. |
| 103 | enum MemBOpt { |
Bob Wilson | f74a429 | 2010-10-30 00:54:37 +0000 | [diff] [blame] | 104 | SY = 15, |
Jim Grosbach | 754578b | 2010-09-15 19:26:06 +0000 | [diff] [blame] | 105 | ST = 14, |
| 106 | ISH = 11, |
| 107 | ISHST = 10, |
| 108 | NSH = 7, |
| 109 | NSHST = 6, |
| 110 | OSH = 3, |
| 111 | OSHST = 2 |
| 112 | }; |
| 113 | |
| 114 | inline static const char *MemBOptToString(unsigned val) { |
| 115 | switch (val) { |
Jim Grosbach | 8b7fa19 | 2010-09-15 19:26:50 +0000 | [diff] [blame] | 116 | default: llvm_unreachable("Unknown memory operation"); |
Bob Wilson | f74a429 | 2010-10-30 00:54:37 +0000 | [diff] [blame] | 117 | case SY: return "sy"; |
Jim Grosbach | 754578b | 2010-09-15 19:26:06 +0000 | [diff] [blame] | 118 | case ST: return "st"; |
| 119 | case ISH: return "ish"; |
| 120 | case ISHST: return "ishst"; |
| 121 | case NSH: return "nsh"; |
| 122 | case NSHST: return "nshst"; |
| 123 | case OSH: return "osh"; |
| 124 | case OSHST: return "oshst"; |
| 125 | } |
| 126 | } |
| 127 | } // namespace ARM_MB |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 128 | |
| 129 | /// getARMRegisterNumbering - Given the enum value for some register, e.g. |
| 130 | /// ARM::LR, return the number that it corresponds to (e.g. 14). |
| 131 | inline static unsigned getARMRegisterNumbering(unsigned Reg) { |
| 132 | using namespace ARM; |
| 133 | switch (Reg) { |
| 134 | default: |
| 135 | llvm_unreachable("Unknown ARM register!"); |
| 136 | case R0: case S0: case D0: case Q0: return 0; |
Owen Anderson | 90d4cf9 | 2010-10-21 20:49:13 +0000 | [diff] [blame] | 137 | case R1: case S1: case D1: case Q1: return 1; |
| 138 | case R2: case S2: case D2: case Q2: return 2; |
| 139 | case R3: case S3: case D3: case Q3: return 3; |
| 140 | case R4: case S4: case D4: case Q4: return 4; |
| 141 | case R5: case S5: case D5: case Q5: return 5; |
| 142 | case R6: case S6: case D6: case Q6: return 6; |
| 143 | case R7: case S7: case D7: case Q7: return 7; |
| 144 | case R8: case S8: case D8: case Q8: return 8; |
| 145 | case R9: case S9: case D9: case Q9: return 9; |
| 146 | case R10: case S10: case D10: case Q10: return 10; |
| 147 | case R11: case S11: case D11: case Q11: return 11; |
| 148 | case R12: case S12: case D12: case Q12: return 12; |
| 149 | case SP: case S13: case D13: case Q13: return 13; |
| 150 | case LR: case S14: case D14: case Q14: return 14; |
| 151 | case PC: case S15: case D15: case Q15: return 15; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 152 | |
Owen Anderson | 90d4cf9 | 2010-10-21 20:49:13 +0000 | [diff] [blame] | 153 | case S16: case D16: return 16; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 154 | case S17: case D17: return 17; |
Owen Anderson | 90d4cf9 | 2010-10-21 20:49:13 +0000 | [diff] [blame] | 155 | case S18: case D18: return 18; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 156 | case S19: case D19: return 19; |
Owen Anderson | 90d4cf9 | 2010-10-21 20:49:13 +0000 | [diff] [blame] | 157 | case S20: case D20: return 20; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 158 | case S21: case D21: return 21; |
Owen Anderson | 90d4cf9 | 2010-10-21 20:49:13 +0000 | [diff] [blame] | 159 | case S22: case D22: return 22; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 160 | case S23: case D23: return 23; |
Owen Anderson | 90d4cf9 | 2010-10-21 20:49:13 +0000 | [diff] [blame] | 161 | case S24: case D24: return 24; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 162 | case S25: case D25: return 25; |
Owen Anderson | 90d4cf9 | 2010-10-21 20:49:13 +0000 | [diff] [blame] | 163 | case S26: case D26: return 26; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 164 | case S27: case D27: return 27; |
Owen Anderson | 90d4cf9 | 2010-10-21 20:49:13 +0000 | [diff] [blame] | 165 | case S28: case D28: return 28; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 166 | case S29: case D29: return 29; |
Owen Anderson | 90d4cf9 | 2010-10-21 20:49:13 +0000 | [diff] [blame] | 167 | case S30: case D30: return 30; |
Jim Grosbach | a4c3c8f | 2010-09-15 20:26:25 +0000 | [diff] [blame] | 168 | case S31: case D31: return 31; |
| 169 | } |
| 170 | } |
| 171 | |
Jim Grosbach | c686e33 | 2010-09-17 18:25:25 +0000 | [diff] [blame] | 172 | namespace ARMII { |
| 173 | /// Target Operand Flag enum. |
| 174 | enum TOF { |
| 175 | //===------------------------------------------------------------------===// |
| 176 | // ARM Specific MachineOperand flags. |
| 177 | |
| 178 | MO_NO_FLAG, |
| 179 | |
| 180 | /// MO_LO16 - On a symbol operand, this represents a relocation containing |
| 181 | /// lower 16 bit of the address. Used only via movw instruction. |
| 182 | MO_LO16, |
| 183 | |
| 184 | /// MO_HI16 - On a symbol operand, this represents a relocation containing |
| 185 | /// higher 16 bit of the address. Used only via movt instruction. |
Jim Grosbach | 637d89f | 2010-09-22 23:27:36 +0000 | [diff] [blame] | 186 | MO_HI16, |
| 187 | |
| 188 | /// MO_PLT - On a symbol operand, this represents an ELF PLT reference on a |
| 189 | /// call operand. |
| 190 | MO_PLT |
Jim Grosbach | c686e33 | 2010-09-17 18:25:25 +0000 | [diff] [blame] | 191 | }; |
| 192 | } // end namespace ARMII |
| 193 | |
Jim Grosbach | 754578b | 2010-09-15 19:26:06 +0000 | [diff] [blame] | 194 | } // end namespace llvm; |
| 195 | |
Jim Grosbach | 754578b | 2010-09-15 19:26:06 +0000 | [diff] [blame] | 196 | #endif |