| OLD | NEW |
| 1 //===- subzero/src/IceAssemblerX8632.h - Assembler for x86-32 ---*- C++ -*-===// | 1 //===- subzero/src/IceAssemblerX8632.h - Assembler for x86-32 ---*- 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 // This file implements the Assembler class for x86-32. | 18 /// \file |
| 19 // | 19 /// This file implements the Assembler class for x86-32. |
| 20 /// |
| 20 //===----------------------------------------------------------------------===// | 21 //===----------------------------------------------------------------------===// |
| 21 | 22 |
| 22 #ifndef SUBZERO_SRC_ICEASSEMBLERX8632_H | 23 #ifndef SUBZERO_SRC_ICEASSEMBLERX8632_H |
| 23 #define SUBZERO_SRC_ICEASSEMBLERX8632_H | 24 #define SUBZERO_SRC_ICEASSEMBLERX8632_H |
| 24 | 25 |
| 25 #include "IceAssembler.h" | 26 #include "IceAssembler.h" |
| 26 #include "IceAssemblerX86Base.h" | 27 #include "IceAssemblerX86Base.h" |
| 27 #include "IceDefs.h" | 28 #include "IceDefs.h" |
| 28 #include "IceOperand.h" | 29 #include "IceOperand.h" |
| 29 #include "IceTargetLoweringX8632Traits.h" | 30 #include "IceTargetLoweringX8632Traits.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 48 | 49 |
| 49 static bool classof(const Assembler *Asm) { | 50 static bool classof(const Assembler *Asm) { |
| 50 return Asm->getKind() == Asm_X8632; | 51 return Asm->getKind() == Asm_X8632; |
| 51 } | 52 } |
| 52 }; | 53 }; |
| 53 | 54 |
| 54 } // end of namespace X8632 | 55 } // end of namespace X8632 |
| 55 } // end of namespace Ice | 56 } // end of namespace Ice |
| 56 | 57 |
| 57 #endif // SUBZERO_SRC_ICEASSEMBLERX8632_H | 58 #endif // SUBZERO_SRC_ICEASSEMBLERX8632_H |
| OLD | NEW |