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

Side by Side Diff: src/interpreter/bytecode-peephole-table.h

Issue 2547043002: [Interpreter] Optimize equality check with null/undefined with a check on the map. (Closed)
Patch Set: Address comments from Ross. Created 4 years 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/interpreter/bytecode-peephole-optimizer.cc ('k') | src/interpreter/bytecodes.h » ('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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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_INTERPRETER_BYTECODE_PEEPHOLE_TABLE_H_ 5 #ifndef V8_INTERPRETER_BYTECODE_PEEPHOLE_TABLE_H_
6 #define V8_INTERPRETER_BYTECODE_PEEPHOLE_TABLE_H_ 6 #define V8_INTERPRETER_BYTECODE_PEEPHOLE_TABLE_H_
7 7
8 #include "src/interpreter/bytecodes.h" 8 #include "src/interpreter/bytecodes.h"
9 9
10 namespace v8 { 10 namespace v8 {
11 namespace internal { 11 namespace internal {
12 namespace interpreter { 12 namespace interpreter {
13 13
14 #define PEEPHOLE_NON_JUMP_ACTION_LIST(V) \ 14 #define PEEPHOLE_NON_JUMP_ACTION_LIST(V) \
15 V(DefaultAction) \ 15 V(DefaultAction) \
16 V(UpdateLastAction) \ 16 V(UpdateLastAction) \
17 V(UpdateLastIfSourceInfoPresentAction) \ 17 V(UpdateLastIfSourceInfoPresentAction) \
18 V(ElideCurrentAction) \ 18 V(ElideCurrentAction) \
19 V(ElideCurrentIfOperand0MatchesAction) \ 19 V(ElideCurrentIfOperand0MatchesAction) \
20 V(ElideLastAction) \ 20 V(ElideLastAction) \
21 V(ChangeBytecodeAction) \ 21 V(ChangeBytecodeAction) \
22 V(TransformLdaSmiBinaryOpToBinaryOpWithSmiAction) \ 22 V(TransformLdaSmiBinaryOpToBinaryOpWithSmiAction) \
23 V(TransformLdaZeroBinaryOpToBinaryOpWithZeroAction) 23 V(TransformLdaZeroBinaryOpToBinaryOpWithZeroAction) \
24 V(TransformEqualityWithNullOrUndefinedToTestUndetectableAction)
24 25
25 #define PEEPHOLE_JUMP_ACTION_LIST(V) \ 26 #define PEEPHOLE_JUMP_ACTION_LIST(V) \
26 V(DefaultJumpAction) \ 27 V(DefaultJumpAction) \
27 V(UpdateLastJumpAction) \ 28 V(UpdateLastJumpAction) \
28 V(ChangeJumpBytecodeAction) \ 29 V(ChangeJumpBytecodeAction) \
29 V(ElideLastBeforeJumpAction) 30 V(ElideLastBeforeJumpAction)
30 31
31 #define PEEPHOLE_ACTION_LIST(V) \ 32 #define PEEPHOLE_ACTION_LIST(V) \
32 PEEPHOLE_NON_JUMP_ACTION_LIST(V) \ 33 PEEPHOLE_NON_JUMP_ACTION_LIST(V) \
33 PEEPHOLE_JUMP_ACTION_LIST(V) 34 PEEPHOLE_JUMP_ACTION_LIST(V)
(...skipping 28 matching lines...) Expand all
62 63
63 static const PeepholeActionAndData row_data_[][kNumberOfBytecodes]; 64 static const PeepholeActionAndData row_data_[][kNumberOfBytecodes];
64 static const PeepholeActionAndData* const row_[kNumberOfBytecodes]; 65 static const PeepholeActionAndData* const row_[kNumberOfBytecodes];
65 }; 66 };
66 67
67 } // namespace interpreter 68 } // namespace interpreter
68 } // namespace internal 69 } // namespace internal
69 } // namespace v8 70 } // namespace v8
70 71
71 #endif // V8_INTERPRETER_BYTECODE_PEEPHOLE_TABLE_H_ 72 #endif // V8_INTERPRETER_BYTECODE_PEEPHOLE_TABLE_H_
OLDNEW
« no previous file with comments | « src/interpreter/bytecode-peephole-optimizer.cc ('k') | src/interpreter/bytecodes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698