OLD | NEW |
---|---|
1 //===- subzero/src/IceAssemblerX86Base.h - base x86 assembler -*- C++ -*---===// | 1 //===- subzero/src/IceAssemblerX86Base.h - base x86 assembler -*- 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 defines the AssemblerX86 template class for x86, the base of all | 18 /// \file |
19 // X86 assemblers. | 19 /// \brief Defines the AssemblerX86 template class for x86, the base of all |
Jim Stichnoth
2015/12/01 18:41:15
Reflow to 80-col.
rkotlerimgtec
2015/12/02 01:32:48
Done.
| |
20 /// X86 assemblers. | |
20 // | 21 // |
21 //===----------------------------------------------------------------------===// | 22 //===----------------------------------------------------------------------===// |
22 | 23 |
23 #ifndef SUBZERO_SRC_ICEASSEMBLERX86BASE_H | 24 #ifndef SUBZERO_SRC_ICEASSEMBLERX86BASE_H |
24 #define SUBZERO_SRC_ICEASSEMBLERX86BASE_H | 25 #define SUBZERO_SRC_ICEASSEMBLERX86BASE_H |
25 | 26 |
26 #include "IceAssembler.h" | 27 #include "IceAssembler.h" |
27 #include "IceDefs.h" | 28 #include "IceDefs.h" |
28 #include "IceOperand.h" | 29 #include "IceOperand.h" |
29 #include "IceTypes.h" | 30 #include "IceTypes.h" |
(...skipping 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1065 emitUint8(0x66); | 1066 emitUint8(0x66); |
1066 } | 1067 } |
1067 | 1068 |
1068 } // end of namespace X86Internal | 1069 } // end of namespace X86Internal |
1069 | 1070 |
1070 } // end of namespace Ice | 1071 } // end of namespace Ice |
1071 | 1072 |
1072 #include "IceAssemblerX86BaseImpl.h" | 1073 #include "IceAssemblerX86BaseImpl.h" |
1073 | 1074 |
1074 #endif // SUBZERO_SRC_ICEASSEMBLERX86BASE_H | 1075 #endif // SUBZERO_SRC_ICEASSEMBLERX86BASE_H |
OLD | NEW |