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

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

Issue 1413463009: Implemented the Word64Clz TurboFan operator for x64, arm64, and mips64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed a typing problem, and added mips64. Created 5 years, 1 month 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
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_MIPS_INSTRUCTION_CODES_MIPS_H_ 5 #ifndef V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
6 #define V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ 6 #define V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 19 matching lines...) Expand all
30 V(Mips64DmodU) \ 30 V(Mips64DmodU) \
31 V(Mips64And) \ 31 V(Mips64And) \
32 V(Mips64Or) \ 32 V(Mips64Or) \
33 V(Mips64Xor) \ 33 V(Mips64Xor) \
34 V(Mips64Clz) \ 34 V(Mips64Clz) \
35 V(Mips64Shl) \ 35 V(Mips64Shl) \
36 V(Mips64Shr) \ 36 V(Mips64Shr) \
37 V(Mips64Sar) \ 37 V(Mips64Sar) \
38 V(Mips64Ext) \ 38 V(Mips64Ext) \
39 V(Mips64Dext) \ 39 V(Mips64Dext) \
40 V(Mips64Dclz) \
40 V(Mips64Dshl) \ 41 V(Mips64Dshl) \
41 V(Mips64Dshr) \ 42 V(Mips64Dshr) \
42 V(Mips64Dsar) \ 43 V(Mips64Dsar) \
43 V(Mips64Ror) \ 44 V(Mips64Ror) \
44 V(Mips64Dror) \ 45 V(Mips64Dror) \
45 V(Mips64Mov) \ 46 V(Mips64Mov) \
46 V(Mips64Tst) \ 47 V(Mips64Tst) \
47 V(Mips64Cmp) \ 48 V(Mips64Cmp) \
48 V(Mips64CmpS) \ 49 V(Mips64CmpS) \
49 V(Mips64AddS) \ 50 V(Mips64AddS) \
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 #define TARGET_ADDRESSING_MODE_LIST(V) \ 123 #define TARGET_ADDRESSING_MODE_LIST(V) \
123 V(MRI) /* [%r0 + K] */ \ 124 V(MRI) /* [%r0 + K] */ \
124 V(MRR) /* [%r0 + %r1] */ 125 V(MRR) /* [%r0 + %r1] */
125 126
126 127
127 } // namespace compiler 128 } // namespace compiler
128 } // namespace internal 129 } // namespace internal
129 } // namespace v8 130 } // namespace v8
130 131
131 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ 132 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/code-generator-mips64.cc ('k') | src/compiler/mips64/instruction-selector-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698