OLD | NEW |
1 //===-- MipsAsmPrinter.h - Mips LLVM Assembly Printer ----------*- C++ -*--===// | 1 //===-- MipsAsmPrinter.h - Mips LLVM Assembly Printer ----------*- C++ -*--===// |
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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 void printUnsignedImm(const MachineInstr *MI, int opNum, raw_ostream &O); | 131 void printUnsignedImm(const MachineInstr *MI, int opNum, raw_ostream &O); |
132 void printUnsignedImm8(const MachineInstr *MI, int opNum, raw_ostream &O); | 132 void printUnsignedImm8(const MachineInstr *MI, int opNum, raw_ostream &O); |
133 void printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &O); | 133 void printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &O); |
134 void printMemOperandEA(const MachineInstr *MI, int opNum, raw_ostream &O); | 134 void printMemOperandEA(const MachineInstr *MI, int opNum, raw_ostream &O); |
135 void printFCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O, | 135 void printFCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O, |
136 const char *Modifier = nullptr); | 136 const char *Modifier = nullptr); |
137 void printRegisterList(const MachineInstr *MI, int opNum, raw_ostream &O); | 137 void printRegisterList(const MachineInstr *MI, int opNum, raw_ostream &O); |
138 void EmitStartOfAsmFile(Module &M) override; | 138 void EmitStartOfAsmFile(Module &M) override; |
139 void EmitEndOfAsmFile(Module &M) override; | 139 void EmitEndOfAsmFile(Module &M) override; |
140 void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS); | 140 void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS); |
| 141 |
| 142 // @LOCALMOD-START |
| 143 unsigned GetTargetLabelAlign(const MachineInstr *MI) const override; |
| 144 // @LOCALMOD-END |
141 }; | 145 }; |
142 } | 146 } |
143 | 147 |
144 #endif | 148 #endif |
145 | 149 |
OLD | NEW |