2005-07-01 22:44:09 +00:00
|
|
|
//===-- X86ATTAsmPrinter.cpp - Convert X86 LLVM code to Intel assembly ----===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains a printer that converts from our internal representation
|
|
|
|
// of machine-dependent LLVM code to AT&T format assembly
|
|
|
|
// language. This printer is the output mechanism used by `llc'.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "X86ATTAsmPrinter.h"
|
|
|
|
#include "X86.h"
|
|
|
|
#include "X86TargetMachine.h"
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Support/Mangler.h"
|
2006-02-18 00:15:05 +00:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2006-01-22 23:41:00 +00:00
|
|
|
#include <iostream>
|
2005-07-01 22:44:09 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
/// runOnMachineFunction - This uses the printMachineInstruction()
|
|
|
|
/// method to print assembly for each instruction.
|
|
|
|
///
|
|
|
|
bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
2006-03-07 02:23:26 +00:00
|
|
|
// if (forDarwin) {
|
|
|
|
// Let PassManager know we need debug information and relay
|
|
|
|
// the MachineDebugInfo address on to DwarfWriter.
|
|
|
|
DW.SetDebugInfo(&getAnalysis<MachineDebugInfo>());
|
|
|
|
// }
|
2006-03-07 02:02:57 +00:00
|
|
|
|
2005-11-21 07:51:23 +00:00
|
|
|
SetupMachineFunction(MF);
|
2005-07-01 22:44:09 +00:00
|
|
|
O << "\n\n";
|
|
|
|
|
|
|
|
// Print out constants referenced by the function
|
2005-11-21 08:32:23 +00:00
|
|
|
EmitConstantPool(MF.getConstantPool());
|
2005-07-01 22:44:09 +00:00
|
|
|
|
2006-04-22 18:53:45 +00:00
|
|
|
// Print out jump tables referenced by the function
|
|
|
|
EmitJumpTableInfo(MF.getJumpTableInfo());
|
|
|
|
|
2005-07-01 22:44:09 +00:00
|
|
|
// Print out labels for the function.
|
2006-02-07 08:38:37 +00:00
|
|
|
const Function *F = MF.getFunction();
|
|
|
|
switch (F->getLinkage()) {
|
|
|
|
default: assert(0 && "Unknown linkage type!");
|
|
|
|
case Function::InternalLinkage: // Symbols default to internal.
|
|
|
|
SwitchSection(".text", F);
|
|
|
|
EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
|
|
|
|
break;
|
|
|
|
case Function::ExternalLinkage:
|
|
|
|
SwitchSection(".text", F);
|
|
|
|
EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
|
2005-12-16 00:07:30 +00:00
|
|
|
O << "\t.globl\t" << CurrentFnName << "\n";
|
2006-02-07 08:38:37 +00:00
|
|
|
break;
|
|
|
|
case Function::WeakLinkage:
|
|
|
|
case Function::LinkOnceLinkage:
|
|
|
|
if (forDarwin) {
|
|
|
|
SwitchSection(".section __TEXT,__textcoal_nt,coalesced,pure_instructions",
|
|
|
|
F);
|
2006-02-22 23:59:57 +00:00
|
|
|
O << "\t.globl\t" << CurrentFnName << "\n";
|
2006-02-07 08:38:37 +00:00
|
|
|
O << "\t.weak_definition\t" << CurrentFnName << "\n";
|
|
|
|
} else {
|
|
|
|
EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
|
|
|
|
O << "\t.section\t.llvm.linkonce.t." << CurrentFnName
|
|
|
|
<< ",\"ax\",@progbits\n";
|
|
|
|
O << "\t.weak " << CurrentFnName << "\n";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-07-01 22:44:09 +00:00
|
|
|
O << CurrentFnName << ":\n";
|
|
|
|
|
2006-04-07 20:44:42 +00:00
|
|
|
if (forDarwin) {
|
|
|
|
// Emit pre-function debug information.
|
|
|
|
DW.BeginFunction(&MF);
|
|
|
|
}
|
|
|
|
|
2005-07-01 22:44:09 +00:00
|
|
|
// Print out code for the function.
|
|
|
|
for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
// Print a label for the basic block.
|
2006-05-02 05:37:32 +00:00
|
|
|
if (I->pred_begin() != I->pred_end()) {
|
|
|
|
printBasicBlockLabel(I, true);
|
|
|
|
O << '\n';
|
|
|
|
}
|
2005-07-01 22:44:09 +00:00
|
|
|
for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
|
|
|
|
II != E; ++II) {
|
|
|
|
// Print the assembly for the instruction.
|
|
|
|
O << "\t";
|
|
|
|
printMachineInstruction(II);
|
|
|
|
}
|
|
|
|
}
|
2005-11-21 23:06:54 +00:00
|
|
|
if (HasDotTypeDotSizeDirective)
|
2005-07-12 01:37:28 +00:00
|
|
|
O << "\t.size " << CurrentFnName << ", .-" << CurrentFnName << "\n";
|
2005-07-01 22:44:09 +00:00
|
|
|
|
2006-03-07 02:23:26 +00:00
|
|
|
if (forDarwin) {
|
|
|
|
// Emit post-function debug information.
|
2006-03-23 18:09:44 +00:00
|
|
|
DW.EndFunction();
|
2006-03-07 02:23:26 +00:00
|
|
|
}
|
2006-03-07 02:02:57 +00:00
|
|
|
|
2005-07-01 22:44:09 +00:00
|
|
|
// We didn't modify anything.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-02-06 23:41:19 +00:00
|
|
|
void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
const char *Modifier) {
|
|
|
|
const MachineOperand &MO = MI->getOperand(OpNo);
|
2005-07-01 22:44:09 +00:00
|
|
|
const MRegisterInfo &RI = *TM.getRegisterInfo();
|
|
|
|
switch (MO.getType()) {
|
2006-05-05 05:40:20 +00:00
|
|
|
case MachineOperand::MO_Register: {
|
2005-07-01 22:44:09 +00:00
|
|
|
assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
|
|
|
|
"Virtual registers should not make it this far!");
|
|
|
|
O << '%';
|
2006-05-05 05:40:20 +00:00
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
if (Modifier && strncmp(Modifier, "trunc", strlen("trunc")) == 0) {
|
|
|
|
MVT::ValueType VT = (strcmp(Modifier,"trunc16") == 0)
|
|
|
|
? MVT::i16 : MVT::i32;
|
|
|
|
Reg = getX86SubSuperRegister(Reg, VT);
|
|
|
|
}
|
|
|
|
for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
|
2005-07-01 22:44:09 +00:00
|
|
|
O << (char)tolower(*Name);
|
|
|
|
return;
|
2006-05-05 05:40:20 +00:00
|
|
|
}
|
2005-07-01 22:44:09 +00:00
|
|
|
|
2006-05-04 17:21:20 +00:00
|
|
|
case MachineOperand::MO_Immediate:
|
2006-03-07 02:02:57 +00:00
|
|
|
if (!Modifier || strcmp(Modifier, "debug") != 0)
|
|
|
|
O << '$';
|
|
|
|
O << (int)MO.getImmedValue();
|
2005-07-01 22:44:09 +00:00
|
|
|
return;
|
2006-04-22 18:53:45 +00:00
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
|
|
|
printBasicBlockLabel(MO.getMachineBasicBlock());
|
2005-07-01 22:44:09 +00:00
|
|
|
return;
|
2006-04-22 18:53:45 +00:00
|
|
|
case MachineOperand::MO_JumpTableIndex: {
|
|
|
|
bool isMemOp = Modifier && !strcmp(Modifier, "mem");
|
|
|
|
if (!isMemOp) O << '$';
|
|
|
|
O << PrivateGlobalPrefix << "JTI" << getFunctionNumber() << "_"
|
|
|
|
<< MO.getJumpTableIndex();
|
|
|
|
// FIXME: PIC relocation model
|
|
|
|
return;
|
|
|
|
}
|
2006-02-26 08:28:12 +00:00
|
|
|
case MachineOperand::MO_ConstantPoolIndex: {
|
|
|
|
bool isMemOp = Modifier && !strcmp(Modifier, "mem");
|
|
|
|
if (!isMemOp) O << '$';
|
|
|
|
O << PrivateGlobalPrefix << "CPI" << getFunctionNumber() << "_"
|
|
|
|
<< MO.getConstantPoolIndex();
|
|
|
|
if (forDarwin && TM.getRelocationModel() == Reloc::PIC)
|
|
|
|
O << "-\"L" << getFunctionNumber() << "$pb\"";
|
|
|
|
int Offset = MO.getOffset();
|
|
|
|
if (Offset > 0)
|
|
|
|
O << "+" << Offset;
|
|
|
|
else if (Offset < 0)
|
|
|
|
O << Offset;
|
|
|
|
return;
|
|
|
|
}
|
2005-07-01 22:44:09 +00:00
|
|
|
case MachineOperand::MO_GlobalAddress: {
|
2006-02-06 23:41:19 +00:00
|
|
|
bool isCallOp = Modifier && !strcmp(Modifier, "call");
|
2006-02-07 08:38:37 +00:00
|
|
|
bool isMemOp = Modifier && !strcmp(Modifier, "mem");
|
2006-02-18 00:15:05 +00:00
|
|
|
if (!isMemOp && !isCallOp) O << '$';
|
2006-02-07 08:38:37 +00:00
|
|
|
// Darwin block shameless ripped from PPCAsmPrinter.cpp
|
2006-02-22 20:19:42 +00:00
|
|
|
if (forDarwin && TM.getRelocationModel() != Reloc::Static) {
|
2005-07-08 00:23:26 +00:00
|
|
|
GlobalValue *GV = MO.getGlobal();
|
|
|
|
std::string Name = Mang->getValueName(GV);
|
2006-02-07 08:38:37 +00:00
|
|
|
// Link-once, External, or Weakly-linked global variables need
|
|
|
|
// non-lazily-resolved stubs
|
|
|
|
if (GV->isExternal() || GV->hasWeakLinkage() ||
|
|
|
|
GV->hasLinkOnceLinkage()) {
|
|
|
|
// Dynamically-resolved functions need a stub for the function.
|
|
|
|
if (isCallOp && isa<Function>(GV) && cast<Function>(GV)->isExternal()) {
|
|
|
|
FnStubs.insert(Name);
|
|
|
|
O << "L" << Name << "$stub";
|
|
|
|
} else {
|
|
|
|
GVStubs.insert(Name);
|
|
|
|
O << "L" << Name << "$non_lazy_ptr";
|
|
|
|
}
|
2005-07-12 18:34:58 +00:00
|
|
|
} else {
|
|
|
|
O << Mang->getValueName(GV);
|
2006-02-23 02:43:52 +00:00
|
|
|
}
|
|
|
|
if (!isCallOp && TM.getRelocationModel() == Reloc::PIC)
|
|
|
|
O << "-\"L" << getFunctionNumber() << "$pb\"";
|
|
|
|
} else
|
2006-02-18 00:15:05 +00:00
|
|
|
O << Mang->getValueName(MO.getGlobal());
|
2005-07-01 22:44:09 +00:00
|
|
|
int Offset = MO.getOffset();
|
|
|
|
if (Offset > 0)
|
|
|
|
O << "+" << Offset;
|
|
|
|
else if (Offset < 0)
|
|
|
|
O << Offset;
|
|
|
|
return;
|
|
|
|
}
|
2006-02-06 23:41:19 +00:00
|
|
|
case MachineOperand::MO_ExternalSymbol: {
|
|
|
|
bool isCallOp = Modifier && !strcmp(Modifier, "call");
|
2006-02-22 20:19:42 +00:00
|
|
|
if (isCallOp && forDarwin && TM.getRelocationModel() != Reloc::Static) {
|
|
|
|
std::string Name(GlobalPrefix);
|
|
|
|
Name += MO.getSymbolName();
|
2005-07-08 00:23:26 +00:00
|
|
|
FnStubs.insert(Name);
|
|
|
|
O << "L" << Name << "$stub";
|
|
|
|
return;
|
|
|
|
}
|
2006-02-22 20:19:42 +00:00
|
|
|
if (!isCallOp) O << '$';
|
2005-07-01 22:44:09 +00:00
|
|
|
O << GlobalPrefix << MO.getSymbolName();
|
|
|
|
return;
|
2006-02-06 23:41:19 +00:00
|
|
|
}
|
2005-07-01 22:44:09 +00:00
|
|
|
default:
|
|
|
|
O << "<unknown operand type>"; return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-30 18:54:35 +00:00
|
|
|
void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
|
2005-07-14 22:52:25 +00:00
|
|
|
unsigned char value = MI->getOperand(Op).getImmedValue();
|
|
|
|
assert(value <= 7 && "Invalid ssecc argument!");
|
|
|
|
switch (value) {
|
|
|
|
case 0: O << "eq"; break;
|
|
|
|
case 1: O << "lt"; break;
|
|
|
|
case 2: O << "le"; break;
|
|
|
|
case 3: O << "unord"; break;
|
|
|
|
case 4: O << "neq"; break;
|
|
|
|
case 5: O << "nlt"; break;
|
|
|
|
case 6: O << "nle"; break;
|
|
|
|
case 7: O << "ord"; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-01 22:44:09 +00:00
|
|
|
void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op){
|
|
|
|
assert(isMem(MI, Op) && "Invalid memory reference!");
|
|
|
|
|
|
|
|
const MachineOperand &BaseReg = MI->getOperand(Op);
|
|
|
|
int ScaleVal = MI->getOperand(Op+1).getImmedValue();
|
|
|
|
const MachineOperand &IndexReg = MI->getOperand(Op+2);
|
|
|
|
const MachineOperand &DispSpec = MI->getOperand(Op+3);
|
|
|
|
|
|
|
|
if (BaseReg.isFrameIndex()) {
|
|
|
|
O << "[frame slot #" << BaseReg.getFrameIndex();
|
|
|
|
if (DispSpec.getImmedValue())
|
|
|
|
O << " + " << DispSpec.getImmedValue();
|
|
|
|
O << "]";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-02-26 08:28:12 +00:00
|
|
|
if (DispSpec.isGlobalAddress() || DispSpec.isConstantPoolIndex()) {
|
2006-02-07 08:38:37 +00:00
|
|
|
printOperand(MI, Op+3, "mem");
|
2005-07-01 22:44:09 +00:00
|
|
|
} else {
|
|
|
|
int DispVal = DispSpec.getImmedValue();
|
|
|
|
if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
|
|
|
|
O << DispVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IndexReg.getReg() || BaseReg.getReg()) {
|
|
|
|
O << "(";
|
|
|
|
if (BaseReg.getReg())
|
2006-02-06 23:41:19 +00:00
|
|
|
printOperand(MI, Op);
|
2005-07-01 22:44:09 +00:00
|
|
|
|
|
|
|
if (IndexReg.getReg()) {
|
|
|
|
O << ",";
|
2006-02-06 23:41:19 +00:00
|
|
|
printOperand(MI, Op+2);
|
2005-07-01 22:44:09 +00:00
|
|
|
if (ScaleVal != 1)
|
|
|
|
O << "," << ScaleVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
O << ")";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-18 00:15:05 +00:00
|
|
|
void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
|
|
|
|
O << "\"L" << getFunctionNumber() << "$pb\"\n";
|
|
|
|
O << "\"L" << getFunctionNumber() << "$pb\":";
|
|
|
|
}
|
|
|
|
|
2006-04-28 23:11:40 +00:00
|
|
|
|
2006-04-28 23:19:39 +00:00
|
|
|
bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
|
2006-04-28 23:11:40 +00:00
|
|
|
const char Mode) {
|
|
|
|
const MRegisterInfo &RI = *TM.getRegisterInfo();
|
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
switch (Mode) {
|
|
|
|
default: return true; // Unknown mode.
|
|
|
|
case 'b': // Print QImode register
|
2006-05-05 05:40:20 +00:00
|
|
|
Reg = getX86SubSuperRegister(Reg, MVT::i8);
|
2006-04-28 23:11:40 +00:00
|
|
|
break;
|
|
|
|
case 'h': // Print QImode high register
|
2006-05-05 05:40:20 +00:00
|
|
|
Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
|
2006-04-28 23:11:40 +00:00
|
|
|
break;
|
|
|
|
case 'w': // Print HImode register
|
2006-05-05 05:40:20 +00:00
|
|
|
Reg = getX86SubSuperRegister(Reg, MVT::i16);
|
2006-04-28 23:11:40 +00:00
|
|
|
break;
|
|
|
|
case 'k': // Print SImode register
|
2006-05-05 05:40:20 +00:00
|
|
|
Reg = getX86SubSuperRegister(Reg, MVT::i32);
|
2006-04-28 23:11:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-05-05 05:40:20 +00:00
|
|
|
O << '%';
|
|
|
|
for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
|
|
|
|
O << (char)tolower(*Name);
|
2006-04-28 23:11:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-04-28 21:19:05 +00:00
|
|
|
/// PrintAsmOperand - Print out an operand for an inline asm expression.
|
|
|
|
///
|
|
|
|
bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
unsigned AsmVariant,
|
|
|
|
const char *ExtraCode) {
|
|
|
|
// Does this asm operand have a single letter operand modifier?
|
|
|
|
if (ExtraCode && ExtraCode[0]) {
|
|
|
|
if (ExtraCode[1] != 0) return true; // Unknown modifier.
|
|
|
|
|
|
|
|
switch (ExtraCode[0]) {
|
|
|
|
default: return true; // Unknown modifier.
|
2006-04-28 23:11:40 +00:00
|
|
|
case 'b': // Print QImode register
|
|
|
|
case 'h': // Print QImode high register
|
|
|
|
case 'w': // Print HImode register
|
|
|
|
case 'k': // Print SImode register
|
2006-04-28 23:19:39 +00:00
|
|
|
return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
|
2006-04-28 21:19:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
printOperand(MI, OpNo);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
|
|
|
|
unsigned OpNo,
|
|
|
|
unsigned AsmVariant,
|
|
|
|
const char *ExtraCode) {
|
|
|
|
if (ExtraCode && ExtraCode[0])
|
|
|
|
return true; // Unknown modifier.
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-07-01 22:44:09 +00:00
|
|
|
/// printMachineInstruction -- Print out a single X86 LLVM instruction
|
|
|
|
/// MI in Intel syntax to the current output stream.
|
|
|
|
///
|
|
|
|
void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
|
|
|
|
++EmittedInsts;
|
2006-01-26 02:27:43 +00:00
|
|
|
// This works around some Darwin assembler bugs.
|
|
|
|
if (forDarwin) {
|
|
|
|
switch (MI->getOpcode()) {
|
|
|
|
case X86::REP_MOVSB:
|
|
|
|
O << "rep/movsb (%esi),(%edi)\n";
|
|
|
|
return;
|
|
|
|
case X86::REP_MOVSD:
|
|
|
|
O << "rep/movsl (%esi),(%edi)\n";
|
|
|
|
return;
|
|
|
|
case X86::REP_MOVSW:
|
|
|
|
O << "rep/movsw (%esi),(%edi)\n";
|
|
|
|
return;
|
|
|
|
case X86::REP_STOSB:
|
|
|
|
O << "rep/stosb\n";
|
|
|
|
return;
|
|
|
|
case X86::REP_STOSD:
|
|
|
|
O << "rep/stosl\n";
|
|
|
|
return;
|
|
|
|
case X86::REP_STOSW:
|
|
|
|
O << "rep/stosw\n";
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-05 05:40:20 +00:00
|
|
|
// See if a truncate instruction can be turned into a nop.
|
|
|
|
switch (MI->getOpcode()) {
|
|
|
|
default: break;
|
|
|
|
case X86::TRUNC_R32_R16:
|
|
|
|
case X86::TRUNC_R32_R8:
|
|
|
|
case X86::TRUNC_R16_R8: {
|
|
|
|
const MachineOperand &MO0 = MI->getOperand(0);
|
|
|
|
const MachineOperand &MO1 = MI->getOperand(1);
|
|
|
|
unsigned Reg0 = MO0.getReg();
|
|
|
|
unsigned Reg1 = MO1.getReg();
|
|
|
|
if (MI->getOpcode() == X86::TRUNC_R16_R8)
|
|
|
|
Reg0 = getX86SubSuperRegister(Reg0, MVT::i16);
|
|
|
|
else
|
|
|
|
Reg0 = getX86SubSuperRegister(Reg0, MVT::i32);
|
|
|
|
if (Reg0 == Reg1)
|
|
|
|
O << CommentString << " TRUNCATE ";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-01 22:44:09 +00:00
|
|
|
// Call the autogenerated instruction printer routines.
|
|
|
|
printInstruction(MI);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Include the auto-generated portion of the assembly writer.
|
|
|
|
#include "X86GenAsmWriter.inc"
|
|
|
|
|