1 //===- CodeGenTarget.cpp - CodeGen Target Class Wrapper ---------*- C++ -*-===// 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 //===----------------------------------------------------------------------===// 9 // 10 // This class wrap target description classes used by the various code 11 // generation TableGen backends. This makes it easier to access the data and 12 // provides a single place that needs to check it for validity. All of these 13 // classes throw exceptions on error conditions. 14 // 15 //===----------------------------------------------------------------------===// 16 17 #include "CodeGenTarget.h" 18 #include "CodeGenIntrinsics.h" 19 #include "Record.h" 20 #include "llvm/ADT/StringExtras.h" 21 #include "llvm/Support/CommandLine.h" 22 #include "llvm/Support/Streams.h" 23 #include <set> 24 #include <algorithm> 25 using namespace llvm; 26 27 static cl::opt<unsigned> 28 AsmWriterNum("asmwriternum", cl::init(0), 29 cl::desc("Make -gen-asm-writer emit assembly writer #N")); 30 31 /// getValueType - Return the MCV::ValueType that the specified TableGen record 32 /// corresponds to. 33 MVT::ValueType llvm::getValueType(Record *Rec) { 34 return (MVT::ValueType)Rec->getValueAsInt("Value"); 35 } 36 37 std::string llvm::getName(MVT::ValueType T) { 38 switch (T) { 39 case MVT::Other: return "UNKNOWN"; 40 case MVT::i1: return "MVT::i1"; 41 case MVT::i8: return "MVT::i8"; 42 case MVT::i16: return "MVT::i16"; 43 case MVT::i32: return "MVT::i32"; 44 case MVT::i64: return "MVT::i64"; 45 case MVT::i128: return "MVT::i128"; 46 case MVT::iAny: return "MVT::iAny"; 47 case MVT::fAny: return "MVT::fAny"; 48 case MVT::f32: return "MVT::f32"; 49 case MVT::f64: return "MVT::f64"; 50 case MVT::f80: return "MVT::f80"; 51 case MVT::f128: return "MVT::f128"; 52 case MVT::ppcf128: return "MVT::ppcf128"; 53 case MVT::Flag: return "MVT::Flag"; 54 case MVT::isVoid:return "MVT::void"; 55 case MVT::v8i8: return "MVT::v8i8"; 56 case MVT::v4i16: return "MVT::v4i16"; 57 case MVT::v2i32: return "MVT::v2i32"; 58 case MVT::v1i64: return "MVT::v1i64"; 59 case MVT::v16i8: return "MVT::v16i8"; 60 case MVT::v8i16: return "MVT::v8i16"; 61 case MVT::v4i32: return "MVT::v4i32"; 62 case MVT::v2i64: return "MVT::v2i64"; 63 case MVT::v2f32: return "MVT::v2f32"; 64 case MVT::v4f32: return "MVT::v4f32"; 65 case MVT::v2f64: return "MVT::v2f64"; 66 case MVT::v3i32: return "MVT::v3i32"; 67 case MVT::v3f32: return "MVT::v3f32"; 68 case MVT::iPTR: return "TLI.getPointerTy()"; 69 default: assert(0 && "ILLEGAL VALUE TYPE!"); return ""; 70 } 71 } 72 73 std::string llvm::getEnumName(MVT::ValueType T) { 74 switch (T) { 75 case MVT::Other: return "MVT::Other"; 76 case MVT::i1: return "MVT::i1"; 77 case MVT::i8: return "MVT::i8"; 78 case MVT::i16: return "MVT::i16"; 79 case MVT::i32: return "MVT::i32"; 80 case MVT::i64: return "MVT::i64"; 81 case MVT::i128: return "MVT::i128"; 82 case MVT::iAny: return "MVT::iAny"; 83 case MVT::fAny: return "MVT::fAny"; 84 case MVT::f32: return "MVT::f32"; 85 case MVT::f64: return "MVT::f64"; 86 case MVT::f80: return "MVT::f80"; 87 case MVT::f128: return "MVT::f128"; 88 case MVT::ppcf128: return "MVT::ppcf128"; 89 case MVT::Flag: return "MVT::Flag"; 90 case MVT::isVoid:return "MVT::isVoid"; 91 case MVT::v8i8: return "MVT::v8i8"; 92 case MVT::v4i16: return "MVT::v4i16"; 93 case MVT::v2i32: return "MVT::v2i32"; 94 case MVT::v1i64: return "MVT::v1i64"; 95 case MVT::v16i8: return "MVT::v16i8"; 96 case MVT::v8i16: return "MVT::v8i16"; 97 case MVT::v4i32: return "MVT::v4i32"; 98 case MVT::v2i64: return "MVT::v2i64"; 99 case MVT::v2f32: return "MVT::v2f32"; 100 case MVT::v4f32: return "MVT::v4f32"; 101 case MVT::v2f64: return "MVT::v2f64"; 102 case MVT::v3i32: return "MVT::v3i32"; 103 case MVT::v3f32: return "MVT::v3f32"; 104 case MVT::iPTR: return "MVT::iPTR"; 105 default: assert(0 && "ILLEGAL VALUE TYPE!"); return ""; 106 } 107 } 108 109 110 /// getTarget - Return the current instance of the Target class. 111 /// 112 CodeGenTarget::CodeGenTarget() { 113 std::vector<Record*> Targets = Records.getAllDerivedDefinitions("Target"); 114 if (Targets.size() == 0) 115 throw std::string("ERROR: No 'Target' subclasses defined!"); 116 if (Targets.size() != 1) 117 throw std::string("ERROR: Multiple subclasses of Target defined!"); 118 TargetRec = Targets[0]; 119 } 120 121 122 const std::string &CodeGenTarget::getName() const { 123 return TargetRec->getName(); 124 } 125 126 Record *CodeGenTarget::getInstructionSet() const { 127 return TargetRec->getValueAsDef("InstructionSet"); 128 } 129 130 /// getAsmWriter - Return the AssemblyWriter definition for this target. 131 /// 132 Record *CodeGenTarget::getAsmWriter() const { 133 std::vector<Record*> LI = TargetRec->getValueAsListOfDefs("AssemblyWriters"); 134 if (AsmWriterNum >= LI.size()) 135 throw "Target does not have an AsmWriter #" + utostr(AsmWriterNum) + "!"; 136 return LI[AsmWriterNum]; 137 } 138 139 void CodeGenTarget::ReadRegisters() const { 140 std::vector<Record*> Regs = Records.getAllDerivedDefinitions("Register"); 141 if (Regs.empty()) 142 throw std::string("No 'Register' subclasses defined!"); 143 144 Registers.reserve(Regs.size()); 145 Registers.assign(Regs.begin(), Regs.end()); 146 } 147 148 CodeGenRegister::CodeGenRegister(Record *R) : TheDef(R) { 149 DeclaredSpillSize = R->getValueAsInt("SpillSize"); 150 DeclaredSpillAlignment = R->getValueAsInt("SpillAlignment"); 151 } 152 153 const std::string &CodeGenRegister::getName() const { 154 return TheDef->getName(); 155 } 156 157 void CodeGenTarget::ReadRegisterClasses() const { 158 std::vector<Record*> RegClasses = 159 Records.getAllDerivedDefinitions("RegisterClass"); 160 if (RegClasses.empty()) 161 throw std::string("No 'RegisterClass' subclasses defined!"); 162 163 RegisterClasses.reserve(RegClasses.size()); 164 RegisterClasses.assign(RegClasses.begin(), RegClasses.end()); 165 } 166 167 std::vector<unsigned char> CodeGenTarget::getRegisterVTs(Record *R) const { 168 std::vector<unsigned char> Result; 169 const std::vector<CodeGenRegisterClass> &RCs = getRegisterClasses(); 170 for (unsigned i = 0, e = RCs.size(); i != e; ++i) { 171 const CodeGenRegisterClass &RC = RegisterClasses[i]; 172 for (unsigned ei = 0, ee = RC.Elements.size(); ei != ee; ++ei) { 173 if (R == RC.Elements[ei]) { 174 const std::vector<MVT::ValueType> &InVTs = RC.getValueTypes(); 175 for (unsigned i = 0, e = InVTs.size(); i != e; ++i) 176 Result.push_back(InVTs[i]); 177 } 178 } 179 } 180 return Result; 181 } 182 183 184 CodeGenRegisterClass::CodeGenRegisterClass(Record *R) : TheDef(R) { 185 // Rename anonymous register classes. 186 if (R->getName().size() > 9 && R->getName()[9] == '.') { 187 static unsigned AnonCounter = 0; 188 R->setName("AnonRegClass_"+utostr(AnonCounter++)); 189 } 190 191 std::vector<Record*> TypeList = R->getValueAsListOfDefs("RegTypes"); 192 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) { 193 Record *Type = TypeList[i]; 194 if (!Type->isSubClassOf("ValueType")) 195 throw "RegTypes list member '" + Type->getName() + 196 "' does not derive from the ValueType class!"; 197 VTs.push_back(getValueType(Type)); 198 } 199 assert(!VTs.empty() && "RegisterClass must contain at least one ValueType!"); 200 201 std::vector<Record*> RegList = R->getValueAsListOfDefs("MemberList"); 202 for (unsigned i = 0, e = RegList.size(); i != e; ++i) { 203 Record *Reg = RegList[i]; 204 if (!Reg->isSubClassOf("Register")) 205 throw "Register Class member '" + Reg->getName() + 206 "' does not derive from the Register class!"; 207 Elements.push_back(Reg); 208 } 209 210 std::vector<Record*> SubRegClassList = 211 R->getValueAsListOfDefs("SubRegClassList"); 212 for (unsigned i = 0, e = SubRegClassList.size(); i != e; ++i) { 213 Record *SubRegClass = SubRegClassList[i]; 214 if (!SubRegClass->isSubClassOf("RegisterClass")) 215 throw "Register Class member '" + SubRegClass->getName() + 216 "' does not derive from the RegisterClass class!"; 217 SubRegClasses.push_back(SubRegClass); 218 } 219 220 // Allow targets to override the size in bits of the RegisterClass. 221 unsigned Size = R->getValueAsInt("Size"); 222 223 Namespace = R->getValueAsString("Namespace"); 224 SpillSize = Size ? Size : MVT::getSizeInBits(VTs[0]); 225 SpillAlignment = R->getValueAsInt("Alignment"); 226 CopyCost = R->getValueAsInt("CopyCost"); 227 MethodBodies = R->getValueAsCode("MethodBodies"); 228 MethodProtos = R->getValueAsCode("MethodProtos"); 229 } 230 231 const std::string &CodeGenRegisterClass::getName() const { 232 return TheDef->getName(); 233 } 234 235 void CodeGenTarget::ReadLegalValueTypes() const { 236 const std::vector<CodeGenRegisterClass> &RCs = getRegisterClasses(); 237 for (unsigned i = 0, e = RCs.size(); i != e; ++i) 238 for (unsigned ri = 0, re = RCs[i].VTs.size(); ri != re; ++ri) 239 LegalValueTypes.push_back(RCs[i].VTs[ri]); 240 241 // Remove duplicates. 242 std::sort(LegalValueTypes.begin(), LegalValueTypes.end()); 243 LegalValueTypes.erase(std::unique(LegalValueTypes.begin(), 244 LegalValueTypes.end()), 245 LegalValueTypes.end()); 246 } 247 248 249 void CodeGenTarget::ReadInstructions() const { 250 std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction"); 251 if (Insts.size() <= 2) 252 throw std::string("No 'Instruction' subclasses defined!"); 253 254 // Parse the instructions defined in the .td file. 255 std::string InstFormatName = 256 getAsmWriter()->getValueAsString("InstFormatName"); 257 258 for (unsigned i = 0, e = Insts.size(); i != e; ++i) { 259 std::string AsmStr = Insts[i]->getValueAsString(InstFormatName); 260 Instructions.insert(std::make_pair(Insts[i]->getName(), 261 CodeGenInstruction(Insts[i], AsmStr))); 262 } 263 } 264 265 /// getInstructionsByEnumValue - Return all of the instructions defined by the 266 /// target, ordered by their enum value. 267 void CodeGenTarget:: 268 getInstructionsByEnumValue(std::vector<const CodeGenInstruction*> 269 &NumberedInstructions) { 270 std::map<std::string, CodeGenInstruction>::const_iterator I; 271 I = getInstructions().find("PHI"); 272 if (I == Instructions.end()) throw "Could not find 'PHI' instruction!"; 273 const CodeGenInstruction *PHI = &I->second; 274 275 I = getInstructions().find("INLINEASM"); 276 if (I == Instructions.end()) throw "Could not find 'INLINEASM' instruction!"; 277 const CodeGenInstruction *INLINEASM = &I->second; 278 279 I = getInstructions().find("LABEL"); 280 if (I == Instructions.end()) throw "Could not find 'LABEL' instruction!"; 281 const CodeGenInstruction *LABEL = &I->second; 282 283 I = getInstructions().find("EXTRACT_SUBREG"); 284 if (I == Instructions.end()) 285 throw "Could not find 'EXTRACT_SUBREG' instruction!"; 286 const CodeGenInstruction *EXTRACT_SUBREG = &I->second; 287 288 I = getInstructions().find("INSERT_SUBREG"); 289 if (I == Instructions.end()) 290 throw "Could not find 'INSERT_SUBREG' instruction!"; 291 const CodeGenInstruction *INSERT_SUBREG = &I->second; 292 293 // Print out the rest of the instructions now. 294 NumberedInstructions.push_back(PHI); 295 NumberedInstructions.push_back(INLINEASM); 296 NumberedInstructions.push_back(LABEL); 297 NumberedInstructions.push_back(EXTRACT_SUBREG); 298 NumberedInstructions.push_back(INSERT_SUBREG); 299 for (inst_iterator II = inst_begin(), E = inst_end(); II != E; ++II) 300 if (&II->second != PHI && 301 &II->second != INLINEASM && 302 &II->second != LABEL && 303 &II->second != EXTRACT_SUBREG && 304 &II->second != INSERT_SUBREG) 305 NumberedInstructions.push_back(&II->second); 306 } 307 308 309 /// isLittleEndianEncoding - Return whether this target encodes its instruction 310 /// in little-endian format, i.e. bits laid out in the order [0..n] 311 /// 312 bool CodeGenTarget::isLittleEndianEncoding() const { 313 return getInstructionSet()->getValueAsBit("isLittleEndianEncoding"); 314 } 315 316 317 318 static void ParseConstraint(const std::string &CStr, CodeGenInstruction *I) { 319 // FIXME: Only supports TIED_TO for now. 320 std::string::size_type pos = CStr.find_first_of('='); 321 assert(pos != std::string::npos && "Unrecognized constraint"); 322 std::string Name = CStr.substr(0, pos); 323 324 // TIED_TO: $src1 = $dst 325 std::string::size_type wpos = Name.find_first_of(" \t"); 326 if (wpos == std::string::npos) 327 throw "Illegal format for tied-to constraint: '" + CStr + "'"; 328 std::string DestOpName = Name.substr(0, wpos); 329 std::pair<unsigned,unsigned> DestOp = I->ParseOperandName(DestOpName, false); 330 331 Name = CStr.substr(pos+1); 332 wpos = Name.find_first_not_of(" \t"); 333 if (wpos == std::string::npos) 334 throw "Illegal format for tied-to constraint: '" + CStr + "'"; 335 336 std::pair<unsigned,unsigned> SrcOp = 337 I->ParseOperandName(Name.substr(wpos), false); 338 if (SrcOp > DestOp) 339 throw "Illegal tied-to operand constraint '" + CStr + "'"; 340 341 342 unsigned FlatOpNo = I->getFlattenedOperandNumber(SrcOp); 343 // Build the string for the operand. 344 std::string OpConstraint = 345 "((" + utostr(FlatOpNo) + " << 16) | (1 << TOI::TIED_TO))"; 346 347 348 if (!I->OperandList[DestOp.first].Constraints[DestOp.second].empty()) 349 throw "Operand '" + DestOpName + "' cannot have multiple constraints!"; 350 I->OperandList[DestOp.first].Constraints[DestOp.second] = OpConstraint; 351 } 352 353 static void ParseConstraints(const std::string &CStr, CodeGenInstruction *I) { 354 // Make sure the constraints list for each operand is large enough to hold 355 // constraint info, even if none is present. 356 for (unsigned i = 0, e = I->OperandList.size(); i != e; ++i) 357 I->OperandList[i].Constraints.resize(I->OperandList[i].MINumOperands); 358 359 if (CStr.empty()) return; 360 361 const std::string delims(","); 362 std::string::size_type bidx, eidx; 363 364 bidx = CStr.find_first_not_of(delims); 365 while (bidx != std::string::npos) { 366 eidx = CStr.find_first_of(delims, bidx); 367 if (eidx == std::string::npos) 368 eidx = CStr.length(); 369 370 ParseConstraint(CStr.substr(bidx, eidx), I); 371 bidx = CStr.find_first_not_of(delims, eidx); 372 } 373 } 374 375 CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr) 376 : TheDef(R), AsmString(AsmStr) { 377 Name = R->getValueAsString("Name"); 378 Namespace = R->getValueAsString("Namespace"); 379 380 isReturn = R->getValueAsBit("isReturn"); 381 isBranch = R->getValueAsBit("isBranch"); 382 isIndirectBranch = R->getValueAsBit("isIndirectBranch"); 383 isBarrier = R->getValueAsBit("isBarrier"); 384 isCall = R->getValueAsBit("isCall"); 385 isLoad = R->getValueAsBit("isLoad"); 386 isStore = R->getValueAsBit("isStore"); 387 isImplicitDef= R->getValueAsBit("isImplicitDef"); 388 bool isTwoAddress = R->getValueAsBit("isTwoAddress"); 389 isPredicable = R->getValueAsBit("isPredicable"); 390 isConvertibleToThreeAddress = R->getValueAsBit("isConvertibleToThreeAddress"); 391 isCommutable = R->getValueAsBit("isCommutable"); 392 isTerminator = R->getValueAsBit("isTerminator"); 393 isReMaterializable = R->getValueAsBit("isReMaterializable"); 394 hasDelaySlot = R->getValueAsBit("hasDelaySlot"); 395 usesCustomDAGSchedInserter = R->getValueAsBit("usesCustomDAGSchedInserter"); 396 hasCtrlDep = R->getValueAsBit("hasCtrlDep"); 397 isNotDuplicable = R->getValueAsBit("isNotDuplicable"); 398 hasOptionalDef = false; 399 hasVariableNumberOfOperands = false; 400 401 DagInit *DI; 402 try { 403 DI = R->getValueAsDag("OutOperandList"); 404 } catch (...) { 405 // Error getting operand list, just ignore it (sparcv9). 406 AsmString.clear(); 407 OperandList.clear(); 408 return; 409 } 410 NumDefs = DI->getNumArgs(); 411 412 DagInit *IDI; 413 try { 414 IDI = R->getValueAsDag("InOperandList"); 415 } catch (...) { 416 // Error getting operand list, just ignore it (sparcv9). 417 AsmString.clear(); 418 OperandList.clear(); 419 return; 420 } 421 DI = (DagInit*)(new BinOpInit(BinOpInit::CONCAT, DI, IDI))->Fold(); 422 423 unsigned MIOperandNo = 0; 424 std::set<std::string> OperandNames; 425 for (unsigned i = 0, e = DI->getNumArgs(); i != e; ++i) { 426 DefInit *Arg = dynamic_cast<DefInit*>(DI->getArg(i)); 427 if (!Arg) 428 throw "Illegal operand for the '" + R->getName() + "' instruction!"; 429 430 Record *Rec = Arg->getDef(); 431 std::string PrintMethod = "printOperand"; 432 unsigned NumOps = 1; 433 DagInit *MIOpInfo = 0; 434 if (Rec->isSubClassOf("Operand")) { 435 PrintMethod = Rec->getValueAsString("PrintMethod"); 436 MIOpInfo = Rec->getValueAsDag("MIOperandInfo"); 437 438 // Verify that MIOpInfo has an 'ops' root value. 439 if (!dynamic_cast<DefInit*>(MIOpInfo->getOperator()) || 440 dynamic_cast<DefInit*>(MIOpInfo->getOperator()) 441 ->getDef()->getName() != "ops") 442 throw "Bad value for MIOperandInfo in operand '" + Rec->getName() + 443 "'\n"; 444 445 // If we have MIOpInfo, then we have #operands equal to number of entries 446 // in MIOperandInfo. 447 if (unsigned NumArgs = MIOpInfo->getNumArgs()) 448 NumOps = NumArgs; 449 450 if (Rec->isSubClassOf("PredicateOperand")) 451 isPredicable = true; 452 else if (Rec->isSubClassOf("OptionalDefOperand")) 453 hasOptionalDef = true; 454 } else if (Rec->getName() == "variable_ops") { 455 hasVariableNumberOfOperands = true; 456 continue; 457 } else if (!Rec->isSubClassOf("RegisterClass") && 458 Rec->getName() != "ptr_rc") 459 throw "Unknown operand class '" + Rec->getName() + 460 "' in instruction '" + R->getName() + "' instruction!"; 461 462 // Check that the operand has a name and that it's unique. 463 if (DI->getArgName(i).empty()) 464 throw "In instruction '" + R->getName() + "', operand #" + utostr(i) + 465 " has no name!"; 466 if (!OperandNames.insert(DI->getArgName(i)).second) 467 throw "In instruction '" + R->getName() + "', operand #" + utostr(i) + 468 " has the same name as a previous operand!"; 469 470 OperandList.push_back(OperandInfo(Rec, DI->getArgName(i), PrintMethod, 471 MIOperandNo, NumOps, MIOpInfo)); 472 MIOperandNo += NumOps; 473 } 474 475 // Parse Constraints. 476 ParseConstraints(R->getValueAsString("Constraints"), this); 477 478 // For backward compatibility: isTwoAddress means operand 1 is tied to 479 // operand 0. 480 if (isTwoAddress) { 481 if (!OperandList[1].Constraints[0].empty()) 482 throw R->getName() + ": cannot use isTwoAddress property: instruction " 483 "already has constraint set!"; 484 OperandList[1].Constraints[0] = "((0 << 16) | (1 << TOI::TIED_TO))"; 485 } 486 487 // Any operands with unset constraints get 0 as their constraint. 488 for (unsigned op = 0, e = OperandList.size(); op != e; ++op) 489 for (unsigned j = 0, e = OperandList[op].MINumOperands; j != e; ++j) 490 if (OperandList[op].Constraints[j].empty()) 491 OperandList[op].Constraints[j] = "0"; 492 493 // Parse the DisableEncoding field. 494 std::string DisableEncoding = R->getValueAsString("DisableEncoding"); 495 while (1) { 496 std::string OpName = getToken(DisableEncoding, " ,\t"); 497 if (OpName.empty()) break; 498 499 // Figure out which operand this is. 500 std::pair<unsigned,unsigned> Op = ParseOperandName(OpName, false); 501 502 // Mark the operand as not-to-be encoded. 503 if (Op.second >= OperandList[Op.first].DoNotEncode.size()) 504 OperandList[Op.first].DoNotEncode.resize(Op.second+1); 505 OperandList[Op.first].DoNotEncode[Op.second] = true; 506 } 507 } 508 509 510 511 /// getOperandNamed - Return the index of the operand with the specified 512 /// non-empty name. If the instruction does not have an operand with the 513 /// specified name, throw an exception. 514 /// 515 unsigned CodeGenInstruction::getOperandNamed(const std::string &Name) const { 516 assert(!Name.empty() && "Cannot search for operand with no name!"); 517 for (unsigned i = 0, e = OperandList.size(); i != e; ++i) 518 if (OperandList[i].Name == Name) return i; 519 throw "Instruction '" + TheDef->getName() + 520 "' does not have an operand named '$" + Name + "'!"; 521 } 522 523 std::pair<unsigned,unsigned> 524 CodeGenInstruction::ParseOperandName(const std::string &Op, 525 bool AllowWholeOp) { 526 if (Op.empty() || Op[0] != '$') 527 throw TheDef->getName() + ": Illegal operand name: '" + Op + "'"; 528 529 std::string OpName = Op.substr(1); 530 std::string SubOpName; 531 532 // Check to see if this is $foo.bar. 533 std::string::size_type DotIdx = OpName.find_first_of("."); 534 if (DotIdx != std::string::npos) { 535 SubOpName = OpName.substr(DotIdx+1); 536 if (SubOpName.empty()) 537 throw TheDef->getName() + ": illegal empty suboperand name in '" +Op +"'"; 538 OpName = OpName.substr(0, DotIdx); 539 } 540 541 unsigned OpIdx = getOperandNamed(OpName); 542 543 if (SubOpName.empty()) { // If no suboperand name was specified: 544 // If one was needed, throw. 545 if (OperandList[OpIdx].MINumOperands > 1 && !AllowWholeOp && 546 SubOpName.empty()) 547 throw TheDef->getName() + ": Illegal to refer to" 548 " whole operand part of complex operand '" + Op + "'"; 549 550 // Otherwise, return the operand. 551 return std::make_pair(OpIdx, 0U); 552 } 553 554 // Find the suboperand number involved. 555 DagInit *MIOpInfo = OperandList[OpIdx].MIOperandInfo; 556 if (MIOpInfo == 0) 557 throw TheDef->getName() + ": unknown suboperand name in '" + Op + "'"; 558 559 // Find the operand with the right name. 560 for (unsigned i = 0, e = MIOpInfo->getNumArgs(); i != e; ++i) 561 if (MIOpInfo->getArgName(i) == SubOpName) 562 return std::make_pair(OpIdx, i); 563 564 // Otherwise, didn't find it! 565 throw TheDef->getName() + ": unknown suboperand name in '" + Op + "'"; 566 } 567 568 569 570 571 //===----------------------------------------------------------------------===// 572 // ComplexPattern implementation 573 // 574 ComplexPattern::ComplexPattern(Record *R) { 575 Ty = ::getValueType(R->getValueAsDef("Ty")); 576 NumOperands = R->getValueAsInt("NumOperands"); 577 SelectFunc = R->getValueAsString("SelectFunc"); 578 RootNodes = R->getValueAsListOfDefs("RootNodes"); 579 580 // Parse the properties. 581 Properties = 0; 582 std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties"); 583 for (unsigned i = 0, e = PropList.size(); i != e; ++i) 584 if (PropList[i]->getName() == "SDNPHasChain") { 585 Properties |= 1 << SDNPHasChain; 586 } else if (PropList[i]->getName() == "SDNPOptInFlag") { 587 Properties |= 1 << SDNPOptInFlag; 588 } else { 589 cerr << "Unsupported SD Node property '" << PropList[i]->getName() 590 << "' on ComplexPattern '" << R->getName() << "'!\n"; 591 exit(1); 592 } 593 } 594 595 //===----------------------------------------------------------------------===// 596 // CodeGenIntrinsic Implementation 597 //===----------------------------------------------------------------------===// 598 599 std::vector<CodeGenIntrinsic> llvm::LoadIntrinsics(const RecordKeeper &RC) { 600 std::vector<Record*> I = RC.getAllDerivedDefinitions("Intrinsic"); 601 602 std::vector<CodeGenIntrinsic> Result; 603 604 // If we are in the context of a target .td file, get the target info so that 605 // we can decode the current intptr_t. 606 CodeGenTarget *CGT = 0; 607 if (Records.getClass("Target") && 608 Records.getAllDerivedDefinitions("Target").size() == 1) 609 CGT = new CodeGenTarget(); 610 611 for (unsigned i = 0, e = I.size(); i != e; ++i) 612 Result.push_back(CodeGenIntrinsic(I[i], CGT)); 613 delete CGT; 614 return Result; 615 } 616 617 CodeGenIntrinsic::CodeGenIntrinsic(Record *R, CodeGenTarget *CGT) { 618 TheDef = R; 619 std::string DefName = R->getName(); 620 ModRef = WriteMem; 621 isOverloaded = false; 622 623 if (DefName.size() <= 4 || 624 std::string(DefName.begin(), DefName.begin()+4) != "int_") 625 throw "Intrinsic '" + DefName + "' does not start with 'int_'!"; 626 EnumName = std::string(DefName.begin()+4, DefName.end()); 627 if (R->getValue("GCCBuiltinName")) // Ignore a missing GCCBuiltinName field. 628 GCCBuiltinName = R->getValueAsString("GCCBuiltinName"); 629 TargetPrefix = R->getValueAsString("TargetPrefix"); 630 Name = R->getValueAsString("LLVMName"); 631 if (Name == "") { 632 // If an explicit name isn't specified, derive one from the DefName. 633 Name = "llvm."; 634 for (unsigned i = 0, e = EnumName.size(); i != e; ++i) 635 if (EnumName[i] == '_') 636 Name += '.'; 637 else 638 Name += EnumName[i]; 639 } else { 640 // Verify it starts with "llvm.". 641 if (Name.size() <= 5 || 642 std::string(Name.begin(), Name.begin()+5) != "llvm.") 643 throw "Intrinsic '" + DefName + "'s name does not start with 'llvm.'!"; 644 } 645 646 // If TargetPrefix is specified, make sure that Name starts with 647 // "llvm.<targetprefix>.". 648 if (!TargetPrefix.empty()) { 649 if (Name.size() < 6+TargetPrefix.size() || 650 std::string(Name.begin()+5, Name.begin()+6+TargetPrefix.size()) 651 != (TargetPrefix+".")) 652 throw "Intrinsic '" + DefName + "' does not start with 'llvm." + 653 TargetPrefix + ".'!"; 654 } 655 656 // Parse the list of argument types. 657 ListInit *TypeList = R->getValueAsListInit("Types"); 658 for (unsigned i = 0, e = TypeList->getSize(); i != e; ++i) { 659 Record *TyEl = TypeList->getElementAsRecord(i); 660 assert(TyEl->isSubClassOf("LLVMType") && "Expected a type!"); 661 MVT::ValueType VT = getValueType(TyEl->getValueAsDef("VT")); 662 isOverloaded |= VT == MVT::iAny || VT == MVT::fAny; 663 ArgVTs.push_back(VT); 664 ArgTypeDefs.push_back(TyEl); 665 } 666 if (ArgVTs.size() == 0) 667 throw "Intrinsic '"+DefName+"' needs at least a type for the ret value!"; 668 669 670 // Parse the intrinsic properties. 671 ListInit *PropList = R->getValueAsListInit("Properties"); 672 for (unsigned i = 0, e = PropList->getSize(); i != e; ++i) { 673 Record *Property = PropList->getElementAsRecord(i); 674 assert(Property->isSubClassOf("IntrinsicProperty") && 675 "Expected a property!"); 676 677 if (Property->getName() == "IntrNoMem") 678 ModRef = NoMem; 679 else if (Property->getName() == "IntrReadArgMem") 680 ModRef = ReadArgMem; 681 else if (Property->getName() == "IntrReadMem") 682 ModRef = ReadMem; 683 else if (Property->getName() == "IntrWriteArgMem") 684 ModRef = WriteArgMem; 685 else if (Property->getName() == "IntrWriteMem") 686 ModRef = WriteMem; 687 else 688 assert(0 && "Unknown property!"); 689 } 690 } 691