2005-07-02 06:44:09 +08:00
|
|
|
//===-- X86IntelAsmPrinter.h - Convert X86 LLVM code to Intel assembly ----===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-07-02 06:44:09 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Intel assembly code printer class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86INTELASMPRINTER_H
|
|
|
|
#define X86INTELASMPRINTER_H
|
|
|
|
|
|
|
|
#include "X86AsmPrinter.h"
|
|
|
|
#include "llvm/CodeGen/ValueTypes.h"
|
|
|
|
#include "llvm/Target/MRegisterInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2007-10-30 21:14:37 +08:00
|
|
|
struct VISIBILITY_HIDDEN X86IntelAsmPrinter : public X86SharedAsmPrinter {
|
2006-09-08 06:06:40 +08:00
|
|
|
X86IntelAsmPrinter(std::ostream &O, X86TargetMachine &TM,
|
|
|
|
const TargetAsmInfo *T)
|
2006-09-07 02:34:40 +08:00
|
|
|
: X86SharedAsmPrinter(O, TM, T) {
|
|
|
|
}
|
2005-07-02 06:44:09 +08:00
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "X86 Intel-Style Assembly Printer";
|
|
|
|
}
|
|
|
|
|
|
|
|
/// printInstruction - This method is automatically generated by tablegen
|
|
|
|
/// from the instruction set description. This method returns true if the
|
|
|
|
/// machine instruction was sufficiently described to print it, otherwise it
|
|
|
|
/// returns false.
|
|
|
|
bool printInstruction(const MachineInstr *MI);
|
|
|
|
|
|
|
|
// This method is used by the tablegen'erated instruction printer.
|
2006-02-07 07:41:19 +08:00
|
|
|
void printOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
const char *Modifier = 0) {
|
2005-07-02 06:44:09 +08:00
|
|
|
const MachineOperand &MO = MI->getOperand(OpNo);
|
2006-05-05 02:05:43 +08:00
|
|
|
if (MO.isRegister()) {
|
2006-05-04 09:15:02 +08:00
|
|
|
assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) && "Not physreg??");
|
2006-05-01 13:53:50 +08:00
|
|
|
O << TM.getRegisterInfo()->get(MO.getReg()).Name;
|
2005-07-02 06:44:09 +08:00
|
|
|
} else {
|
2006-02-07 07:41:19 +08:00
|
|
|
printOp(MO, Modifier);
|
2005-07-02 06:44:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-01 02:54:35 +08:00
|
|
|
void printi8mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "BYTE PTR ";
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printi16mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "WORD PTR ";
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printi32mem(const MachineInstr *MI, unsigned OpNo) {
|
2005-12-01 02:57:39 +08:00
|
|
|
O << "DWORD PTR ";
|
2005-12-01 02:54:35 +08:00
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printi64mem(const MachineInstr *MI, unsigned OpNo) {
|
2005-12-01 02:57:39 +08:00
|
|
|
O << "QWORD PTR ";
|
2005-12-01 02:54:35 +08:00
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2006-02-22 10:26:30 +08:00
|
|
|
void printi128mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "XMMWORD PTR ";
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printf32mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "DWORD PTR ";
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printf64mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "QWORD PTR ";
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2007-08-06 02:49:15 +08:00
|
|
|
void printf80mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "XWORD PTR ";
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2006-02-01 06:28:30 +08:00
|
|
|
void printf128mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "XMMWORD PTR ";
|
2005-07-02 06:44:09 +08:00
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2006-09-08 14:48:29 +08:00
|
|
|
void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "QWORD PTR ";
|
|
|
|
printMemReference(MI, OpNo, "subreg64");
|
|
|
|
}
|
2005-07-02 06:44:09 +08:00
|
|
|
|
2006-04-29 07:19:39 +08:00
|
|
|
bool printAsmMRegister(const MachineOperand &MO, const char Mode);
|
2006-04-29 05:19:05 +08:00
|
|
|
bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
unsigned AsmVariant, const char *ExtraCode);
|
|
|
|
bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
unsigned AsmVariant, const char *ExtraCode);
|
2006-05-02 09:16:28 +08:00
|
|
|
void printMachineInstruction(const MachineInstr *MI);
|
2006-02-07 07:41:19 +08:00
|
|
|
void printOp(const MachineOperand &MO, const char *Modifier = 0);
|
2005-12-01 02:54:35 +08:00
|
|
|
void printSSECC(const MachineInstr *MI, unsigned Op);
|
2006-09-08 14:48:29 +08:00
|
|
|
void printMemReference(const MachineInstr *MI, unsigned Op,
|
|
|
|
const char *Modifier=NULL);
|
Much improved pic jumptable codegen:
Then:
call "L1$pb"
"L1$pb":
popl %eax
...
LBB1_1: # entry
imull $4, %ecx, %ecx
leal LJTI1_0-"L1$pb"(%eax), %edx
addl LJTI1_0-"L1$pb"(%ecx,%eax), %edx
jmpl *%edx
.align 2
.set L1_0_set_3,LBB1_3-LJTI1_0
.set L1_0_set_2,LBB1_2-LJTI1_0
.set L1_0_set_5,LBB1_5-LJTI1_0
.set L1_0_set_4,LBB1_4-LJTI1_0
LJTI1_0:
.long L1_0_set_3
.long L1_0_set_2
Now:
call "L1$pb"
"L1$pb":
popl %eax
...
LBB1_1: # entry
addl LJTI1_0-"L1$pb"(%eax,%ecx,4), %eax
jmpl *%eax
.align 2
.set L1_0_set_3,LBB1_3-"L1$pb"
.set L1_0_set_2,LBB1_2-"L1$pb"
.set L1_0_set_5,LBB1_5-"L1$pb"
.set L1_0_set_4,LBB1_4-"L1$pb"
LJTI1_0:
.long L1_0_set_3
.long L1_0_set_2
llvm-svn: 43924
2007-11-09 09:32:10 +08:00
|
|
|
void printPICJumpTableSetLabel(unsigned uid,
|
|
|
|
const MachineBasicBlock *MBB) const;
|
|
|
|
void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
|
|
|
|
const MachineBasicBlock *MBB) const {
|
|
|
|
AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
|
|
|
|
}
|
2006-02-18 08:15:05 +08:00
|
|
|
void printPICLabel(const MachineInstr *MI, unsigned Op);
|
2005-07-02 06:44:09 +08:00
|
|
|
bool runOnMachineFunction(MachineFunction &F);
|
|
|
|
bool doInitialization(Module &M);
|
2006-05-02 11:11:50 +08:00
|
|
|
bool doFinalization(Module &M);
|
2006-10-05 10:43:52 +08:00
|
|
|
|
|
|
|
/// getSectionForFunction - Return the section that we should emit the
|
|
|
|
/// specified function body into.
|
|
|
|
virtual std::string getSectionForFunction(const Function &F) const;
|
2006-05-02 09:16:28 +08:00
|
|
|
|
|
|
|
virtual void EmitString(const ConstantArray *CVA) const;
|
2005-07-02 06:44:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|