mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Use the more compact bl' instead of cryptic (but equivalent)
bcl 20,31'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14652 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a4c7c414ef
commit
4cf5112500
@ -516,7 +516,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) {
|
||||
|
||||
// FIXME: should probably be converted to cout.width and cout.fill
|
||||
if (Opcode == PPC32::MovePCtoLR) {
|
||||
O << "bcl 20,31,\"L0000" << labelNumber << "$pb\"\n";
|
||||
O << "bl \"L0000" << labelNumber << "$pb\"\n";
|
||||
O << "\"L0000" << labelNumber << "$pb\":\n";
|
||||
O << "\tmflr ";
|
||||
printOp(MI->getOperand(0));
|
||||
@ -659,7 +659,7 @@ bool Printer::doFinalization(Module &M) {
|
||||
O << "L" << *i << "$stub:\n";
|
||||
O << "\t.indirect_symbol " << *i << "\n";
|
||||
O << "\tmflr r0\n";
|
||||
O << "\tbcl 20,31,L0$" << *i << "\n";
|
||||
O << "\tbl L0$" << *i << "\n";
|
||||
O << "L0$" << *i << ":\n";
|
||||
O << "\tmflr r11\n";
|
||||
O << "\taddis r11,r11,ha16(L" << *i << "$lazy_ptr-L0$" << *i << ")\n";
|
||||
|
@ -516,7 +516,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) {
|
||||
|
||||
// FIXME: should probably be converted to cout.width and cout.fill
|
||||
if (Opcode == PPC32::MovePCtoLR) {
|
||||
O << "bcl 20,31,\"L0000" << labelNumber << "$pb\"\n";
|
||||
O << "bl \"L0000" << labelNumber << "$pb\"\n";
|
||||
O << "\"L0000" << labelNumber << "$pb\":\n";
|
||||
O << "\tmflr ";
|
||||
printOp(MI->getOperand(0));
|
||||
@ -659,7 +659,7 @@ bool Printer::doFinalization(Module &M) {
|
||||
O << "L" << *i << "$stub:\n";
|
||||
O << "\t.indirect_symbol " << *i << "\n";
|
||||
O << "\tmflr r0\n";
|
||||
O << "\tbcl 20,31,L0$" << *i << "\n";
|
||||
O << "\tbl L0$" << *i << "\n";
|
||||
O << "L0$" << *i << ":\n";
|
||||
O << "\tmflr r11\n";
|
||||
O << "\taddis r11,r11,ha16(L" << *i << "$lazy_ptr-L0$" << *i << ")\n";
|
||||
|
@ -516,7 +516,7 @@ void Printer::printMachineInstruction(const MachineInstr *MI) {
|
||||
|
||||
// FIXME: should probably be converted to cout.width and cout.fill
|
||||
if (Opcode == PPC32::MovePCtoLR) {
|
||||
O << "bcl 20,31,\"L0000" << labelNumber << "$pb\"\n";
|
||||
O << "bl \"L0000" << labelNumber << "$pb\"\n";
|
||||
O << "\"L0000" << labelNumber << "$pb\":\n";
|
||||
O << "\tmflr ";
|
||||
printOp(MI->getOperand(0));
|
||||
@ -659,7 +659,7 @@ bool Printer::doFinalization(Module &M) {
|
||||
O << "L" << *i << "$stub:\n";
|
||||
O << "\t.indirect_symbol " << *i << "\n";
|
||||
O << "\tmflr r0\n";
|
||||
O << "\tbcl 20,31,L0$" << *i << "\n";
|
||||
O << "\tbl L0$" << *i << "\n";
|
||||
O << "L0$" << *i << ":\n";
|
||||
O << "\tmflr r11\n";
|
||||
O << "\taddis r11,r11,ha16(L" << *i << "$lazy_ptr-L0$" << *i << ")\n";
|
||||
|
Loading…
Reference in New Issue
Block a user