forked from OSchip/llvm-project
parent
bfe9ffb449
commit
f34ddb1e0d
|
@ -101,6 +101,7 @@ namespace llvm {
|
|||
/// "\t.zero\t" and "\t.space\t". If this is set to null, the
|
||||
/// Data*bitsDirective's will be used to emit zero bytes.
|
||||
const char *ZeroDirective; // Defaults to "\t.zero\t"
|
||||
const char *ZeroDirectiveSuffix; // Defaults to ""
|
||||
|
||||
/// AsciiDirective - This directive allows emission of an ascii string with
|
||||
/// the standard C escape characters embedded into it.
|
||||
|
@ -256,7 +257,7 @@ namespace llvm {
|
|||
|
||||
/// EmitZeros - Emit a block of zeros.
|
||||
///
|
||||
virtual void EmitZeros(uint64_t NumZeros) const;
|
||||
void EmitZeros(uint64_t NumZeros) const;
|
||||
|
||||
/// EmitString - Emit a zero-byte-terminated string constant.
|
||||
///
|
||||
|
|
|
@ -37,6 +37,7 @@ AsmPrinter::AsmPrinter(std::ostream &o, TargetMachine &tm)
|
|||
InlineAsmStart("#APP\n\t"),
|
||||
InlineAsmEnd("\t#NO_APP\n"),
|
||||
ZeroDirective("\t.zero\t"),
|
||||
ZeroDirectiveSuffix(0),
|
||||
AsciiDirective("\t.ascii\t"),
|
||||
AscizDirective("\t.asciz\t"),
|
||||
Data8bitsDirective("\t.byte\t"),
|
||||
|
@ -240,9 +241,12 @@ void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV) const {
|
|||
///
|
||||
void AsmPrinter::EmitZeros(uint64_t NumZeros) const {
|
||||
if (NumZeros) {
|
||||
if (ZeroDirective)
|
||||
O << ZeroDirective << NumZeros << "\n";
|
||||
else {
|
||||
if (ZeroDirective) {
|
||||
O << ZeroDirective << NumZeros;
|
||||
if (ZeroDirectiveSuffix)
|
||||
O << ZeroDirectiveSuffix;
|
||||
O << "\n";
|
||||
} else {
|
||||
for (; NumZeros; --NumZeros)
|
||||
O << Data8bitsDirective << "0\n";
|
||||
}
|
||||
|
|
|
@ -28,7 +28,8 @@ X86IntelAsmPrinter::X86IntelAsmPrinter(std::ostream &O, X86TargetMachine &TM)
|
|||
GlobalPrefix = "_";
|
||||
PrivateGlobalPrefix = "$";
|
||||
AlignDirective = "\talign\t";
|
||||
ZeroDirective = 0;
|
||||
ZeroDirective = "\tdb\t";
|
||||
ZeroDirectiveSuffix = " dup(0)";
|
||||
AsciiDirective = "\tdb\t";
|
||||
AscizDirective = 0;
|
||||
Data8bitsDirective = "\t.db\t";
|
||||
|
@ -472,12 +473,6 @@ void X86IntelAsmPrinter::SwitchSection(const char *NewSection,
|
|||
}
|
||||
}
|
||||
|
||||
void X86IntelAsmPrinter::EmitZeros(uint64_t NumZeros) const {
|
||||
if (NumZeros) {
|
||||
O << "\tdb " << NumZeros << " dup(0)\n";
|
||||
}
|
||||
}
|
||||
|
||||
void X86IntelAsmPrinter::EmitString(const ConstantArray *CVA) const {
|
||||
unsigned NumElts = CVA->getNumOperands();
|
||||
if (NumElts) {
|
||||
|
|
|
@ -93,7 +93,6 @@ struct X86IntelAsmPrinter : public X86SharedAsmPrinter {
|
|||
bool doFinalization(Module &M);
|
||||
|
||||
virtual void SwitchSection(const char *NewSection, const GlobalValue *GV);
|
||||
virtual void EmitZeros(uint64_t NumZeros) const;
|
||||
virtual void EmitString(const ConstantArray *CVA) const;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue