Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(211)

Side by Side Diff: llvm/lib/Target/Mips/MipsAsmPrinter.h

Issue 8273005: [MIPS] Initial support for MIPS architecture. (Closed)
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « llvm/lib/Target/Mips/Mips.h ('k') | llvm/lib/Target/Mips/MipsAsmPrinter.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « llvm/lib/Target/Mips/Mips.h ('k') | llvm/lib/Target/Mips/MipsAsmPrinter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698