aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-19 06:12:02 +0000
committerChris Lattner <sabre@nondot.org>2009-08-19 06:12:02 +0000
commit663c2d2580e6e9b2435785c7e5a2de18758860a3 (patch)
tree49fefeadb202fe95fcb372787c5a1725a938b360
parent6c2f9e14fdf14d8c1c687c6bd9918183fa7f8a7f (diff)
downloadexternal_llvm-663c2d2580e6e9b2435785c7e5a2de18758860a3.zip
external_llvm-663c2d2580e6e9b2435785c7e5a2de18758860a3.tar.gz
external_llvm-663c2d2580e6e9b2435785c7e5a2de18758860a3.tar.bz2
switch asmprinter to emit alignments through OutStreamer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79406 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/AsmPrinter/AsmPrinter.cpp13
-rw-r--r--lib/MC/MCAsmStreamer.cpp43
2 files changed, 34 insertions, 22 deletions
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index 1762859..7d72b0c 100644
--- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -753,15 +753,12 @@ void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
NumBits = std::max(NumBits, ForcedAlignBits);
if (NumBits == 0) return; // No need to emit alignment.
- if (TAI->getAlignmentIsInBytes()) NumBits = 1 << NumBits;
- O << TAI->getAlignDirective() << NumBits;
-
+
+ unsigned FillValue = 0;
if (getCurrentSection()->getKind().isText())
- if (unsigned FillValue = TAI->getTextAlignFillValue()) {
- O << ',';
- PrintHex(FillValue);
- }
- O << '\n';
+ FillValue = TAI->getTextAlignFillValue();
+
+ OutStreamer.EmitValueToAlignment(1 << NumBits, FillValue, 1, 0);
}
/// EmitZeros - Emit a block of zeros.
diff --git a/lib/MC/MCAsmStreamer.cpp b/lib/MC/MCAsmStreamer.cpp
index 89bc5bc..8068c66 100644
--- a/lib/MC/MCAsmStreamer.cpp
+++ b/lib/MC/MCAsmStreamer.cpp
@@ -14,7 +14,9 @@
#include "llvm/MC/MCSectionMachO.h"
#include "llvm/MC/MCSymbol.h"
#include "llvm/MC/MCValue.h"
+#include "llvm/Target/TargetAsmInfo.h"
#include "llvm/Support/ErrorHandling.h"
+#include "llvm/Support/MathExtras.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
@@ -224,24 +226,37 @@ void MCAsmStreamer::EmitValue(const MCValue &Value, unsigned Size) {
void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
unsigned ValueSize,
unsigned MaxBytesToEmit) {
- // Some assemblers don't support .balign, so we always emit as .p2align if
- // this is a power of two. Otherwise we assume the client knows the target
- // supports .balign and use that.
- unsigned Pow2 = Log2_32(ByteAlignment);
- bool IsPow2 = (1U << Pow2) == ByteAlignment;
+ // Some assemblers don't support non-power of two alignments, so we always
+ // emit alignments as a power of two if possible.
+ if (isPowerOf2_32(ByteAlignment)) {
+ OS << TAI.getAlignDirective();
+
+ if (TAI.getAlignmentIsInBytes())
+ OS << ByteAlignment;
+ else
+ OS << Log2_32(ByteAlignment);
+
+ if (Value || MaxBytesToEmit) {
+ OS << ", " << truncateToSize(Value, ValueSize);
+ if (MaxBytesToEmit)
+ OS << ", " << MaxBytesToEmit;
+ }
+ OS << '\n';
+ return;
+ }
+
+ // Non-power of two alignment. This is not widely supported by assemblers.
+ // FIXME: Parameterize this based on TAI.
switch (ValueSize) {
- default:
- llvm_unreachable("Invalid size for machine code value!");
- case 8:
- llvm_unreachable("Unsupported alignment size!");
- case 1: OS << (IsPow2 ? ".p2align" : ".balign"); break;
- case 2: OS << (IsPow2 ? ".p2alignw" : ".balignw"); break;
- case 4: OS << (IsPow2 ? ".p2alignl" : ".balignl"); break;
+ default: llvm_unreachable("Invalid size for machine code value!");
+ case 1: OS << ".balign"; break;
+ case 2: OS << ".balignw"; break;
+ case 4: OS << ".balignl"; break;
+ case 8: llvm_unreachable("Unsupported alignment size!");
}
- OS << ' ' << (IsPow2 ? Pow2 : ByteAlignment);
-
+ OS << ' ' << ByteAlignment;
OS << ", " << truncateToSize(Value, ValueSize);
if (MaxBytesToEmit)
OS << ", " << MaxBytesToEmit;