1//===- HexagonImmediates.td - Hexagon immediate processing -*- tablegen -*-===// 2// 3// The LLVM Compiler Infrastructure 4// 5// This file is distributed under the University of Illnois Open Source 6// License. See LICENSE.TXT for details. 7// 8//===----------------------------------------------------------------------===// 9 10def s32ImmOperand : AsmOperandClass { let Name = "s32Imm"; } 11def s8ImmOperand : AsmOperandClass { let Name = "s8Imm"; } 12def s8Imm64Operand : AsmOperandClass { let Name = "s8Imm64"; } 13def s6ImmOperand : AsmOperandClass { let Name = "s6Imm"; } 14def s4ImmOperand : AsmOperandClass { let Name = "s4Imm"; } 15def s4_0ImmOperand : AsmOperandClass { let Name = "s4_0Imm"; } 16def s4_1ImmOperand : AsmOperandClass { let Name = "s4_1Imm"; } 17def s4_2ImmOperand : AsmOperandClass { let Name = "s4_2Imm"; } 18def s4_3ImmOperand : AsmOperandClass { let Name = "s4_3Imm"; } 19def s4_6ImmOperand : AsmOperandClass { let Name = "s4_6Imm"; } 20def s3_6ImmOperand : AsmOperandClass { let Name = "s3_6Imm"; } 21def u64ImmOperand : AsmOperandClass { let Name = "u64Imm"; } 22def u32ImmOperand : AsmOperandClass { let Name = "u32Imm"; } 23def u26_6ImmOperand : AsmOperandClass { let Name = "u26_6Imm"; } 24def u16ImmOperand : AsmOperandClass { let Name = "u16Imm"; } 25def u16_0ImmOperand : AsmOperandClass { let Name = "u16_0Imm"; } 26def u16_1ImmOperand : AsmOperandClass { let Name = "u16_1Imm"; } 27def u16_2ImmOperand : AsmOperandClass { let Name = "u16_2Imm"; } 28def u16_3ImmOperand : AsmOperandClass { let Name = "u16_3Imm"; } 29def u11_3ImmOperand : AsmOperandClass { let Name = "u11_3Imm"; } 30def u10ImmOperand : AsmOperandClass { let Name = "u10Imm"; } 31def u9ImmOperand : AsmOperandClass { let Name = "u9Imm"; } 32def u8ImmOperand : AsmOperandClass { let Name = "u8Imm"; } 33def u7ImmOperand : AsmOperandClass { let Name = "u7Imm"; } 34def u6ImmOperand : AsmOperandClass { let Name = "u6Imm"; } 35def u6_0ImmOperand : AsmOperandClass { let Name = "u6_0Imm"; } 36def u6_1ImmOperand : AsmOperandClass { let Name = "u6_1Imm"; } 37def u6_2ImmOperand : AsmOperandClass { let Name = "u6_2Imm"; } 38def u6_3ImmOperand : AsmOperandClass { let Name = "u6_3Imm"; } 39def u5ImmOperand : AsmOperandClass { let Name = "u5Imm"; } 40def u4ImmOperand : AsmOperandClass { let Name = "u4Imm"; } 41def u3ImmOperand : AsmOperandClass { let Name = "u3Imm"; } 42def u2ImmOperand : AsmOperandClass { let Name = "u2Imm"; } 43def u1ImmOperand : AsmOperandClass { let Name = "u1Imm"; } 44def n8ImmOperand : AsmOperandClass { let Name = "n8Imm"; } 45// Immediate operands. 46 47let OperandType = "OPERAND_IMMEDIATE", 48 DecoderMethod = "unsignedImmDecoder" in { 49 def s32Imm : Operand<i32> { let ParserMatchClass = s32ImmOperand; 50 let DecoderMethod = "s32ImmDecoder"; } 51 def s8Imm : Operand<i32> { let ParserMatchClass = s8ImmOperand; 52 let DecoderMethod = "s8ImmDecoder"; } 53 def s8Imm64 : Operand<i64> { let ParserMatchClass = s8Imm64Operand; 54 let DecoderMethod = "s8ImmDecoder"; } 55 def s6Imm : Operand<i32> { let ParserMatchClass = s6ImmOperand; 56 let DecoderMethod = "s6_0ImmDecoder"; } 57 def s6_3Imm : Operand<i32>; 58 def s4Imm : Operand<i32> { let ParserMatchClass = s4ImmOperand; 59 let DecoderMethod = "s4_0ImmDecoder"; } 60 def s4_0Imm : Operand<i32> { let ParserMatchClass = s4_0ImmOperand; 61 let DecoderMethod = "s4_0ImmDecoder"; } 62 def s4_1Imm : Operand<i32> { let ParserMatchClass = s4_1ImmOperand; 63 let DecoderMethod = "s4_1ImmDecoder"; } 64 def s4_2Imm : Operand<i32> { let ParserMatchClass = s4_2ImmOperand; 65 let DecoderMethod = "s4_2ImmDecoder"; } 66 def s4_3Imm : Operand<i32> { let ParserMatchClass = s4_3ImmOperand; 67 let DecoderMethod = "s4_3ImmDecoder"; } 68 def u64Imm : Operand<i64> { let ParserMatchClass = u64ImmOperand; } 69 def u32Imm : Operand<i32> { let ParserMatchClass = u32ImmOperand; } 70 def u26_6Imm : Operand<i32> { let ParserMatchClass = u26_6ImmOperand; } 71 def u16Imm : Operand<i32> { let ParserMatchClass = u16ImmOperand; } 72 def u16_0Imm : Operand<i32> { let ParserMatchClass = u16_0ImmOperand; } 73 def u16_1Imm : Operand<i32> { let ParserMatchClass = u16_1ImmOperand; } 74 def u16_2Imm : Operand<i32> { let ParserMatchClass = u16_2ImmOperand; } 75 def u16_3Imm : Operand<i32> { let ParserMatchClass = u16_3ImmOperand; } 76 def u11_3Imm : Operand<i32> { let ParserMatchClass = u11_3ImmOperand; } 77 def u10Imm : Operand<i32> { let ParserMatchClass = u10ImmOperand; } 78 def u9Imm : Operand<i32> { let ParserMatchClass = u9ImmOperand; } 79 def u8Imm : Operand<i32> { let ParserMatchClass = u8ImmOperand; } 80 def u7Imm : Operand<i32> { let ParserMatchClass = u7ImmOperand; } 81 def u6Imm : Operand<i32> { let ParserMatchClass = u6ImmOperand; } 82 def u6_0Imm : Operand<i32> { let ParserMatchClass = u6_0ImmOperand; } 83 def u6_1Imm : Operand<i32> { let ParserMatchClass = u6_1ImmOperand; } 84 def u6_2Imm : Operand<i32> { let ParserMatchClass = u6_2ImmOperand; } 85 def u6_3Imm : Operand<i32> { let ParserMatchClass = u6_3ImmOperand; } 86 def u5Imm : Operand<i32> { let ParserMatchClass = u5ImmOperand; } 87 def u5_0Imm : Operand<i32>; 88 def u5_1Imm : Operand<i32>; 89 def u5_2Imm : Operand<i32>; 90 def u5_3Imm : Operand<i32>; 91 def u4Imm : Operand<i32> { let ParserMatchClass = u4ImmOperand; } 92 def u4_0Imm : Operand<i32>; 93 def u4_1Imm : Operand<i32>; 94 def u4_2Imm : Operand<i32>; 95 def u4_3Imm : Operand<i32>; 96 def u3Imm : Operand<i32> { let ParserMatchClass = u3ImmOperand; } 97 def u3_0Imm : Operand<i32>; 98 def u3_1Imm : Operand<i32>; 99 def u3_2Imm : Operand<i32>; 100 def u3_3Imm : Operand<i32>; 101 def u2Imm : Operand<i32> { let ParserMatchClass = u2ImmOperand; } 102 def u1Imm : Operand<i32> { let ParserMatchClass = u1ImmOperand; } 103 def n8Imm : Operand<i32> { let ParserMatchClass = n8ImmOperand; } 104} 105 106let OperandType = "OPERAND_IMMEDIATE" in { 107 def s4_6Imm : Operand<i32> { let ParserMatchClass = s4_6ImmOperand; 108 let PrintMethod = "prints4_6ImmOperand"; 109 let DecoderMethod = "s4_6ImmDecoder";} 110 def s4_7Imm : Operand<i32> { let PrintMethod = "prints4_7ImmOperand"; 111 let DecoderMethod = "s4_6ImmDecoder";} 112 def s3_6Imm : Operand<i32> { let ParserMatchClass = s3_6ImmOperand; 113 let PrintMethod = "prints3_6ImmOperand"; 114 let DecoderMethod = "s3_6ImmDecoder";} 115 def s3_7Imm : Operand<i32> { let PrintMethod = "prints3_7ImmOperand"; 116 let DecoderMethod = "s3_6ImmDecoder";} 117} 118 119// 120// Immediate predicates 121// 122def s32ImmPred : PatLeaf<(i32 imm), [{ 123 int64_t v = (int64_t)N->getSExtValue(); 124 return isInt<32>(v); 125}]>; 126 127def s32_0ImmPred : PatLeaf<(i32 imm), [{ 128 int64_t v = (int64_t)N->getSExtValue(); 129 return isInt<32>(v); 130}]>; 131 132def s31_1ImmPred : PatLeaf<(i32 imm), [{ 133 int64_t v = (int64_t)N->getSExtValue(); 134 return isShiftedInt<31,1>(v); 135}]>; 136 137def s30_2ImmPred : PatLeaf<(i32 imm), [{ 138 int64_t v = (int64_t)N->getSExtValue(); 139 return isShiftedInt<30,2>(v); 140}]>; 141 142def s29_3ImmPred : PatLeaf<(i32 imm), [{ 143 int64_t v = (int64_t)N->getSExtValue(); 144 return isShiftedInt<29,3>(v); 145}]>; 146 147def s16ImmPred : PatLeaf<(i32 imm), [{ 148 int64_t v = (int64_t)N->getSExtValue(); 149 return isInt<16>(v); 150}]>; 151 152def s11_0ImmPred : PatLeaf<(i32 imm), [{ 153 int64_t v = (int64_t)N->getSExtValue(); 154 return isInt<11>(v); 155}]>; 156 157def s11_1ImmPred : PatLeaf<(i32 imm), [{ 158 int64_t v = (int64_t)N->getSExtValue(); 159 return isShiftedInt<11,1>(v); 160}]>; 161 162def s11_2ImmPred : PatLeaf<(i32 imm), [{ 163 int64_t v = (int64_t)N->getSExtValue(); 164 return isShiftedInt<11,2>(v); 165}]>; 166 167def s11_3ImmPred : PatLeaf<(i32 imm), [{ 168 int64_t v = (int64_t)N->getSExtValue(); 169 return isShiftedInt<11,3>(v); 170}]>; 171 172def s10ImmPred : PatLeaf<(i32 imm), [{ 173 int64_t v = (int64_t)N->getSExtValue(); 174 return isInt<10>(v); 175}]>; 176 177def s8ImmPred : PatLeaf<(i32 imm), [{ 178 int64_t v = (int64_t)N->getSExtValue(); 179 return isInt<8>(v); 180}]>; 181 182def s8Imm64Pred : PatLeaf<(i64 imm), [{ 183 int64_t v = (int64_t)N->getSExtValue(); 184 return isInt<8>(v); 185}]>; 186 187def s6ImmPred : PatLeaf<(i32 imm), [{ 188 int64_t v = (int64_t)N->getSExtValue(); 189 return isInt<6>(v); 190}]>; 191 192def s4_0ImmPred : PatLeaf<(i32 imm), [{ 193 int64_t v = (int64_t)N->getSExtValue(); 194 return isInt<4>(v); 195}]>; 196 197def s4_1ImmPred : PatLeaf<(i32 imm), [{ 198 int64_t v = (int64_t)N->getSExtValue(); 199 return isShiftedInt<4,1>(v); 200}]>; 201 202def s4_2ImmPred : PatLeaf<(i32 imm), [{ 203 int64_t v = (int64_t)N->getSExtValue(); 204 return isShiftedInt<4,2>(v); 205}]>; 206 207def s4_3ImmPred : PatLeaf<(i32 imm), [{ 208 int64_t v = (int64_t)N->getSExtValue(); 209 return isShiftedInt<4,3>(v); 210}]>; 211 212def u64ImmPred : PatLeaf<(i64 imm), [{ 213 // Adding "N ||" to suppress gcc unused warning. 214 return (N || true); 215}]>; 216 217def u32ImmPred : PatLeaf<(i32 imm), [{ 218 int64_t v = (int64_t)N->getSExtValue(); 219 return isUInt<32>(v); 220}]>; 221 222def u32_0ImmPred : PatLeaf<(i32 imm), [{ 223 int64_t v = (int64_t)N->getSExtValue(); 224 return isUInt<32>(v); 225}]>; 226 227def u31_1ImmPred : PatLeaf<(i32 imm), [{ 228 int64_t v = (int64_t)N->getSExtValue(); 229 return isShiftedUInt<31,1>(v); 230}]>; 231 232def u30_2ImmPred : PatLeaf<(i32 imm), [{ 233 int64_t v = (int64_t)N->getSExtValue(); 234 return isShiftedUInt<30,2>(v); 235}]>; 236 237def u29_3ImmPred : PatLeaf<(i32 imm), [{ 238 int64_t v = (int64_t)N->getSExtValue(); 239 return isShiftedUInt<29,3>(v); 240}]>; 241 242def u26_6ImmPred : PatLeaf<(i32 imm), [{ 243 int64_t v = (int64_t)N->getSExtValue(); 244 return isShiftedUInt<26,6>(v); 245}]>; 246 247def u16_0ImmPred : PatLeaf<(i32 imm), [{ 248 int64_t v = (int64_t)N->getSExtValue(); 249 return isUInt<16>(v); 250}]>; 251 252def u16_1ImmPred : PatLeaf<(i32 imm), [{ 253 int64_t v = (int64_t)N->getSExtValue(); 254 return isShiftedUInt<16,1>(v); 255}]>; 256 257def u16_2ImmPred : PatLeaf<(i32 imm), [{ 258 int64_t v = (int64_t)N->getSExtValue(); 259 return isShiftedUInt<16,2>(v); 260}]>; 261 262def u11_3ImmPred : PatLeaf<(i32 imm), [{ 263 int64_t v = (int64_t)N->getSExtValue(); 264 return isShiftedUInt<11,3>(v); 265}]>; 266 267def u10ImmPred : PatLeaf<(i32 imm), [{ 268 int64_t v = (int64_t)N->getSExtValue(); 269 return isUInt<10>(v); 270}]>; 271 272def u9ImmPred : PatLeaf<(i32 imm), [{ 273 int64_t v = (int64_t)N->getSExtValue(); 274 return isUInt<9>(v); 275}]>; 276 277def u8ImmPred : PatLeaf<(i32 imm), [{ 278 int64_t v = (int64_t)N->getSExtValue(); 279 return isUInt<8>(v); 280}]>; 281 282def u7StrictPosImmPred : ImmLeaf<i32, [{ 283 // u7StrictPosImmPred predicate - True if the immediate fits in an 7-bit 284 // unsigned field and is strictly greater than 0. 285 return isUInt<7>(Imm) && Imm > 0; 286}]>; 287 288def u7ImmPred : PatLeaf<(i32 imm), [{ 289 int64_t v = (int64_t)N->getSExtValue(); 290 return isUInt<7>(v); 291}]>; 292 293def u6ImmPred : PatLeaf<(i32 imm), [{ 294 int64_t v = (int64_t)N->getSExtValue(); 295 return isUInt<6>(v); 296}]>; 297 298def u6_0ImmPred : PatLeaf<(i32 imm), [{ 299 int64_t v = (int64_t)N->getSExtValue(); 300 return isUInt<6>(v); 301}]>; 302 303def u6_1ImmPred : PatLeaf<(i32 imm), [{ 304 int64_t v = (int64_t)N->getSExtValue(); 305 return isShiftedUInt<6,1>(v); 306}]>; 307 308def u6_2ImmPred : PatLeaf<(i32 imm), [{ 309 int64_t v = (int64_t)N->getSExtValue(); 310 return isShiftedUInt<6,2>(v); 311}]>; 312 313def u6_3ImmPred : PatLeaf<(i32 imm), [{ 314 int64_t v = (int64_t)N->getSExtValue(); 315 return isShiftedUInt<6,3>(v); 316}]>; 317 318def u5ImmPred : PatLeaf<(i32 imm), [{ 319 int64_t v = (int64_t)N->getSExtValue(); 320 return isUInt<5>(v); 321}]>; 322 323def u4ImmPred : PatLeaf<(i32 imm), [{ 324 int64_t v = (int64_t)N->getSExtValue(); 325 return isUInt<4>(v); 326}]>; 327 328def u3ImmPred : PatLeaf<(i32 imm), [{ 329 int64_t v = (int64_t)N->getSExtValue(); 330 return isUInt<3>(v); 331}]>; 332 333def u2ImmPred : PatLeaf<(i32 imm), [{ 334 int64_t v = (int64_t)N->getSExtValue(); 335 return isUInt<2>(v); 336}]>; 337 338def u1ImmPred : PatLeaf<(i1 imm), [{ 339 int64_t v = (int64_t)N->getSExtValue(); 340 return isUInt<1>(v); 341}]>; 342 343def u1ImmPred32 : PatLeaf<(i32 imm), [{ 344 int64_t v = (int64_t)N->getSExtValue(); 345 return isUInt<1>(v); 346}]>; 347 348def m5BImmPred : PatLeaf<(i32 imm), [{ 349 // m5BImmPred predicate - True if the (char) number is in range -1 .. -31 350 // and will fit in a 5 bit field when made positive, for use in memops. 351 // this is specific to the zero extending of a negative by CombineInstr 352 int8_t v = (int8_t)N->getSExtValue(); 353 return (-31 <= v && v <= -1); 354}]>; 355 356def m5HImmPred : PatLeaf<(i32 imm), [{ 357 // m5HImmPred predicate - True if the (short) number is in range -1 .. -31 358 // and will fit in a 5 bit field when made positive, for use in memops. 359 // this is specific to the zero extending of a negative by CombineInstr 360 int16_t v = (int16_t)N->getSExtValue(); 361 return (-31 <= v && v <= -1); 362}]>; 363 364def m5ImmPred : PatLeaf<(i32 imm), [{ 365 // m5ImmPred predicate - True if the number is in range -1 .. -31 366 // and will fit in a 5 bit field when made positive, for use in memops. 367 int64_t v = (int64_t)N->getSExtValue(); 368 return (-31 <= v && v <= -1); 369}]>; 370 371//InN means negative integers in [-(2^N - 1), 0] 372def n8ImmPred : PatLeaf<(i32 imm), [{ 373 // n8ImmPred predicate - True if the immediate fits in a 8-bit signed 374 // field. 375 int64_t v = (int64_t)N->getSExtValue(); 376 return (-255 <= v && v <= 0); 377}]>; 378 379def nOneImmPred : PatLeaf<(i32 imm), [{ 380 // nOneImmPred predicate - True if the immediate is -1. 381 int64_t v = (int64_t)N->getSExtValue(); 382 return (-1 == v); 383}]>; 384 385def Set5ImmPred : PatLeaf<(i32 imm), [{ 386 // Set5ImmPred predicate - True if the number is in the series of values. 387 // [ 2^0, 2^1, ... 2^31 ] 388 // For use in setbit immediate. 389 uint32_t v = (int32_t)N->getSExtValue(); 390 // Constrain to 32 bits, and then check for single bit. 391 return ImmIsSingleBit(v); 392}]>; 393 394def Clr5ImmPred : PatLeaf<(i32 imm), [{ 395 // Clr5ImmPred predicate - True if the number is in the series of 396 // bit negated values. 397 // [ 2^0, 2^1, ... 2^31 ] 398 // For use in clrbit immediate. 399 // Note: we are bit NOTing the value. 400 uint32_t v = ~ (int32_t)N->getSExtValue(); 401 // Constrain to 32 bits, and then check for single bit. 402 return ImmIsSingleBit(v); 403}]>; 404 405def SetClr5ImmPred : PatLeaf<(i32 imm), [{ 406 // True if the immediate is in range 0..31. 407 int32_t v = (int32_t)N->getSExtValue(); 408 return (v >= 0 && v <= 31); 409}]>; 410 411def Set4ImmPred : PatLeaf<(i32 imm), [{ 412 // Set4ImmPred predicate - True if the number is in the series of values: 413 // [ 2^0, 2^1, ... 2^15 ]. 414 // For use in setbit immediate. 415 uint16_t v = (int16_t)N->getSExtValue(); 416 // Constrain to 16 bits, and then check for single bit. 417 return ImmIsSingleBit(v); 418}]>; 419 420def Clr4ImmPred : PatLeaf<(i32 imm), [{ 421 // Clr4ImmPred predicate - True if the number is in the series of 422 // bit negated values: 423 // [ 2^0, 2^1, ... 2^15 ]. 424 // For use in setbit and clrbit immediate. 425 uint16_t v = ~ (int16_t)N->getSExtValue(); 426 // Constrain to 16 bits, and then check for single bit. 427 return ImmIsSingleBit(v); 428}]>; 429 430def SetClr4ImmPred : PatLeaf<(i32 imm), [{ 431 // True if the immediate is in the range 0..15. 432 int16_t v = (int16_t)N->getSExtValue(); 433 return (v >= 0 && v <= 15); 434}]>; 435 436def Set3ImmPred : PatLeaf<(i32 imm), [{ 437 // True if the number is in the series of values: [ 2^0, 2^1, ... 2^7 ]. 438 // For use in setbit immediate. 439 uint8_t v = (int8_t)N->getSExtValue(); 440 // Constrain to 8 bits, and then check for single bit. 441 return ImmIsSingleBit(v); 442}]>; 443 444def Clr3ImmPred : PatLeaf<(i32 imm), [{ 445 // True if the number is in the series of bit negated values: [ 2^0, 2^1, ... 2^7 ]. 446 // For use in setbit and clrbit immediate. 447 uint8_t v = ~ (int8_t)N->getSExtValue(); 448 // Constrain to 8 bits, and then check for single bit. 449 return ImmIsSingleBit(v); 450}]>; 451 452def SetClr3ImmPred : PatLeaf<(i32 imm), [{ 453 // True if the immediate is in the range 0..7. 454 int8_t v = (int8_t)N->getSExtValue(); 455 return (v >= 0 && v <= 7); 456}]>; 457 458 459// Extendable immediate operands. 460def f32ExtOperand : AsmOperandClass { let Name = "f32Ext"; } 461def s16ExtOperand : AsmOperandClass { let Name = "s16Ext"; } 462def s12ExtOperand : AsmOperandClass { let Name = "s12Ext"; } 463def s10ExtOperand : AsmOperandClass { let Name = "s10Ext"; } 464def s9ExtOperand : AsmOperandClass { let Name = "s9Ext"; } 465def s8ExtOperand : AsmOperandClass { let Name = "s8Ext"; } 466def s7ExtOperand : AsmOperandClass { let Name = "s7Ext"; } 467def s6ExtOperand : AsmOperandClass { let Name = "s6Ext"; } 468def s11_0ExtOperand : AsmOperandClass { let Name = "s11_0Ext"; } 469def s11_1ExtOperand : AsmOperandClass { let Name = "s11_1Ext"; } 470def s11_2ExtOperand : AsmOperandClass { let Name = "s11_2Ext"; } 471def s11_3ExtOperand : AsmOperandClass { let Name = "s11_3Ext"; } 472def u6ExtOperand : AsmOperandClass { let Name = "u6Ext"; } 473def u7ExtOperand : AsmOperandClass { let Name = "u7Ext"; } 474def u8ExtOperand : AsmOperandClass { let Name = "u8Ext"; } 475def u9ExtOperand : AsmOperandClass { let Name = "u9Ext"; } 476def u10ExtOperand : AsmOperandClass { let Name = "u10Ext"; } 477def u6_0ExtOperand : AsmOperandClass { let Name = "u6_0Ext"; } 478def u6_1ExtOperand : AsmOperandClass { let Name = "u6_1Ext"; } 479def u6_2ExtOperand : AsmOperandClass { let Name = "u6_2Ext"; } 480def u6_3ExtOperand : AsmOperandClass { let Name = "u6_3Ext"; } 481def u32MustExtOperand : AsmOperandClass { let Name = "u32MustExt"; } 482 483 484 485let OperandType = "OPERAND_IMMEDIATE", PrintMethod = "printExtOperand", 486 DecoderMethod = "unsignedImmDecoder" in { 487 def f32Ext : Operand<f32> { let ParserMatchClass = f32ExtOperand; } 488 def s16Ext : Operand<i32> { let ParserMatchClass = s16ExtOperand; 489 let DecoderMethod = "s16ImmDecoder"; } 490 def s12Ext : Operand<i32> { let ParserMatchClass = s12ExtOperand; 491 let DecoderMethod = "s12ImmDecoder"; } 492 def s11_0Ext : Operand<i32> { let ParserMatchClass = s11_0ExtOperand; 493 let DecoderMethod = "s11_0ImmDecoder"; } 494 def s11_1Ext : Operand<i32> { let ParserMatchClass = s11_1ExtOperand; 495 let DecoderMethod = "s11_1ImmDecoder"; } 496 def s11_2Ext : Operand<i32> { let ParserMatchClass = s11_2ExtOperand; 497 let DecoderMethod = "s11_2ImmDecoder"; } 498 def s11_3Ext : Operand<i32> { let ParserMatchClass = s11_3ExtOperand; 499 let DecoderMethod = "s11_3ImmDecoder"; } 500 def s10Ext : Operand<i32> { let ParserMatchClass = s10ExtOperand; 501 let DecoderMethod = "s10ImmDecoder"; } 502 def s9Ext : Operand<i32> { let ParserMatchClass = s9ExtOperand; 503 let DecoderMethod = "s90ImmDecoder"; } 504 def s8Ext : Operand<i32> { let ParserMatchClass = s8ExtOperand; 505 let DecoderMethod = "s8ImmDecoder"; } 506 def s7Ext : Operand<i32> { let ParserMatchClass = s7ExtOperand; } 507 def s6Ext : Operand<i32> { let ParserMatchClass = s6ExtOperand; 508 let DecoderMethod = "s6_0ImmDecoder"; } 509 def u6Ext : Operand<i32> { let ParserMatchClass = u6ExtOperand; } 510 def u7Ext : Operand<i32> { let ParserMatchClass = u7ExtOperand; } 511 def u8Ext : Operand<i32> { let ParserMatchClass = u8ExtOperand; } 512 def u9Ext : Operand<i32> { let ParserMatchClass = u9ExtOperand; } 513 def u10Ext : Operand<i32> { let ParserMatchClass = u10ExtOperand; } 514 def u6_0Ext : Operand<i32> { let ParserMatchClass = u6_0ExtOperand; } 515 def u6_1Ext : Operand<i32> { let ParserMatchClass = u6_1ExtOperand; } 516 def u6_2Ext : Operand<i32> { let ParserMatchClass = u6_2ExtOperand; } 517 def u6_3Ext : Operand<i32> { let ParserMatchClass = u6_3ExtOperand; } 518 def u32MustExt : Operand<i32> { let ParserMatchClass = u32MustExtOperand; } 519} 520 521 522def s4_7ImmPred : PatLeaf<(i32 imm), [{ 523 int64_t v = (int64_t)N->getSExtValue(); 524 if (HST->hasV60TOps()) 525 // Return true if the immediate can fit in a 10-bit sign extended field and 526 // is 128-byte aligned. 527 return isShiftedInt<4,7>(v); 528 return false; 529}]>; 530 531def s3_7ImmPred : PatLeaf<(i32 imm), [{ 532 int64_t v = (int64_t)N->getSExtValue(); 533 if (HST->hasV60TOps()) 534 // Return true if the immediate can fit in a 9-bit sign extended field and 535 // is 128-byte aligned. 536 return isShiftedInt<3,7>(v); 537 return false; 538}]>; 539 540def s4_6ImmPred : PatLeaf<(i32 imm), [{ 541 int64_t v = (int64_t)N->getSExtValue(); 542 if (HST->hasV60TOps()) 543 // Return true if the immediate can fit in a 10-bit sign extended field and 544 // is 64-byte aligned. 545 return isShiftedInt<4,6>(v); 546 return false; 547}]>; 548 549def s3_6ImmPred : PatLeaf<(i32 imm), [{ 550 int64_t v = (int64_t)N->getSExtValue(); 551 if (HST->hasV60TOps()) 552 // Return true if the immediate can fit in a 9-bit sign extended field and 553 // is 64-byte aligned. 554 return isShiftedInt<3,6>(v); 555 return false; 556}]>; 557 558 559// This complex pattern exists only to create a machine instruction operand 560// of type "frame index". There doesn't seem to be a way to do that directly 561// in the patterns. 562def AddrFI : ComplexPattern<i32, 1, "SelectAddrFI", [frameindex], []>; 563 564// These complex patterns are not strictly necessary, since global address 565// folding will happen during DAG combining. For distinguishing between GA 566// and GP, pat frags with HexagonCONST32 and HexagonCONST32_GP can be used. 567def AddrGA : ComplexPattern<i32, 1, "SelectAddrGA", [], []>; 568def AddrGP : ComplexPattern<i32, 1, "SelectAddrGP", [], []>; 569 570// Address operands. 571 572let PrintMethod = "printGlobalOperand" in { 573 def globaladdress : Operand<i32>; 574 def globaladdressExt : Operand<i32>; 575} 576 577let PrintMethod = "printJumpTable" in 578def jumptablebase : Operand<i32>; 579 580def brtarget : Operand<OtherVT> { 581 let DecoderMethod = "brtargetDecoder"; 582 let PrintMethod = "printBrtarget"; 583} 584def brtargetExt : Operand<OtherVT> { 585 let DecoderMethod = "brtargetDecoder"; 586 let PrintMethod = "printBrtarget"; 587} 588def calltarget : Operand<i32> { 589 let DecoderMethod = "brtargetDecoder"; 590 let PrintMethod = "printBrtarget"; 591} 592 593def bblabel : Operand<i32>; 594def bbl : SDNode<"ISD::BasicBlock", SDTPtrLeaf, [], "BasicBlockSDNode">; 595 596// Return true if for a 32 to 64-bit sign-extended load. 597def is_sext_i32 : PatLeaf<(i64 DoubleRegs:$src1), [{ 598 LoadSDNode *LD = dyn_cast<LoadSDNode>(N); 599 if (!LD) 600 return false; 601 return LD->getExtensionType() == ISD::SEXTLOAD && 602 LD->getMemoryVT().getScalarType() == MVT::i32; 603}]>; 604