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

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

Issue 2122853002: Implement UnaligedLoad and UnaligedStore turbofan operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Nits. Fixes some errors Created 4 years, 5 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 V(Mips64CvtSW) \ 114 V(Mips64CvtSW) \
115 V(Mips64CvtSUw) \ 115 V(Mips64CvtSUw) \
116 V(Mips64CvtSUl) \ 116 V(Mips64CvtSUl) \
117 V(Mips64CvtDL) \ 117 V(Mips64CvtDL) \
118 V(Mips64CvtDUw) \ 118 V(Mips64CvtDUw) \
119 V(Mips64CvtDUl) \ 119 V(Mips64CvtDUl) \
120 V(Mips64Lb) \ 120 V(Mips64Lb) \
121 V(Mips64Lbu) \ 121 V(Mips64Lbu) \
122 V(Mips64Sb) \ 122 V(Mips64Sb) \
123 V(Mips64Lh) \ 123 V(Mips64Lh) \
124 V(Mips64Ulh) \
124 V(Mips64Lhu) \ 125 V(Mips64Lhu) \
126 V(Mips64Ulhu) \
125 V(Mips64Sh) \ 127 V(Mips64Sh) \
128 V(Mips64Ush) \
129 V(Mips64Ld) \
130 V(Mips64Uld) \
126 V(Mips64Lw) \ 131 V(Mips64Lw) \
132 V(Mips64Ulw) \
127 V(Mips64Lwu) \ 133 V(Mips64Lwu) \
134 V(Mips64Ulwu) \
128 V(Mips64Sw) \ 135 V(Mips64Sw) \
129 V(Mips64Ld) \ 136 V(Mips64Usw) \
130 V(Mips64Sd) \ 137 V(Mips64Sd) \
138 V(Mips64Usd) \
131 V(Mips64Lwc1) \ 139 V(Mips64Lwc1) \
140 V(Mips64Ulwc1) \
132 V(Mips64Swc1) \ 141 V(Mips64Swc1) \
142 V(Mips64Uswc1) \
133 V(Mips64Ldc1) \ 143 V(Mips64Ldc1) \
144 V(Mips64Uldc1) \
134 V(Mips64Sdc1) \ 145 V(Mips64Sdc1) \
146 V(Mips64Usdc1) \
135 V(Mips64BitcastDL) \ 147 V(Mips64BitcastDL) \
136 V(Mips64BitcastLD) \ 148 V(Mips64BitcastLD) \
137 V(Mips64Float64ExtractLowWord32) \ 149 V(Mips64Float64ExtractLowWord32) \
138 V(Mips64Float64ExtractHighWord32) \ 150 V(Mips64Float64ExtractHighWord32) \
139 V(Mips64Float64InsertLowWord32) \ 151 V(Mips64Float64InsertLowWord32) \
140 V(Mips64Float64InsertHighWord32) \ 152 V(Mips64Float64InsertHighWord32) \
141 V(Mips64Float64Max) \ 153 V(Mips64Float64Max) \
142 V(Mips64Float64Min) \ 154 V(Mips64Float64Min) \
143 V(Mips64Float64SilenceNaN) \ 155 V(Mips64Float64SilenceNaN) \
144 V(Mips64Push) \ 156 V(Mips64Push) \
(...skipping 17 matching lines...) Expand all
162 #define TARGET_ADDRESSING_MODE_LIST(V) \ 174 #define TARGET_ADDRESSING_MODE_LIST(V) \
163 V(MRI) /* [%r0 + K] */ \ 175 V(MRI) /* [%r0 + K] */ \
164 V(MRR) /* [%r0 + %r1] */ 176 V(MRR) /* [%r0 + %r1] */
165 177
166 178
167 } // namespace compiler 179 } // namespace compiler
168 } // namespace internal 180 } // namespace internal
169 } // namespace v8 181 } // namespace v8
170 182
171 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ 183 #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