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

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

Issue 2385423005: [stubs] Implement fast TF Builtin for Object.create (Closed)
Patch Set: removing unused symbol Created 4 years, 2 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-stub-assembler.cc ('k') | src/objects-printer.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 #include <memory> 9 #include <memory>
10 10
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 V(Int32LessThanOrEqual) \ 51 V(Int32LessThanOrEqual) \
52 V(IntPtrLessThan) \ 52 V(IntPtrLessThan) \
53 V(IntPtrLessThanOrEqual) \ 53 V(IntPtrLessThanOrEqual) \
54 V(IntPtrGreaterThan) \ 54 V(IntPtrGreaterThan) \
55 V(IntPtrGreaterThanOrEqual) \ 55 V(IntPtrGreaterThanOrEqual) \
56 V(IntPtrEqual) \ 56 V(IntPtrEqual) \
57 V(Uint32LessThan) \ 57 V(Uint32LessThan) \
58 V(Uint32LessThanOrEqual) \ 58 V(Uint32LessThanOrEqual) \
59 V(Uint32GreaterThanOrEqual) \ 59 V(Uint32GreaterThanOrEqual) \
60 V(UintPtrLessThan) \ 60 V(UintPtrLessThan) \
61 V(UintPtrLessThanOrEqual) \
61 V(UintPtrGreaterThan) \ 62 V(UintPtrGreaterThan) \
62 V(UintPtrGreaterThanOrEqual) \ 63 V(UintPtrGreaterThanOrEqual) \
63 V(WordEqual) \ 64 V(WordEqual) \
64 V(WordNotEqual) \ 65 V(WordNotEqual) \
65 V(Word32Equal) \ 66 V(Word32Equal) \
66 V(Word32NotEqual) \ 67 V(Word32NotEqual) \
67 V(Word64Equal) \ 68 V(Word64Equal) \
68 V(Word64NotEqual) 69 V(Word64NotEqual)
69 70
70 #define CODE_ASSEMBLER_BINARY_OP_LIST(V) \ 71 #define CODE_ASSEMBLER_BINARY_OP_LIST(V) \
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 // Map of variables to the list of value nodes that have been added from each 503 // Map of variables to the list of value nodes that have been added from each
503 // merge path in their order of merging. 504 // merge path in their order of merging.
504 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 505 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
505 }; 506 };
506 507
507 } // namespace compiler 508 } // namespace compiler
508 } // namespace internal 509 } // namespace internal
509 } // namespace v8 510 } // namespace v8
510 511
511 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 512 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/objects-printer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698