OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |