1 //===- FastISelEmitter.cpp - Generate an instruction selector -------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This tablegen backend emits code for use by the "fast" instruction
11 // selection algorithm. See the comments at the top of
12 // lib/CodeGen/SelectionDAG/FastISel.cpp for background.
14 // This file scans through the target's tablegen instruction-info files
15 // and extracts instructions with obvious-looking patterns, and it emits
16 // code to look up these instructions by type and operator.
18 //===----------------------------------------------------------------------===//
20 #include "FastISelEmitter.h"
22 #include "llvm/Support/Debug.h"
23 #include "llvm/ADT/SmallString.h"
24 #include "llvm/ADT/VectorExtras.h"
29 /// InstructionMemo - This class holds additional information about an
30 /// instruction needed to emit code for it.
32 struct InstructionMemo
{
34 const CodeGenRegisterClass
*RC
;
36 std::vector
<std::string
>* PhysRegs
;
39 /// ImmPredicateSet - This uniques predicates (represented as a string) and
40 /// gives them unique (small) integer ID's that start at 0.
41 class ImmPredicateSet
{
42 DenseMap
<TreePattern
*, unsigned> ImmIDs
;
43 std::vector
<TreePredicateFn
> PredsByName
;
46 unsigned getIDFor(TreePredicateFn Pred
) {
47 unsigned &Entry
= ImmIDs
[Pred
.getOrigPatFragRecord()];
49 PredsByName
.push_back(Pred
);
50 Entry
= PredsByName
.size();
55 const TreePredicateFn
&getPredicate(unsigned i
) {
56 assert(i
< PredsByName
.size());
57 return PredsByName
[i
];
60 typedef std::vector
<TreePredicateFn
>::const_iterator iterator
;
61 iterator
begin() const { return PredsByName
.begin(); }
62 iterator
end() const { return PredsByName
.end(); }
66 /// OperandsSignature - This class holds a description of a list of operand
67 /// types. It has utility methods for emitting text based on the operands.
69 struct OperandsSignature
{
71 enum { OK_Reg
, OK_FP
, OK_Imm
, OK_Invalid
= -1 };
75 OpKind() : Repr(OK_Invalid
) {}
77 bool operator<(OpKind RHS
) const { return Repr
< RHS
.Repr
; }
78 bool operator==(OpKind RHS
) const { return Repr
== RHS
.Repr
; }
80 static OpKind
getReg() { OpKind K
; K
.Repr
= OK_Reg
; return K
; }
81 static OpKind
getFP() { OpKind K
; K
.Repr
= OK_FP
; return K
; }
82 static OpKind
getImm(unsigned V
) {
83 assert((unsigned)OK_Imm
+V
< 128 &&
84 "Too many integer predicates for the 'Repr' char");
85 OpKind K
; K
.Repr
= OK_Imm
+V
; return K
;
88 bool isReg() const { return Repr
== OK_Reg
; }
89 bool isFP() const { return Repr
== OK_FP
; }
90 bool isImm() const { return Repr
>= OK_Imm
; }
92 unsigned getImmCode() const { assert(isImm()); return Repr
-OK_Imm
; }
94 void printManglingSuffix(raw_ostream
&OS
, ImmPredicateSet
&ImmPredicates
,
95 bool StripImmCodes
) const {
103 if (unsigned Code
= getImmCode())
104 OS
<< "_" << ImmPredicates
.getPredicate(Code
-1).getFnName();
110 SmallVector
<OpKind
, 3> Operands
;
112 bool operator<(const OperandsSignature
&O
) const {
113 return Operands
< O
.Operands
;
115 bool operator==(const OperandsSignature
&O
) const {
116 return Operands
== O
.Operands
;
119 bool empty() const { return Operands
.empty(); }
121 bool hasAnyImmediateCodes() const {
122 for (unsigned i
= 0, e
= Operands
.size(); i
!= e
; ++i
)
123 if (Operands
[i
].isImm() && Operands
[i
].getImmCode() != 0)
128 /// getWithoutImmCodes - Return a copy of this with any immediate codes forced
130 OperandsSignature
getWithoutImmCodes() const {
131 OperandsSignature Result
;
132 for (unsigned i
= 0, e
= Operands
.size(); i
!= e
; ++i
)
133 if (!Operands
[i
].isImm())
134 Result
.Operands
.push_back(Operands
[i
]);
136 Result
.Operands
.push_back(OpKind::getImm(0));
140 void emitImmediatePredicate(raw_ostream
&OS
, ImmPredicateSet
&ImmPredicates
) {
141 bool EmittedAnything
= false;
142 for (unsigned i
= 0, e
= Operands
.size(); i
!= e
; ++i
) {
143 if (!Operands
[i
].isImm()) continue;
145 unsigned Code
= Operands
[i
].getImmCode();
146 if (Code
== 0) continue;
151 TreePredicateFn PredFn
= ImmPredicates
.getPredicate(Code
-1);
153 // Emit the type check.
155 << getEnumName(PredFn
.getOrigPatFragRecord()->getTree(0)->getType(0))
159 OS
<< PredFn
.getFnName() << "(imm" << i
<<')';
160 EmittedAnything
= true;
164 /// initialize - Examine the given pattern and initialize the contents
165 /// of the Operands array accordingly. Return true if all the operands
166 /// are supported, false otherwise.
168 bool initialize(TreePatternNode
*InstPatNode
, const CodeGenTarget
&Target
,
169 MVT::SimpleValueType VT
,
170 ImmPredicateSet
&ImmediatePredicates
) {
171 if (InstPatNode
->isLeaf())
174 if (InstPatNode
->getOperator()->getName() == "imm") {
175 Operands
.push_back(OpKind::getImm(0));
179 if (InstPatNode
->getOperator()->getName() == "fpimm") {
180 Operands
.push_back(OpKind::getFP());
184 const CodeGenRegisterClass
*DstRC
= 0;
186 for (unsigned i
= 0, e
= InstPatNode
->getNumChildren(); i
!= e
; ++i
) {
187 TreePatternNode
*Op
= InstPatNode
->getChild(i
);
189 // Handle imm operands specially.
190 if (!Op
->isLeaf() && Op
->getOperator()->getName() == "imm") {
192 if (!Op
->getPredicateFns().empty()) {
193 TreePredicateFn PredFn
= Op
->getPredicateFns()[0];
194 // If there is more than one predicate weighing in on this operand
195 // then we don't handle it. This doesn't typically happen for
196 // immediates anyway.
197 if (Op
->getPredicateFns().size() > 1 ||
198 !PredFn
.isImmediatePattern())
200 // Ignore any instruction with 'FastIselShouldIgnore', these are
201 // not needed and just bloat the fast instruction selector. For
202 // example, X86 doesn't need to generate code to match ADD16ri8 since
203 // ADD16ri will do just fine.
204 Record
*Rec
= PredFn
.getOrigPatFragRecord()->getRecord();
205 if (Rec
->getValueAsBit("FastIselShouldIgnore"))
208 PredNo
= ImmediatePredicates
.getIDFor(PredFn
)+1;
211 // Handle unmatched immediate sizes here.
212 //if (Op->getType(0) != VT)
215 Operands
.push_back(OpKind::getImm(PredNo
));
220 // For now, filter out any operand with a predicate.
221 // For now, filter out any operand with multiple values.
222 if (!Op
->getPredicateFns().empty() || Op
->getNumTypes() != 1)
226 if (Op
->getOperator()->getName() == "fpimm") {
227 Operands
.push_back(OpKind::getFP());
230 // For now, ignore other non-leaf nodes.
234 assert(Op
->hasTypeSet(0) && "Type infererence not done?");
236 // For now, all the operands must have the same type (if they aren't
237 // immediates). Note that this causes us to reject variable sized shifts
239 if (Op
->getType(0) != VT
)
242 DefInit
*OpDI
= dynamic_cast<DefInit
*>(Op
->getLeafValue());
245 Record
*OpLeafRec
= OpDI
->getDef();
247 // For now, the only other thing we accept is register operands.
248 const CodeGenRegisterClass
*RC
= 0;
249 if (OpLeafRec
->isSubClassOf("RegisterClass"))
250 RC
= &Target
.getRegisterClass(OpLeafRec
);
251 else if (OpLeafRec
->isSubClassOf("Register"))
252 RC
= Target
.getRegisterClassForRegister(OpLeafRec
);
256 // For now, this needs to be a register class of some sort.
260 // For now, all the operands must have the same register class or be
261 // a strict subclass of the destination.
263 if (DstRC
!= RC
&& !DstRC
->hasSubClass(RC
))
267 Operands
.push_back(OpKind::getReg());
272 void PrintParameters(raw_ostream
&OS
) const {
273 for (unsigned i
= 0, e
= Operands
.size(); i
!= e
; ++i
) {
274 if (Operands
[i
].isReg()) {
275 OS
<< "unsigned Op" << i
<< ", bool Op" << i
<< "IsKill";
276 } else if (Operands
[i
].isImm()) {
277 OS
<< "uint64_t imm" << i
;
278 } else if (Operands
[i
].isFP()) {
279 OS
<< "ConstantFP *f" << i
;
281 assert("Unknown operand kind!");
289 void PrintArguments(raw_ostream
&OS
,
290 const std::vector
<std::string
> &PR
) const {
291 assert(PR
.size() == Operands
.size());
292 bool PrintedArg
= false;
293 for (unsigned i
= 0, e
= Operands
.size(); i
!= e
; ++i
) {
295 // Implicit physical register operand.
300 if (Operands
[i
].isReg()) {
301 OS
<< "Op" << i
<< ", Op" << i
<< "IsKill";
303 } else if (Operands
[i
].isImm()) {
306 } else if (Operands
[i
].isFP()) {
310 assert("Unknown operand kind!");
316 void PrintArguments(raw_ostream
&OS
) const {
317 for (unsigned i
= 0, e
= Operands
.size(); i
!= e
; ++i
) {
318 if (Operands
[i
].isReg()) {
319 OS
<< "Op" << i
<< ", Op" << i
<< "IsKill";
320 } else if (Operands
[i
].isImm()) {
322 } else if (Operands
[i
].isFP()) {
325 assert("Unknown operand kind!");
334 void PrintManglingSuffix(raw_ostream
&OS
, const std::vector
<std::string
> &PR
,
335 ImmPredicateSet
&ImmPredicates
,
336 bool StripImmCodes
= false) const {
337 for (unsigned i
= 0, e
= Operands
.size(); i
!= e
; ++i
) {
339 // Implicit physical register operand. e.g. Instruction::Mul expect to
340 // select to a binary op. On x86, mul may take a single operand with
341 // the other operand being implicit. We must emit something that looks
342 // like a binary instruction except for the very inner FastEmitInst_*
345 Operands
[i
].printManglingSuffix(OS
, ImmPredicates
, StripImmCodes
);
349 void PrintManglingSuffix(raw_ostream
&OS
, ImmPredicateSet
&ImmPredicates
,
350 bool StripImmCodes
= false) const {
351 for (unsigned i
= 0, e
= Operands
.size(); i
!= e
; ++i
)
352 Operands
[i
].printManglingSuffix(OS
, ImmPredicates
, StripImmCodes
);
357 typedef std::map
<std::string
, InstructionMemo
> PredMap
;
358 typedef std::map
<MVT::SimpleValueType
, PredMap
> RetPredMap
;
359 typedef std::map
<MVT::SimpleValueType
, RetPredMap
> TypeRetPredMap
;
360 typedef std::map
<std::string
, TypeRetPredMap
> OpcodeTypeRetPredMap
;
361 typedef std::map
<OperandsSignature
, OpcodeTypeRetPredMap
>
362 OperandsOpcodeTypeRetPredMap
;
364 OperandsOpcodeTypeRetPredMap SimplePatterns
;
366 std::map
<OperandsSignature
, std::vector
<OperandsSignature
> >
367 SignaturesWithConstantForms
;
370 ImmPredicateSet ImmediatePredicates
;
372 explicit FastISelMap(std::string InstNS
);
374 void collectPatterns(CodeGenDAGPatterns
&CGP
);
375 void printImmediatePredicates(raw_ostream
&OS
);
376 void printFunctionDefinitions(raw_ostream
&OS
);
381 static std::string
getOpcodeName(Record
*Op
, CodeGenDAGPatterns
&CGP
) {
382 return CGP
.getSDNodeInfo(Op
).getEnumName();
385 static std::string
getLegalCName(std::string OpName
) {
386 std::string::size_type pos
= OpName
.find("::");
387 if (pos
!= std::string::npos
)
388 OpName
.replace(pos
, 2, "_");
392 FastISelMap::FastISelMap(std::string instns
)
396 static std::string
PhyRegForNode(TreePatternNode
*Op
,
397 const CodeGenTarget
&Target
) {
403 DefInit
*OpDI
= dynamic_cast<DefInit
*>(Op
->getLeafValue());
404 Record
*OpLeafRec
= OpDI
->getDef();
405 if (!OpLeafRec
->isSubClassOf("Register"))
408 PhysReg
+= static_cast<StringInit
*>(OpLeafRec
->getValue( \
409 "Namespace")->getValue())->getValue();
412 std::vector
<CodeGenRegister
> Regs
= Target
.getRegisters();
413 for (unsigned i
= 0; i
< Regs
.size(); ++i
) {
414 if (Regs
[i
].TheDef
== OpLeafRec
) {
415 PhysReg
+= Regs
[i
].getName();
423 void FastISelMap::collectPatterns(CodeGenDAGPatterns
&CGP
) {
424 const CodeGenTarget
&Target
= CGP
.getTargetInfo();
426 // Determine the target's namespace name.
427 InstNS
= Target
.getInstNamespace() + "::";
428 assert(InstNS
.size() > 2 && "Can't determine target-specific namespace!");
430 // Scan through all the patterns and record the simple ones.
431 for (CodeGenDAGPatterns::ptm_iterator I
= CGP
.ptm_begin(),
432 E
= CGP
.ptm_end(); I
!= E
; ++I
) {
433 const PatternToMatch
&Pattern
= *I
;
435 // For now, just look at Instructions, so that we don't have to worry
436 // about emitting multiple instructions for a pattern.
437 TreePatternNode
*Dst
= Pattern
.getDstPattern();
438 if (Dst
->isLeaf()) continue;
439 Record
*Op
= Dst
->getOperator();
440 if (!Op
->isSubClassOf("Instruction"))
442 CodeGenInstruction
&II
= CGP
.getTargetInfo().getInstruction(Op
);
443 if (II
.Operands
.empty())
446 // For now, ignore multi-instruction patterns.
447 bool MultiInsts
= false;
448 for (unsigned i
= 0, e
= Dst
->getNumChildren(); i
!= e
; ++i
) {
449 TreePatternNode
*ChildOp
= Dst
->getChild(i
);
450 if (ChildOp
->isLeaf())
452 if (ChildOp
->getOperator()->isSubClassOf("Instruction")) {
460 // For now, ignore instructions where the first operand is not an
462 const CodeGenRegisterClass
*DstRC
= 0;
463 std::string SubRegNo
;
464 if (Op
->getName() != "EXTRACT_SUBREG") {
465 Record
*Op0Rec
= II
.Operands
[0].Rec
;
466 if (!Op0Rec
->isSubClassOf("RegisterClass"))
468 DstRC
= &Target
.getRegisterClass(Op0Rec
);
472 // If this isn't a leaf, then continue since the register classes are
473 // a bit too complicated for now.
474 if (!Dst
->getChild(1)->isLeaf()) continue;
476 DefInit
*SR
= dynamic_cast<DefInit
*>(Dst
->getChild(1)->getLeafValue());
478 SubRegNo
= getQualifiedName(SR
->getDef());
480 SubRegNo
= Dst
->getChild(1)->getLeafValue()->getAsString();
483 // Inspect the pattern.
484 TreePatternNode
*InstPatNode
= Pattern
.getSrcPattern();
485 if (!InstPatNode
) continue;
486 if (InstPatNode
->isLeaf()) continue;
488 // Ignore multiple result nodes for now.
489 if (InstPatNode
->getNumTypes() > 1) continue;
491 Record
*InstPatOp
= InstPatNode
->getOperator();
492 std::string OpcodeName
= getOpcodeName(InstPatOp
, CGP
);
493 MVT::SimpleValueType RetVT
= MVT::isVoid
;
494 if (InstPatNode
->getNumTypes()) RetVT
= InstPatNode
->getType(0);
495 MVT::SimpleValueType VT
= RetVT
;
496 if (InstPatNode
->getNumChildren()) {
497 assert(InstPatNode
->getChild(0)->getNumTypes() == 1);
498 VT
= InstPatNode
->getChild(0)->getType(0);
501 // For now, filter out any instructions with predicates.
502 if (!InstPatNode
->getPredicateFns().empty())
505 // Check all the operands.
506 OperandsSignature Operands
;
507 if (!Operands
.initialize(InstPatNode
, Target
, VT
, ImmediatePredicates
))
510 std::vector
<std::string
>* PhysRegInputs
= new std::vector
<std::string
>();
511 if (InstPatNode
->getOperator()->getName() == "imm" ||
512 InstPatNode
->getOperator()->getName() == "fpimmm")
513 PhysRegInputs
->push_back("");
515 // Compute the PhysRegs used by the given pattern, and check that
516 // the mapping from the src to dst patterns is simple.
517 bool FoundNonSimplePattern
= false;
518 unsigned DstIndex
= 0;
519 for (unsigned i
= 0, e
= InstPatNode
->getNumChildren(); i
!= e
; ++i
) {
520 std::string PhysReg
= PhyRegForNode(InstPatNode
->getChild(i
), Target
);
521 if (PhysReg
.empty()) {
522 if (DstIndex
>= Dst
->getNumChildren() ||
523 Dst
->getChild(DstIndex
)->getName() !=
524 InstPatNode
->getChild(i
)->getName()) {
525 FoundNonSimplePattern
= true;
531 PhysRegInputs
->push_back(PhysReg
);
534 if (Op
->getName() != "EXTRACT_SUBREG" && DstIndex
< Dst
->getNumChildren())
535 FoundNonSimplePattern
= true;
537 if (FoundNonSimplePattern
)
541 // Get the predicate that guards this pattern.
542 std::string PredicateCheck
= Pattern
.getPredicateCheck();
544 // Ok, we found a pattern that we can handle. Remember it.
545 InstructionMemo Memo
= {
546 Pattern
.getDstPattern()->getOperator()->getName(),
552 if (SimplePatterns
[Operands
][OpcodeName
][VT
][RetVT
].count(PredicateCheck
))
553 throw TGError(Pattern
.getSrcRecord()->getLoc(),
554 "Duplicate record in FastISel table!");
556 SimplePatterns
[Operands
][OpcodeName
][VT
][RetVT
][PredicateCheck
] = Memo
;
558 // If any of the operands were immediates with predicates on them, strip
559 // them down to a signature that doesn't have predicates so that we can
560 // associate them with the stripped predicate version.
561 if (Operands
.hasAnyImmediateCodes()) {
562 SignaturesWithConstantForms
[Operands
.getWithoutImmCodes()]
563 .push_back(Operands
);
568 void FastISelMap::printImmediatePredicates(raw_ostream
&OS
) {
569 if (ImmediatePredicates
.begin() == ImmediatePredicates
.end())
572 OS
<< "\n// FastEmit Immediate Predicate functions.\n";
573 for (ImmPredicateSet::iterator I
= ImmediatePredicates
.begin(),
574 E
= ImmediatePredicates
.end(); I
!= E
; ++I
) {
575 OS
<< "static bool " << I
->getFnName() << "(int64_t Imm) {\n";
576 OS
<< I
->getImmediatePredicateCode() << "\n}\n";
583 void FastISelMap::printFunctionDefinitions(raw_ostream
&OS
) {
584 // Now emit code for all the patterns that we collected.
585 for (OperandsOpcodeTypeRetPredMap::const_iterator OI
= SimplePatterns
.begin(),
586 OE
= SimplePatterns
.end(); OI
!= OE
; ++OI
) {
587 const OperandsSignature
&Operands
= OI
->first
;
588 const OpcodeTypeRetPredMap
&OTM
= OI
->second
;
590 for (OpcodeTypeRetPredMap::const_iterator I
= OTM
.begin(), E
= OTM
.end();
592 const std::string
&Opcode
= I
->first
;
593 const TypeRetPredMap
&TM
= I
->second
;
595 OS
<< "// FastEmit functions for " << Opcode
<< ".\n";
598 // Emit one function for each opcode,type pair.
599 for (TypeRetPredMap::const_iterator TI
= TM
.begin(), TE
= TM
.end();
601 MVT::SimpleValueType VT
= TI
->first
;
602 const RetPredMap
&RM
= TI
->second
;
603 if (RM
.size() != 1) {
604 for (RetPredMap::const_iterator RI
= RM
.begin(), RE
= RM
.end();
606 MVT::SimpleValueType RetVT
= RI
->first
;
607 const PredMap
&PM
= RI
->second
;
608 bool HasPred
= false;
610 OS
<< "unsigned FastEmit_"
611 << getLegalCName(Opcode
)
612 << "_" << getLegalCName(getName(VT
))
613 << "_" << getLegalCName(getName(RetVT
)) << "_";
614 Operands
.PrintManglingSuffix(OS
, ImmediatePredicates
);
616 Operands
.PrintParameters(OS
);
619 // Emit code for each possible instruction. There may be
620 // multiple if there are subtarget concerns.
621 for (PredMap::const_iterator PI
= PM
.begin(), PE
= PM
.end();
623 std::string PredicateCheck
= PI
->first
;
624 const InstructionMemo
&Memo
= PI
->second
;
626 if (PredicateCheck
.empty()) {
628 "Multiple instructions match, at least one has "
629 "a predicate and at least one doesn't!");
631 OS
<< " if (" + PredicateCheck
+ ") {\n";
636 for (unsigned i
= 0; i
< Memo
.PhysRegs
->size(); ++i
) {
637 if ((*Memo
.PhysRegs
)[i
] != "")
638 OS
<< " BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, "
639 << "TII.get(TargetOpcode::COPY), "
640 << (*Memo
.PhysRegs
)[i
] << ").addReg(Op" << i
<< ");\n";
643 OS
<< " return FastEmitInst_";
644 if (Memo
.SubRegNo
.empty()) {
645 Operands
.PrintManglingSuffix(OS
, *Memo
.PhysRegs
,
646 ImmediatePredicates
, true);
647 OS
<< "(" << InstNS
<< Memo
.Name
<< ", ";
648 OS
<< InstNS
<< Memo
.RC
->getName() << "RegisterClass";
649 if (!Operands
.empty())
651 Operands
.PrintArguments(OS
, *Memo
.PhysRegs
);
654 OS
<< "extractsubreg(" << getName(RetVT
);
655 OS
<< ", Op0, Op0IsKill, " << Memo
.SubRegNo
<< ");\n";
662 // Return 0 if none of the predicates were satisfied.
664 OS
<< " return 0;\n";
669 // Emit one function for the type that demultiplexes on return type.
670 OS
<< "unsigned FastEmit_"
671 << getLegalCName(Opcode
) << "_"
672 << getLegalCName(getName(VT
)) << "_";
673 Operands
.PrintManglingSuffix(OS
, ImmediatePredicates
);
675 if (!Operands
.empty())
677 Operands
.PrintParameters(OS
);
678 OS
<< ") {\nswitch (RetVT.SimpleTy) {\n";
679 for (RetPredMap::const_iterator RI
= RM
.begin(), RE
= RM
.end();
681 MVT::SimpleValueType RetVT
= RI
->first
;
682 OS
<< " case " << getName(RetVT
) << ": return FastEmit_"
683 << getLegalCName(Opcode
) << "_" << getLegalCName(getName(VT
))
684 << "_" << getLegalCName(getName(RetVT
)) << "_";
685 Operands
.PrintManglingSuffix(OS
, ImmediatePredicates
);
687 Operands
.PrintArguments(OS
);
690 OS
<< " default: return 0;\n}\n}\n\n";
693 // Non-variadic return type.
694 OS
<< "unsigned FastEmit_"
695 << getLegalCName(Opcode
) << "_"
696 << getLegalCName(getName(VT
)) << "_";
697 Operands
.PrintManglingSuffix(OS
, ImmediatePredicates
);
699 if (!Operands
.empty())
701 Operands
.PrintParameters(OS
);
704 OS
<< " if (RetVT.SimpleTy != " << getName(RM
.begin()->first
)
705 << ")\n return 0;\n";
707 const PredMap
&PM
= RM
.begin()->second
;
708 bool HasPred
= false;
710 // Emit code for each possible instruction. There may be
711 // multiple if there are subtarget concerns.
712 for (PredMap::const_iterator PI
= PM
.begin(), PE
= PM
.end(); PI
!= PE
;
714 std::string PredicateCheck
= PI
->first
;
715 const InstructionMemo
&Memo
= PI
->second
;
717 if (PredicateCheck
.empty()) {
719 "Multiple instructions match, at least one has "
720 "a predicate and at least one doesn't!");
722 OS
<< " if (" + PredicateCheck
+ ") {\n";
727 for (unsigned i
= 0; i
< Memo
.PhysRegs
->size(); ++i
) {
728 if ((*Memo
.PhysRegs
)[i
] != "")
729 OS
<< " BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, "
730 << "TII.get(TargetOpcode::COPY), "
731 << (*Memo
.PhysRegs
)[i
] << ").addReg(Op" << i
<< ");\n";
734 OS
<< " return FastEmitInst_";
736 if (Memo
.SubRegNo
.empty()) {
737 Operands
.PrintManglingSuffix(OS
, *Memo
.PhysRegs
,
738 ImmediatePredicates
, true);
739 OS
<< "(" << InstNS
<< Memo
.Name
<< ", ";
740 OS
<< InstNS
<< Memo
.RC
->getName() << "RegisterClass";
741 if (!Operands
.empty())
743 Operands
.PrintArguments(OS
, *Memo
.PhysRegs
);
746 OS
<< "extractsubreg(RetVT, Op0, Op0IsKill, ";
755 // Return 0 if none of the predicates were satisfied.
757 OS
<< " return 0;\n";
763 // Emit one function for the opcode that demultiplexes based on the type.
764 OS
<< "unsigned FastEmit_"
765 << getLegalCName(Opcode
) << "_";
766 Operands
.PrintManglingSuffix(OS
, ImmediatePredicates
);
767 OS
<< "(MVT VT, MVT RetVT";
768 if (!Operands
.empty())
770 Operands
.PrintParameters(OS
);
772 OS
<< " switch (VT.SimpleTy) {\n";
773 for (TypeRetPredMap::const_iterator TI
= TM
.begin(), TE
= TM
.end();
775 MVT::SimpleValueType VT
= TI
->first
;
776 std::string TypeName
= getName(VT
);
777 OS
<< " case " << TypeName
<< ": return FastEmit_"
778 << getLegalCName(Opcode
) << "_" << getLegalCName(TypeName
) << "_";
779 Operands
.PrintManglingSuffix(OS
, ImmediatePredicates
);
781 if (!Operands
.empty())
783 Operands
.PrintArguments(OS
);
786 OS
<< " default: return 0;\n";
792 OS
<< "// Top-level FastEmit function.\n";
795 // Emit one function for the operand signature that demultiplexes based
796 // on opcode and type.
797 OS
<< "unsigned FastEmit_";
798 Operands
.PrintManglingSuffix(OS
, ImmediatePredicates
);
799 OS
<< "(MVT VT, MVT RetVT, unsigned Opcode";
800 if (!Operands
.empty())
802 Operands
.PrintParameters(OS
);
805 // If there are any forms of this signature available that operand on
806 // constrained forms of the immediate (e.g. 32-bit sext immediate in a
807 // 64-bit operand), check them first.
809 std::map
<OperandsSignature
, std::vector
<OperandsSignature
> >::iterator MI
810 = SignaturesWithConstantForms
.find(Operands
);
811 if (MI
!= SignaturesWithConstantForms
.end()) {
812 // Unique any duplicates out of the list.
813 std::sort(MI
->second
.begin(), MI
->second
.end());
814 MI
->second
.erase(std::unique(MI
->second
.begin(), MI
->second
.end()),
817 // Check each in order it was seen. It would be nice to have a good
818 // relative ordering between them, but we're not going for optimality
820 for (unsigned i
= 0, e
= MI
->second
.size(); i
!= e
; ++i
) {
822 MI
->second
[i
].emitImmediatePredicate(OS
, ImmediatePredicates
);
823 OS
<< ")\n if (unsigned Reg = FastEmit_";
824 MI
->second
[i
].PrintManglingSuffix(OS
, ImmediatePredicates
);
825 OS
<< "(VT, RetVT, Opcode";
826 if (!MI
->second
[i
].empty())
828 MI
->second
[i
].PrintArguments(OS
);
829 OS
<< "))\n return Reg;\n\n";
832 // Done with this, remove it.
833 SignaturesWithConstantForms
.erase(MI
);
836 OS
<< " switch (Opcode) {\n";
837 for (OpcodeTypeRetPredMap::const_iterator I
= OTM
.begin(), E
= OTM
.end();
839 const std::string
&Opcode
= I
->first
;
841 OS
<< " case " << Opcode
<< ": return FastEmit_"
842 << getLegalCName(Opcode
) << "_";
843 Operands
.PrintManglingSuffix(OS
, ImmediatePredicates
);
845 if (!Operands
.empty())
847 Operands
.PrintArguments(OS
);
850 OS
<< " default: return 0;\n";
856 // TODO: SignaturesWithConstantForms should be empty here.
859 void FastISelEmitter::run(raw_ostream
&OS
) {
860 const CodeGenTarget
&Target
= CGP
.getTargetInfo();
862 // Determine the target's namespace name.
863 std::string InstNS
= Target
.getInstNamespace() + "::";
864 assert(InstNS
.size() > 2 && "Can't determine target-specific namespace!");
866 EmitSourceFileHeader("\"Fast\" Instruction Selector for the " +
867 Target
.getName() + " target", OS
);
869 FastISelMap
F(InstNS
);
870 F
.collectPatterns(CGP
);
871 F
.printImmediatePredicates(OS
);
872 F
.printFunctionDefinitions(OS
);
875 FastISelEmitter::FastISelEmitter(RecordKeeper
&R
)
876 : Records(R
), CGP(R
) {