mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Add methods to add implicit def use operands to a MI.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31675 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
490ce1ea6f
commit
3ba433a7e8
@ -413,6 +413,10 @@ public:
|
||||
Op.offset = 0;
|
||||
}
|
||||
|
||||
/// addImplicitDefUseOperands - Add all implicit def and use operands to
|
||||
/// this instruction.
|
||||
void addImplicitDefUseOperands();
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
// Accessors used to modify instructions in place.
|
||||
//
|
||||
|
@ -77,6 +77,11 @@ public:
|
||||
MI->addExternalSymbolOperand(FnName);
|
||||
return *this;
|
||||
}
|
||||
|
||||
const MachineInstrBuilder &addImplicitDefsUses() const {
|
||||
MI->addImplicitDefUseOperands();
|
||||
return *this;
|
||||
}
|
||||
};
|
||||
|
||||
/// BuildMI - Builder interface. Specify how to create the initial instruction
|
||||
|
@ -125,6 +125,18 @@ bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const {
|
||||
}
|
||||
}
|
||||
|
||||
/// addImplicitDefUseOperands - Add all implicit def and use operands to
|
||||
/// this instruction.
|
||||
void MachineInstr::addImplicitDefUseOperands() {
|
||||
const TargetInstrDescriptor &TID = TargetInstrDescriptors[Opcode];
|
||||
if (TID.ImplicitDefs)
|
||||
for (const unsigned *ImpDefs = TID.ImplicitDefs; *ImpDefs; ++ImpDefs)
|
||||
addRegOperand(*ImpDefs, true, true);
|
||||
if (TID.ImplicitUses)
|
||||
for (const unsigned *ImpUses = TID.ImplicitUses; *ImpUses; ++ImpUses)
|
||||
addRegOperand(*ImpUses, false, true);
|
||||
}
|
||||
|
||||
|
||||
void MachineInstr::dump() const {
|
||||
std::cerr << " " << *this;
|
||||
|
@ -442,16 +442,7 @@ void ScheduleDAG::EmitNode(SDNode *Node,
|
||||
}
|
||||
|
||||
// Emit implicit def / use operands.
|
||||
if (II.ImplicitDefs) {
|
||||
for (const unsigned *ImplicitDefs = II.ImplicitDefs;
|
||||
*ImplicitDefs; ++ImplicitDefs)
|
||||
MI->addRegOperand(*ImplicitDefs, true, true);
|
||||
}
|
||||
if (II.ImplicitUses) {
|
||||
for (const unsigned *ImplicitUses = II.ImplicitUses;
|
||||
*ImplicitUses; ++ImplicitUses)
|
||||
MI->addRegOperand(*ImplicitUses, false, true);
|
||||
}
|
||||
MI->addImplicitDefUseOperands();
|
||||
|
||||
// Now that we have emitted all operands, emit this instruction itself.
|
||||
if ((II.Flags & M_USES_CUSTOM_DAG_SCHED_INSERTION) == 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user