Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 //===- subzero/src/IceAssemblerMIPS32.h - Assembler for MIPS ----*- C++ -*-===// | 1 //===- subzero/src/IceAssemblerMIPS32.h - Assembler for MIPS ----*- C++ -*-===// |
| 2 // | 2 // |
| 3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 4 // for details. All rights reserved. Use of this source code is governed by a | 4 // for details. All rights reserved. Use of this source code is governed by a |
| 5 // BSD-style license that can be found in the LICENSE file. | 5 // BSD-style license that can be found in the LICENSE file. |
| 6 // | 6 // |
| 7 // Modified by the Subzero authors. | 7 // Modified by the Subzero authors. |
| 8 // | 8 // |
| 9 //===----------------------------------------------------------------------===// | 9 //===----------------------------------------------------------------------===// |
| 10 // | 10 // |
| 11 // The Subzero Code Generator | 11 // The Subzero Code Generator |
| 12 // | 12 // |
| 13 // This file is distributed under the University of Illinois Open Source | 13 // This file is distributed under the University of Illinois Open Source |
| 14 // License. See LICENSE.TXT for details. | 14 // License. See LICENSE.TXT for details. |
| 15 // | 15 // |
| 16 //===----------------------------------------------------------------------===// | 16 //===----------------------------------------------------------------------===// |
| 17 /// | 17 /// |
| 18 /// \file | 18 /// \file |
| 19 /// This file implements the Assembler class for MIPS32. | 19 /// \brief Implements the Assembler class for MIPS32. |
|
Jim Stichnoth
2015/12/02 21:50:38
Declares, not implements, right?
(For now, I gues
rkotlerimgtec
2015/12/02 23:58:13
Done.
| |
| 20 /// | 20 /// |
| 21 //===----------------------------------------------------------------------===// | 21 //===----------------------------------------------------------------------===// |
| 22 | 22 |
| 23 #ifndef SUBZERO_SRC_ICEASSEMBLERMIPS32_H | 23 #ifndef SUBZERO_SRC_ICEASSEMBLERMIPS32_H |
| 24 #define SUBZERO_SRC_ICEASSEMBLERMIPS32_H | 24 #define SUBZERO_SRC_ICEASSEMBLERMIPS32_H |
| 25 | 25 |
| 26 #include "IceAssembler.h" | 26 #include "IceAssembler.h" |
| 27 #include "IceDefs.h" | 27 #include "IceDefs.h" |
| 28 #include "IceFixups.h" | 28 #include "IceFixups.h" |
| 29 | 29 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 78 | 78 |
| 79 static bool classof(const Assembler *Asm) { | 79 static bool classof(const Assembler *Asm) { |
| 80 return Asm->getKind() == Asm_MIPS32; | 80 return Asm->getKind() == Asm_MIPS32; |
| 81 } | 81 } |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 } // end of namespace MIPS32 | 84 } // end of namespace MIPS32 |
| 85 } // end of namespace Ice | 85 } // end of namespace Ice |
| 86 | 86 |
| 87 #endif // SUBZERO_SRC_ICEASSEMBLERMIPS32_H | 87 #endif // SUBZERO_SRC_ICEASSEMBLERMIPS32_H |
| OLD | NEW |