2007-06-25 23:11:25 +08:00
|
|
|
//===-- X86ATTAsmPrinter.h - Convert X86 LLVM code to AT&T assembly -------===//
|
2005-07-02 06:44:09 +08:00
|
|
|
//
|
|
|
|
// 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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// AT&T assembly code printer class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86ATTASMPRINTER_H
|
|
|
|
#define X86ATTASMPRINTER_H
|
|
|
|
|
2008-08-18 02:24:26 +08:00
|
|
|
#include "../X86.h"
|
|
|
|
#include "../X86MachineFunctionInfo.h"
|
|
|
|
#include "../X86TargetMachine.h"
|
2008-06-28 19:08:27 +08:00
|
|
|
#include "llvm/ADT/StringSet.h"
|
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
|
|
#include "llvm/CodeGen/DwarfWriter.h"
|
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
2005-07-02 06:44:09 +08:00
|
|
|
#include "llvm/CodeGen/ValueTypes.h"
|
2008-06-28 19:08:27 +08:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2005-07-02 06:44:09 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2009-05-13 05:55:29 +08:00
|
|
|
class MachineJumpTableInfo;
|
2008-06-28 19:08:27 +08:00
|
|
|
|
2009-02-24 16:30:20 +08:00
|
|
|
class VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter {
|
2009-01-09 07:40:34 +08:00
|
|
|
DwarfWriter *DW;
|
2008-06-28 19:08:27 +08:00
|
|
|
MachineModuleInfo *MMI;
|
|
|
|
const X86Subtarget *Subtarget;
|
2009-02-24 16:30:20 +08:00
|
|
|
public:
|
2009-04-29 08:15:41 +08:00
|
|
|
explicit X86ATTAsmPrinter(raw_ostream &O, X86TargetMachine &TM,
|
2009-04-30 07:29:43 +08:00
|
|
|
const TargetAsmInfo *T, CodeGenOpt::Level OL,
|
|
|
|
bool V)
|
2009-04-29 08:15:41 +08:00
|
|
|
: AsmPrinter(O, TM, T, OL, V), DW(0), MMI(0) {
|
2008-06-28 19:08:27 +08:00
|
|
|
Subtarget = &TM.getSubtarget<X86Subtarget>();
|
|
|
|
}
|
2005-07-02 06:44:09 +08:00
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "X86 AT&T-Style Assembly Printer";
|
|
|
|
}
|
|
|
|
|
2008-06-28 19:08:27 +08:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
if (Subtarget->isTargetDarwin() ||
|
|
|
|
Subtarget->isTargetELF() ||
|
|
|
|
Subtarget->isTargetCygMing()) {
|
|
|
|
AU.addRequired<MachineModuleInfo>();
|
|
|
|
}
|
2009-01-09 07:40:34 +08:00
|
|
|
AU.addRequired<DwarfWriter>();
|
2008-06-28 19:08:27 +08:00
|
|
|
AsmPrinter::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool doInitialization(Module &M);
|
|
|
|
bool doFinalization(Module &M);
|
|
|
|
|
2005-07-02 06:44:09 +08:00
|
|
|
/// 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-07 07:41:19 +08:00
|
|
|
// These methods are used by the tablegen'erated instruction printer.
|
|
|
|
void printOperand(const MachineInstr *MI, unsigned OpNo,
|
2006-12-06 03:50:18 +08:00
|
|
|
const char *Modifier = 0, bool NotRIPRel = false);
|
2005-12-01 02:54:35 +08:00
|
|
|
void printi8mem(const MachineInstr *MI, unsigned OpNo) {
|
2005-07-02 06:44:09 +08:00
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2005-12-01 02:54:35 +08: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 10:26:30 +08:00
|
|
|
void printi128mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2005-12-01 02:54:35 +08:00
|
|
|
void printf32mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printf64mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2007-08-06 02:49:15 +08:00
|
|
|
void printf80mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2006-02-01 06:28:30 +08:00
|
|
|
void printf128mem(const MachineInstr *MI, unsigned OpNo) {
|
2005-12-01 02:54:35 +08:00
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2009-04-09 05:14:34 +08:00
|
|
|
void printlea32mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printLeaMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printlea64mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printLeaMemReference(MI, OpNo);
|
|
|
|
}
|
2006-09-08 14:48:29 +08:00
|
|
|
void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
|
2009-04-09 05:14:34 +08:00
|
|
|
printLeaMemReference(MI, OpNo, "subreg64");
|
2006-09-08 14:48:29 +08:00
|
|
|
}
|
2008-06-28 19:08:27 +08:00
|
|
|
|
2009-06-15 12:42:32 +08:00
|
|
|
bool printAsmMRegister(const MachineOperand &MO, char Mode);
|
2008-06-28 19:09:48 +08:00
|
|
|
bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
2006-04-29 05:19:05 +08:00
|
|
|
unsigned AsmVariant, const char *ExtraCode);
|
2008-06-28 19:09:48 +08:00
|
|
|
bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
|
2006-04-29 05:19:05 +08:00
|
|
|
unsigned AsmVariant, const char *ExtraCode);
|
2008-06-28 19:08:27 +08:00
|
|
|
|
2006-04-29 07:11:40 +08:00
|
|
|
void printMachineInstruction(const MachineInstr *MI);
|
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,
|
2009-04-29 05:49:33 +08:00
|
|
|
const char *Modifier=NULL, bool NotRIPRel = false);
|
2009-04-09 05:14:34 +08:00
|
|
|
void printLeaMemReference(const MachineInstr *MI, unsigned Op,
|
2009-04-29 05:49:33 +08:00
|
|
|
const char *Modifier=NULL, bool NotRIPRel = false);
|
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);
|
|
|
|
}
|
2007-11-14 17:18:41 +08:00
|
|
|
void printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
|
|
|
|
const MachineBasicBlock *MBB,
|
|
|
|
unsigned uid) const;
|
2008-06-28 19:08:27 +08:00
|
|
|
|
2006-02-18 08:15:05 +08:00
|
|
|
void printPICLabel(const MachineInstr *MI, unsigned Op);
|
2008-06-28 19:09:32 +08:00
|
|
|
void printModuleLevelGV(const GlobalVariable* GVar);
|
|
|
|
|
2008-07-08 08:55:58 +08:00
|
|
|
void printGVStub(const char *GV, const char *Prefix = NULL);
|
2008-12-05 09:06:39 +08:00
|
|
|
void printHiddenGVStub(const char *GV, const char *Prefix = NULL);
|
2008-07-08 08:55:58 +08:00
|
|
|
|
2005-07-02 06:44:09 +08:00
|
|
|
bool runOnMachineFunction(MachineFunction &F);
|
2008-06-28 19:08:27 +08:00
|
|
|
|
2008-06-28 19:09:01 +08:00
|
|
|
void emitFunctionHeader(const MachineFunction &MF);
|
|
|
|
|
2008-06-28 19:08:27 +08:00
|
|
|
// Necessary for Darwin to print out the apprioriate types of linker stubs
|
2008-12-05 09:06:39 +08:00
|
|
|
StringSet<> FnStubs, GVStubs, HiddenGVStubs;
|
2008-06-28 19:08:27 +08:00
|
|
|
|
|
|
|
// Necessary for dllexport support
|
|
|
|
StringSet<> DLLExportedFns, DLLExportedGVs;
|
|
|
|
|
|
|
|
// We have to propagate some information about MachineFunction to
|
|
|
|
// AsmPrinter. It's ok, when we're printing the function, since we have
|
|
|
|
// access to MachineFunction and can get the appropriate MachineFunctionInfo.
|
|
|
|
// Unfortunately, this is not possible when we're printing reference to
|
|
|
|
// Function (e.g. calling it and so on). Even more, there is no way to get the
|
|
|
|
// corresponding MachineFunctions: it can even be not created at all. That's
|
|
|
|
// why we should use additional structure, when we're collecting all necessary
|
|
|
|
// information.
|
|
|
|
//
|
|
|
|
// This structure is using e.g. for name decoration for stdcall & fastcall'ed
|
|
|
|
// function, since we have to use arguments' size for decoration.
|
|
|
|
typedef std::map<const Function*, X86MachineFunctionInfo> FMFInfoMap;
|
|
|
|
FMFInfoMap FunctionInfoMap;
|
|
|
|
|
|
|
|
void decorateName(std::string& Name, const GlobalValue* GV);
|
2005-07-02 06:44:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|