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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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_ |
OLD | NEW |