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

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

Issue 1588383002: MIPS: [turbofan] Implement Word32Ctz, Word64Ctz, Word32Popcnt and Word64Popcnt (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove unneccesary mov instructions Created 4 years, 10 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
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 10 matching lines...) Expand all
21 V(MipsMulHighU) \ 21 V(MipsMulHighU) \
22 V(MipsDiv) \ 22 V(MipsDiv) \
23 V(MipsDivU) \ 23 V(MipsDivU) \
24 V(MipsMod) \ 24 V(MipsMod) \
25 V(MipsModU) \ 25 V(MipsModU) \
26 V(MipsAnd) \ 26 V(MipsAnd) \
27 V(MipsOr) \ 27 V(MipsOr) \
28 V(MipsNor) \ 28 V(MipsNor) \
29 V(MipsXor) \ 29 V(MipsXor) \
30 V(MipsClz) \ 30 V(MipsClz) \
31 V(MipsCtz) \
32 V(MipsPopcnt) \
31 V(MipsShl) \ 33 V(MipsShl) \
32 V(MipsShr) \ 34 V(MipsShr) \
33 V(MipsSar) \ 35 V(MipsSar) \
34 V(MipsExt) \ 36 V(MipsExt) \
35 V(MipsIns) \ 37 V(MipsIns) \
36 V(MipsRor) \ 38 V(MipsRor) \
37 V(MipsMov) \ 39 V(MipsMov) \
38 V(MipsTst) \ 40 V(MipsTst) \
39 V(MipsCmp) \ 41 V(MipsCmp) \
40 V(MipsCmpS) \ 42 V(MipsCmpS) \
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 #define TARGET_ADDRESSING_MODE_LIST(V) \ 123 #define TARGET_ADDRESSING_MODE_LIST(V) \
122 V(MRI) /* [%r0 + K] */ \ 124 V(MRI) /* [%r0 + K] */ \
123 V(MRR) /* [%r0 + %r1] */ 125 V(MRR) /* [%r0 + %r1] */
124 126
125 127
126 } // namespace compiler 128 } // namespace compiler
127 } // namespace internal 129 } // namespace internal
128 } // namespace v8 130 } // namespace v8
129 131
130 #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/mips/code-generator-mips.cc ('k') | src/compiler/mips/instruction-selector-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698