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

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

Issue 2206333003: [stubs] Convert GrowElementsStub to TurboFan (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 4 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/code-stubs-hydrogen.cc ('k') | src/crankshaft/arm/lithium-arm.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 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 #include <memory> 9 #include <memory>
10 10
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 V(Int32GreaterThan) \ 50 V(Int32GreaterThan) \
51 V(Int32GreaterThanOrEqual) \ 51 V(Int32GreaterThanOrEqual) \
52 V(Int32LessThan) \ 52 V(Int32LessThan) \
53 V(Int32LessThanOrEqual) \ 53 V(Int32LessThanOrEqual) \
54 V(IntPtrLessThan) \ 54 V(IntPtrLessThan) \
55 V(IntPtrLessThanOrEqual) \ 55 V(IntPtrLessThanOrEqual) \
56 V(IntPtrGreaterThan) \ 56 V(IntPtrGreaterThan) \
57 V(IntPtrGreaterThanOrEqual) \ 57 V(IntPtrGreaterThanOrEqual) \
58 V(IntPtrEqual) \ 58 V(IntPtrEqual) \
59 V(Uint32LessThan) \ 59 V(Uint32LessThan) \
60 V(Uint32GreaterThanOrEqual) \
60 V(UintPtrLessThan) \ 61 V(UintPtrLessThan) \
61 V(UintPtrGreaterThanOrEqual) \ 62 V(UintPtrGreaterThanOrEqual) \
62 V(WordEqual) \ 63 V(WordEqual) \
63 V(WordNotEqual) \ 64 V(WordNotEqual) \
64 V(Word32Equal) \ 65 V(Word32Equal) \
65 V(Word32NotEqual) \ 66 V(Word32NotEqual) \
66 V(Word64Equal) \ 67 V(Word64Equal) \
67 V(Word64NotEqual) 68 V(Word64NotEqual)
68 69
69 #define CODE_ASSEMBLER_BINARY_OP_LIST(V) \ 70 #define CODE_ASSEMBLER_BINARY_OP_LIST(V) \
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 // Map of variables to the list of value nodes that have been added from each 492 // Map of variables to the list of value nodes that have been added from each
492 // merge path in their order of merging. 493 // merge path in their order of merging.
493 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 494 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
494 }; 495 };
495 496
496 } // namespace compiler 497 } // namespace compiler
497 } // namespace internal 498 } // namespace internal
498 } // namespace v8 499 } // namespace v8
499 500
500 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 501 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/code-stubs-hydrogen.cc ('k') | src/crankshaft/arm/lithium-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698