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

Side by Side Diff: src/compiler/x64/instruction-codes-x64.h

Issue 654833002: [turbofan] Optimize division/modulus by constant. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 | « src/compiler/x64/code-generator-x64.cc ('k') | src/compiler/x64/instruction-selector-x64.cc » ('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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 5 #ifndef V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 10 matching lines...) Expand all
21 V(X64Test) \ 21 V(X64Test) \
22 V(X64Test32) \ 22 V(X64Test32) \
23 V(X64Or) \ 23 V(X64Or) \
24 V(X64Or32) \ 24 V(X64Or32) \
25 V(X64Xor) \ 25 V(X64Xor) \
26 V(X64Xor32) \ 26 V(X64Xor32) \
27 V(X64Sub) \ 27 V(X64Sub) \
28 V(X64Sub32) \ 28 V(X64Sub32) \
29 V(X64Imul) \ 29 V(X64Imul) \
30 V(X64Imul32) \ 30 V(X64Imul32) \
31 V(X64ImulHigh32) \
31 V(X64Idiv) \ 32 V(X64Idiv) \
32 V(X64Idiv32) \ 33 V(X64Idiv32) \
33 V(X64Udiv) \ 34 V(X64Udiv) \
34 V(X64Udiv32) \ 35 V(X64Udiv32) \
35 V(X64Not) \ 36 V(X64Not) \
36 V(X64Not32) \ 37 V(X64Not32) \
37 V(X64Neg) \ 38 V(X64Neg) \
38 V(X64Neg32) \ 39 V(X64Neg32) \
39 V(X64Shl) \ 40 V(X64Shl) \
40 V(X64Shl32) \ 41 V(X64Shl32) \
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 V(M1I) /* [ %r2*1 + K] */ \ 105 V(M1I) /* [ %r2*1 + K] */ \
105 V(M2I) /* [ %r2*2 + K] */ \ 106 V(M2I) /* [ %r2*2 + K] */ \
106 V(M4I) /* [ %r2*4 + K] */ \ 107 V(M4I) /* [ %r2*4 + K] */ \
107 V(M8I) /* [ %r2*8 + K] */ 108 V(M8I) /* [ %r2*8 + K] */
108 109
109 } // namespace compiler 110 } // namespace compiler
110 } // namespace internal 111 } // namespace internal
111 } // namespace v8 112 } // namespace v8
112 113
113 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 114 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
OLDNEW
« no previous file with comments | « src/compiler/x64/code-generator-x64.cc ('k') | src/compiler/x64/instruction-selector-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698