| 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_STUB_ASSEMBLER_H_ | 5 #ifndef V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
| 6 #define V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 6 #define V8_COMPILER_CODE_STUB_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 21 matching lines...) Expand all Loading... |
| 32 class RawMachineAssembler; | 32 class RawMachineAssembler; |
| 33 class RawMachineLabel; | 33 class RawMachineLabel; |
| 34 class Schedule; | 34 class Schedule; |
| 35 | 35 |
| 36 #define CODE_STUB_ASSEMBLER_BINARY_OP_LIST(V) \ | 36 #define CODE_STUB_ASSEMBLER_BINARY_OP_LIST(V) \ |
| 37 V(IntPtrAdd) \ | 37 V(IntPtrAdd) \ |
| 38 V(IntPtrSub) \ | 38 V(IntPtrSub) \ |
| 39 V(Int32Add) \ | 39 V(Int32Add) \ |
| 40 V(Int32Sub) \ | 40 V(Int32Sub) \ |
| 41 V(Int32Mul) \ | 41 V(Int32Mul) \ |
| 42 V(Int32GreaterThanOrEqual) \ |
| 42 V(WordEqual) \ | 43 V(WordEqual) \ |
| 43 V(WordNotEqual) \ | 44 V(WordNotEqual) \ |
| 44 V(WordOr) \ | 45 V(WordOr) \ |
| 45 V(WordAnd) \ | 46 V(WordAnd) \ |
| 46 V(WordXor) \ | 47 V(WordXor) \ |
| 47 V(WordShl) \ | 48 V(WordShl) \ |
| 48 V(WordShr) \ | 49 V(WordShr) \ |
| 49 V(WordSar) \ | 50 V(WordSar) \ |
| 50 V(WordRor) \ | 51 V(WordRor) \ |
| 51 V(Word32Equal) \ | 52 V(Word32Equal) \ |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 // Map of variables to the list of value nodes that have been added from each | 263 // Map of variables to the list of value nodes that have been added from each |
| 263 // merge path in their order of merging. | 264 // merge path in their order of merging. |
| 264 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 265 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
| 265 }; | 266 }; |
| 266 | 267 |
| 267 } // namespace compiler | 268 } // namespace compiler |
| 268 } // namespace internal | 269 } // namespace internal |
| 269 } // namespace v8 | 270 } // namespace v8 |
| 270 | 271 |
| 271 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 272 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
| OLD | NEW |