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

Side by Side Diff: runtime/vm/constants_x64.h

Issue 13093005: Revert 12534006 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « runtime/vm/constants_ia32.h ('k') | runtime/vm/intrinsifier.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 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_CONSTANTS_X64_H_ 5 #ifndef VM_CONSTANTS_X64_H_
6 #define VM_CONSTANTS_X64_H_ 6 #define VM_CONSTANTS_X64_H_
7 7
8 namespace dart { 8 namespace dart {
9 9
10 enum Register { 10 enum Register {
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 // Dart stack frame layout. 101 // Dart stack frame layout.
102 static const int kLastParamSlotIndex = 2; 102 static const int kLastParamSlotIndex = 2;
103 static const int kFirstLocalSlotIndex = -2; 103 static const int kFirstLocalSlotIndex = -2;
104 104
105 105
106 enum ScaleFactor { 106 enum ScaleFactor {
107 TIMES_1 = 0, 107 TIMES_1 = 0,
108 TIMES_2 = 1, 108 TIMES_2 = 1,
109 TIMES_4 = 2, 109 TIMES_4 = 2,
110 TIMES_8 = 3, 110 TIMES_8 = 3,
111 TIMES_16 = 4,
112 TIMES_HALF_WORD_SIZE = kWordSizeLog2 - 1 111 TIMES_HALF_WORD_SIZE = kWordSizeLog2 - 1
113 }; 112 };
114 113
115 114
116 enum Condition { 115 enum Condition {
117 OVERFLOW = 0, 116 OVERFLOW = 0,
118 NO_OVERFLOW = 1, 117 NO_OVERFLOW = 1,
119 BELOW = 2, 118 BELOW = 2,
120 ABOVE_EQUAL = 3, 119 ABOVE_EQUAL = 3,
121 EQUAL = 4, 120 EQUAL = 4,
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 }; 164 };
166 165
167 166
168 // The largest multibyte nop we will emit. This could go up to 15 if it 167 // The largest multibyte nop we will emit. This could go up to 15 if it
169 // becomes important to us. 168 // becomes important to us.
170 const int MAX_NOP_SIZE = 8; 169 const int MAX_NOP_SIZE = 8;
171 170
172 } // namespace dart 171 } // namespace dart
173 172
174 #endif // VM_CONSTANTS_X64_H_ 173 #endif // VM_CONSTANTS_X64_H_
OLDNEW
« no previous file with comments | « runtime/vm/constants_ia32.h ('k') | runtime/vm/intrinsifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698