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

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

Issue 1045203003: MIPS64: [turbofan] Add backend support for float32 operations. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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 27 matching lines...) Expand all
38 V(Mips64Ext) \ 38 V(Mips64Ext) \
39 V(Mips64Dext) \ 39 V(Mips64Dext) \
40 V(Mips64Dshl) \ 40 V(Mips64Dshl) \
41 V(Mips64Dshr) \ 41 V(Mips64Dshr) \
42 V(Mips64Dsar) \ 42 V(Mips64Dsar) \
43 V(Mips64Ror) \ 43 V(Mips64Ror) \
44 V(Mips64Dror) \ 44 V(Mips64Dror) \
45 V(Mips64Mov) \ 45 V(Mips64Mov) \
46 V(Mips64Tst) \ 46 V(Mips64Tst) \
47 V(Mips64Cmp) \ 47 V(Mips64Cmp) \
48 V(Mips64CmpS) \
49 V(Mips64AddS) \
50 V(Mips64SubS) \
51 V(Mips64MulS) \
52 V(Mips64DivS) \
53 V(Mips64ModS) \
54 V(Mips64SqrtS) \
48 V(Mips64CmpD) \ 55 V(Mips64CmpD) \
49 V(Mips64AddD) \ 56 V(Mips64AddD) \
50 V(Mips64SubD) \ 57 V(Mips64SubD) \
51 V(Mips64MulD) \ 58 V(Mips64MulD) \
52 V(Mips64DivD) \ 59 V(Mips64DivD) \
53 V(Mips64ModD) \ 60 V(Mips64ModD) \
54 V(Mips64SqrtD) \ 61 V(Mips64SqrtD) \
55 V(Mips64Float64RoundDown) \ 62 V(Mips64Float64RoundDown) \
56 V(Mips64Float64RoundTruncate) \ 63 V(Mips64Float64RoundTruncate) \
57 V(Mips64Float64RoundUp) \ 64 V(Mips64Float64RoundUp) \
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 #define TARGET_ADDRESSING_MODE_LIST(V) \ 109 #define TARGET_ADDRESSING_MODE_LIST(V) \
103 V(MRI) /* [%r0 + K] */ \ 110 V(MRI) /* [%r0 + K] */ \
104 V(MRR) /* [%r0 + %r1] */ 111 V(MRR) /* [%r0 + %r1] */
105 112
106 113
107 } // namespace compiler 114 } // namespace compiler
108 } // namespace internal 115 } // namespace internal
109 } // namespace v8 116 } // namespace v8
110 117
111 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ 118 #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