OLD | NEW |
1 //===-- MipsAsmPrinter.h - Mips LLVM assembly writer ----------------------===// | 1 //===-- MipsAsmPrinter.h - Mips LLVM assembly writer ----------------------===// |
2 // | 2 // |
3 // The LLVM Compiler Infrastructure | 3 // The LLVM Compiler Infrastructure |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 // | 9 // |
10 // Mips Assembly printer class. | 10 // Mips Assembly printer class. |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 raw_ostream &O); | 57 raw_ostream &O); |
58 void printOperand(const MachineInstr *MI, int opNum, raw_ostream &O); | 58 void printOperand(const MachineInstr *MI, int opNum, raw_ostream &O); |
59 void printUnsignedImm(const MachineInstr *MI, int opNum, raw_ostream &O); | 59 void printUnsignedImm(const MachineInstr *MI, int opNum, raw_ostream &O); |
60 void printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &O); | 60 void printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &O); |
61 void printMemOperandEA(const MachineInstr *MI, int opNum, raw_ostream &O); | 61 void printMemOperandEA(const MachineInstr *MI, int opNum, raw_ostream &O); |
62 void printFCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O, | 62 void printFCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O, |
63 const char *Modifier = 0); | 63 const char *Modifier = 0); |
64 void EmitStartOfAsmFile(Module &M); | 64 void EmitStartOfAsmFile(Module &M); |
65 virtual MachineLocation getDebugValueLocation(const MachineInstr *MI) const; | 65 virtual MachineLocation getDebugValueLocation(const MachineInstr *MI) const; |
66 void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS); | 66 void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS); |
| 67 |
| 68 // @LOCALMOD-START |
| 69 virtual unsigned GetTargetLabelAlign(const MachineInstr *MI) const; |
| 70 // @LOCALMOD-END |
67 }; | 71 }; |
68 } | 72 } |
69 | 73 |
70 #endif | 74 #endif |
71 | 75 |
OLD | NEW |