2005-07-01 22:44:09 +00:00
|
|
|
//===-- X86IntelAsmPrinter.h - Convert X86 LLVM code to Intel assembly ----===//
|
|
|
|
//
|
|
|
|
// 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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Intel assembly code printer class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86INTELASMPRINTER_H
|
|
|
|
#define X86INTELASMPRINTER_H
|
|
|
|
|
2008-08-17 18:24:26 +00:00
|
|
|
#include "../X86.h"
|
|
|
|
#include "../X86MachineFunctionInfo.h"
|
|
|
|
#include "../X86TargetMachine.h"
|
2008-06-28 11:07:54 +00:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
|
|
#include "llvm/ADT/StringSet.h"
|
|
|
|
#include "llvm/Support/Compiler.h"
|
2009-07-14 20:18:05 +00:00
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2005-07-01 22:44:09 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2008-06-28 11:07:54 +00:00
|
|
|
struct VISIBILITY_HIDDEN X86IntelAsmPrinter : public AsmPrinter {
|
2009-07-15 17:27:11 +00:00
|
|
|
explicit X86IntelAsmPrinter(formatted_raw_ostream &O, X86TargetMachine &TM,
|
2009-07-01 01:48:54 +00:00
|
|
|
const TargetAsmInfo *T, bool V)
|
|
|
|
: AsmPrinter(O, TM, T, V) {}
|
2005-07-01 22:44:09 +00: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-06 23:41:19 +00:00
|
|
|
void printOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
const char *Modifier = 0) {
|
2005-07-01 22:44:09 +00:00
|
|
|
const MachineOperand &MO = MI->getOperand(OpNo);
|
2008-10-03 15:45:36 +00:00
|
|
|
if (MO.isReg()) {
|
2008-02-10 18:45:23 +00:00
|
|
|
assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
|
|
|
|
"Not physreg??");
|
2008-07-07 22:21:06 +00:00
|
|
|
O << TM.getRegisterInfo()->get(MO.getReg()).Name; // Capitalized names
|
2005-07-01 22:44:09 +00:00
|
|
|
} else {
|
2006-02-06 23:41:19 +00:00
|
|
|
printOp(MO, Modifier);
|
2005-07-01 22:44:09 +00:00
|
|
|
}
|
|
|
|
}
|
2009-06-20 19:34:09 +00:00
|
|
|
|
|
|
|
void print_pcrel_imm(const MachineInstr *MI, unsigned OpNo);
|
|
|
|
|
2005-07-01 22:44:09 +00:00
|
|
|
|
2005-11-30 18:54:35 +00: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-11-30 18:57:39 +00:00
|
|
|
O << "DWORD PTR ";
|
2005-11-30 18:54:35 +00:00
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printi64mem(const MachineInstr *MI, unsigned OpNo) {
|
2005-11-30 18:57:39 +00:00
|
|
|
O << "QWORD PTR ";
|
2005-11-30 18:54:35 +00:00
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2006-02-22 02:26:30 +00:00
|
|
|
void printi128mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "XMMWORD PTR ";
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2009-06-30 19:24:59 +00:00
|
|
|
void printi256mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "YMMWORD PTR ";
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2005-11-30 18:54:35 +00: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-05 18:49:15 +00:00
|
|
|
void printf80mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "XWORD PTR ";
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2006-01-31 22:28:30 +00:00
|
|
|
void printf128mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "XMMWORD PTR ";
|
2005-07-01 22:44:09 +00:00
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2009-06-30 19:24:59 +00:00
|
|
|
void printf256mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "YMMWORD PTR ";
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2009-04-08 21:14:34 +00:00
|
|
|
void printlea32mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "DWORD PTR ";
|
|
|
|
printLeaMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printlea64mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "QWORD PTR ";
|
|
|
|
printLeaMemReference(MI, OpNo);
|
|
|
|
}
|
2006-09-08 06:48:29 +00:00
|
|
|
void printlea64_32mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
O << "QWORD PTR ";
|
2009-04-08 21:14:34 +00:00
|
|
|
printLeaMemReference(MI, OpNo, "subreg64");
|
2006-09-08 06:48:29 +00:00
|
|
|
}
|
2005-07-01 22:44:09 +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-05-02 01:16:28 +00:00
|
|
|
void printMachineInstruction(const MachineInstr *MI);
|
2006-02-06 23:41:19 +00:00
|
|
|
void printOp(const MachineOperand &MO, const char *Modifier = 0);
|
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);
|
2009-04-08 21:14:34 +00:00
|
|
|
void printLeaMemReference(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);
|
|
|
|
}
|
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);
|
|
|
|
bool doInitialization(Module &M);
|
2006-05-02 03:11:50 +00:00
|
|
|
bool doFinalization(Module &M);
|
2008-06-28 11:07:54 +00:00
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
2006-05-02 01:16:28 +00:00
|
|
|
virtual void EmitString(const ConstantArray *CVA) const;
|
2008-06-28 11:07:54 +00:00
|
|
|
|
|
|
|
// Necessary for dllexport support
|
|
|
|
StringSet<> DLLExportedFns, DLLExportedGVs;
|
2005-07-01 22:44:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|