2007-06-25 15:11:25 +00:00
|
|
|
//===-- X86ATTAsmPrinter.h - Convert X86 LLVM code to AT&T assembly -------===//
|
2005-07-01 22:44:09 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-07-01 22:44:09 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// AT&T assembly code printer class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86ATTASMPRINTER_H
|
|
|
|
#define X86ATTASMPRINTER_H
|
|
|
|
|
|
|
|
#include "X86AsmPrinter.h"
|
|
|
|
#include "llvm/CodeGen/ValueTypes.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2007-11-14 09:18:41 +00:00
|
|
|
struct MachineJumpTableInfo;
|
|
|
|
|
2007-10-30 13:14:37 +00:00
|
|
|
struct VISIBILITY_HIDDEN X86ATTAsmPrinter : public X86SharedAsmPrinter {
|
2006-09-07 22:06:40 +00:00
|
|
|
X86ATTAsmPrinter(std::ostream &O, X86TargetMachine &TM, const TargetAsmInfo *T)
|
2006-09-06 18:34:40 +00:00
|
|
|
: X86SharedAsmPrinter(O, TM, T) { }
|
2005-07-01 22:44:09 +00:00
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "X86 AT&T-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);
|
|
|
|
|
2006-02-06 23:41:19 +00:00
|
|
|
// These methods are used by the tablegen'erated instruction printer.
|
|
|
|
void printOperand(const MachineInstr *MI, unsigned OpNo,
|
2006-12-05 19:50:18 +00:00
|
|
|
const char *Modifier = 0, bool NotRIPRel = false);
|
2005-11-30 18:54:35 +00:00
|
|
|
void printi8mem(const MachineInstr *MI, unsigned OpNo) {
|
2005-07-01 22:44:09 +00:00
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printi16mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printi32mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printi64mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2006-02-22 02:26:30 +00:00
|
|
|
void printi128mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printf32mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printf64mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2007-08-05 18:49:15 +00:00
|
|
|
void printf80mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2006-01-31 22:28:30 +00:00
|
|
|
void printf128mem(const MachineInstr *MI, unsigned OpNo) {
|
2005-11-30 18:54:35 +00:00
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2006-09-08 06:48:29 +00:00
|
|
|
void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo, "subreg64");
|
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
|
2006-04-28 23:19:39 +00:00
|
|
|
bool printAsmMRegister(const MachineOperand &MO, const char Mode);
|
2006-04-28 21:19:05 +00: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-04-28 23:11:40 +00:00
|
|
|
|
|
|
|
void printMachineInstruction(const MachineInstr *MI);
|
2005-11-30 18:54:35 +00:00
|
|
|
void printSSECC(const MachineInstr *MI, unsigned Op);
|
2006-09-08 06:48:29 +00: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
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43924 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-09 01:32:10 +00:00
|
|
|
void printPICJumpTableSetLabel(unsigned uid,
|
|
|
|
const MachineBasicBlock *MBB) const;
|
|
|
|
void printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
|
|
|
|
const MachineBasicBlock *MBB) const {
|
|
|
|
AsmPrinter::printPICJumpTableSetLabel(uid, uid2, MBB);
|
|
|
|
}
|
2007-11-14 09:18:41 +00:00
|
|
|
void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
|
|
|
|
const MachineBasicBlock *MBB,
|
|
|
|
unsigned uid) const;
|
|
|
|
|
2006-02-18 00:15:05 +00:00
|
|
|
void printPICLabel(const MachineInstr *MI, unsigned Op);
|
2005-07-01 22:44:09 +00:00
|
|
|
bool runOnMachineFunction(MachineFunction &F);
|
2006-10-05 02:43:52 +00:00
|
|
|
|
|
|
|
/// getSectionForFunction - Return the section that we should emit the
|
|
|
|
/// specified function body into.
|
|
|
|
virtual std::string getSectionForFunction(const Function &F) const;
|
2005-07-01 22:44:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|