| 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 // |
| (...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 Buffer.emitFixup(fixup); | 941 Buffer.emitFixup(fixup); |
| 942 } | 942 } |
| 943 | 943 |
| 944 template <class Machine> | 944 template <class Machine> |
| 945 inline void AssemblerX86Base<Machine>::emitOperandSizeOverride() { | 945 inline void AssemblerX86Base<Machine>::emitOperandSizeOverride() { |
| 946 emitUint8(0x66); | 946 emitUint8(0x66); |
| 947 } | 947 } |
| 948 | 948 |
| 949 } // end of namespace X86Internal | 949 } // end of namespace X86Internal |
| 950 | 950 |
| 951 namespace X8632 { | |
| 952 using Immediate = ::Ice::X86Internal::Immediate; | |
| 953 using Label = ::Ice::X86Internal::Label; | |
| 954 } // end of namespace X8632 | |
| 955 } // end of namespace Ice | 951 } // end of namespace Ice |
| 956 | 952 |
| 957 #include "IceAssemblerX86BaseImpl.h" | 953 #include "IceAssemblerX86BaseImpl.h" |
| 958 | 954 |
| 959 #endif // SUBZERO_SRC_ICEASSEMBLERX86BASE_H | 955 #endif // SUBZERO_SRC_ICEASSEMBLERX86BASE_H |
| OLD | NEW |