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

Side by Side Diff: src/compiler/code-assembler.h

Issue 1973873004: [Interpreter] Make Fast-paths of StackCheck, Jump Return, ForInNext not build a frame. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 7 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 | « no previous file | src/interpreter/interpreter.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_CODE_ASSEMBLER_H_ 5 #ifndef V8_COMPILER_CODE_ASSEMBLER_H_
6 #define V8_COMPILER_CODE_ASSEMBLER_H_ 6 #define V8_COMPILER_CODE_ASSEMBLER_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 // Clients of this interface shouldn't depend on lots of compiler internals. 10 // Clients of this interface shouldn't depend on lots of compiler internals.
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 V(Int32GreaterThan) \ 49 V(Int32GreaterThan) \
50 V(Int32GreaterThanOrEqual) \ 50 V(Int32GreaterThanOrEqual) \
51 V(Int32LessThan) \ 51 V(Int32LessThan) \
52 V(Int32LessThanOrEqual) \ 52 V(Int32LessThanOrEqual) \
53 V(IntPtrLessThan) \ 53 V(IntPtrLessThan) \
54 V(IntPtrLessThanOrEqual) \ 54 V(IntPtrLessThanOrEqual) \
55 V(IntPtrGreaterThan) \ 55 V(IntPtrGreaterThan) \
56 V(IntPtrGreaterThanOrEqual) \ 56 V(IntPtrGreaterThanOrEqual) \
57 V(IntPtrEqual) \ 57 V(IntPtrEqual) \
58 V(Uint32LessThan) \ 58 V(Uint32LessThan) \
59 V(UintPtrLessThan) \
59 V(UintPtrGreaterThanOrEqual) \ 60 V(UintPtrGreaterThanOrEqual) \
60 V(WordEqual) \ 61 V(WordEqual) \
61 V(WordNotEqual) \ 62 V(WordNotEqual) \
62 V(Word32Equal) \ 63 V(Word32Equal) \
63 V(Word32NotEqual) \ 64 V(Word32NotEqual) \
64 V(Word64Equal) \ 65 V(Word64Equal) \
65 V(Word64NotEqual) 66 V(Word64NotEqual)
66 67
67 #define CODE_ASSEMBLER_BINARY_OP_LIST(V) \ 68 #define CODE_ASSEMBLER_BINARY_OP_LIST(V) \
68 CODE_ASSEMBLER_COMPARE_BINARY_OP_LIST(V) \ 69 CODE_ASSEMBLER_COMPARE_BINARY_OP_LIST(V) \
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 // Map of variables to the list of value nodes that have been added from each 391 // Map of variables to the list of value nodes that have been added from each
391 // merge path in their order of merging. 392 // merge path in their order of merging.
392 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 393 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
393 }; 394 };
394 395
395 } // namespace compiler 396 } // namespace compiler
396 } // namespace internal 397 } // namespace internal
397 } // namespace v8 398 } // namespace v8
398 399
399 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 400 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/interpreter/interpreter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698