diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-26 21:53:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-26 21:53:08 +0000 |
commit | b657c4cdc3f37717851a5be12350f2296fd8c3bd (patch) | |
tree | 9bd020802dd94f5a676c5474decdd5f81566425d /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | 37bc78a5e2c1044fe4ff9568cd41eba2a61580c6 (diff) | |
download | bcm5719-llvm-b657c4cdc3f37717851a5be12350f2296fd8c3bd.tar.gz bcm5719-llvm-b657c4cdc3f37717851a5be12350f2296fd8c3bd.zip |
emit jump table an alias ".set" directives through MCStreamer as
assignments.
.set x, a-b
is the same as:
x = a-b
llvm-svn: 94596
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index d2c1721012a..50e88773e8b 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -336,7 +336,9 @@ bool AsmPrinter::doFinalization(Module &M) { printVisibility(Name, I->getVisibility()); - O << "\t.set\t" << *Name << ", " << *Target << '\n'; + // Emit the directives as assignments aka .set: + OutStreamer.EmitAssignment(Name, + MCSymbolRefExpr::Create(Target, OutContext)); } } @@ -525,9 +527,11 @@ void AsmPrinter::EmitJumpTableInfo(MachineFunction &MF) { const MachineBasicBlock *MBB = JTBBs[ii]; if (!EmittedSets.insert(MBB)) continue; - O << "\t.set\t" - << *GetJTSetSymbol(JTI, MBB->getNumber()) << ',' - << *MBB->getSymbol(OutContext) << '-' << *Base << '\n'; + // .set LJTSet, LBB32-base + const MCExpr *LHS = + MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext); + OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()), + MCBinaryExpr::CreateSub(LHS, Base, OutContext)); } } |