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