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

Side by Side Diff: src/compiler/opcodes.h

Issue 1295433002: [runtime] Remove useless IN builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE again. Remove unused ReplaceWithBuiltinCall. Created 5 years, 3 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
« no previous file with comments | « src/compiler/js-intrinsic-lowering.cc ('k') | src/compiler/simplified-lowering.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 V(ChangeFloat64ToTagged) \ 185 V(ChangeFloat64ToTagged) \
186 V(ChangeBoolToBit) \ 186 V(ChangeBoolToBit) \
187 V(ChangeBitToBool) \ 187 V(ChangeBitToBool) \
188 V(Allocate) \ 188 V(Allocate) \
189 V(LoadField) \ 189 V(LoadField) \
190 V(LoadBuffer) \ 190 V(LoadBuffer) \
191 V(LoadElement) \ 191 V(LoadElement) \
192 V(StoreField) \ 192 V(StoreField) \
193 V(StoreBuffer) \ 193 V(StoreBuffer) \
194 V(StoreElement) \ 194 V(StoreElement) \
195 V(ObjectIsSmi) \ 195 V(ObjectIsSmi)
196 V(ObjectIsNonNegativeSmi)
197 196
198 // Opcodes for Machine-level operators. 197 // Opcodes for Machine-level operators.
199 #define MACHINE_COMPARE_BINOP_LIST(V) \ 198 #define MACHINE_COMPARE_BINOP_LIST(V) \
200 V(Word32Equal) \ 199 V(Word32Equal) \
201 V(Word64Equal) \ 200 V(Word64Equal) \
202 V(Int32LessThan) \ 201 V(Int32LessThan) \
203 V(Int32LessThanOrEqual) \ 202 V(Int32LessThanOrEqual) \
204 V(Uint32LessThan) \ 203 V(Uint32LessThan) \
205 V(Uint32LessThanOrEqual) \ 204 V(Uint32LessThanOrEqual) \
206 V(Int64LessThan) \ 205 V(Int64LessThan) \
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 } 361 }
363 }; 362 };
364 363
365 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 364 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
366 365
367 } // namespace compiler 366 } // namespace compiler
368 } // namespace internal 367 } // namespace internal
369 } // namespace v8 368 } // namespace v8
370 369
371 #endif // V8_COMPILER_OPCODES_H_ 370 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-intrinsic-lowering.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698