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

Side by Side Diff: src/IceAssemblerX86Base.h

Issue 1216933015: X8632 Templatization completed. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. Created 5 years, 5 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 | « src/IceAssemblerX8632.h ('k') | src/IceInstX8632.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/IceAssemblerX8632.h ('k') | src/IceInstX8632.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698