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

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

Issue 1722193002: [compiler] Drop the CompareNilIC. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE Created 4 years, 9 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-typed-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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 V(ChangeBitToBool) \ 197 V(ChangeBitToBool) \
198 V(Allocate) \ 198 V(Allocate) \
199 V(LoadField) \ 199 V(LoadField) \
200 V(LoadBuffer) \ 200 V(LoadBuffer) \
201 V(LoadElement) \ 201 V(LoadElement) \
202 V(StoreField) \ 202 V(StoreField) \
203 V(StoreBuffer) \ 203 V(StoreBuffer) \
204 V(StoreElement) \ 204 V(StoreElement) \
205 V(ObjectIsNumber) \ 205 V(ObjectIsNumber) \
206 V(ObjectIsReceiver) \ 206 V(ObjectIsReceiver) \
207 V(ObjectIsSmi) 207 V(ObjectIsSmi) \
208 V(ObjectIsUndetectable)
208 209
209 // Opcodes for Machine-level operators. 210 // Opcodes for Machine-level operators.
210 #define MACHINE_COMPARE_BINOP_LIST(V) \ 211 #define MACHINE_COMPARE_BINOP_LIST(V) \
211 V(Word32Equal) \ 212 V(Word32Equal) \
212 V(Word64Equal) \ 213 V(Word64Equal) \
213 V(Int32LessThan) \ 214 V(Int32LessThan) \
214 V(Int32LessThanOrEqual) \ 215 V(Int32LessThanOrEqual) \
215 V(Uint32LessThan) \ 216 V(Uint32LessThan) \
216 V(Uint32LessThanOrEqual) \ 217 V(Uint32LessThanOrEqual) \
217 V(Int64LessThan) \ 218 V(Int64LessThan) \
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 } 412 }
412 }; 413 };
413 414
414 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 415 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
415 416
416 } // namespace compiler 417 } // namespace compiler
417 } // namespace internal 418 } // namespace internal
418 } // namespace v8 419 } // namespace v8
419 420
420 #endif // V8_COMPILER_OPCODES_H_ 421 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698