OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // |
| 3 // Copyright IBM Corp. 2012, 2013. All rights reserved. |
| 4 // |
2 // Use of this source code is governed by a BSD-style license that can be | 5 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 6 // found in the LICENSE file. |
4 | 7 |
5 #ifndef V8_MIPS_LITHIUM_GAP_RESOLVER_MIPS_H_ | 8 #ifndef V8_PPC_LITHIUM_GAP_RESOLVER_PPC_H_ |
6 #define V8_MIPS_LITHIUM_GAP_RESOLVER_MIPS_H_ | 9 #define V8_PPC_LITHIUM_GAP_RESOLVER_PPC_H_ |
7 | 10 |
8 #include "src/v8.h" | 11 #include "src/v8.h" |
9 | 12 |
10 #include "src/lithium.h" | 13 #include "src/lithium.h" |
11 | 14 |
12 namespace v8 { | 15 namespace v8 { |
13 namespace internal { | 16 namespace internal { |
14 | 17 |
15 class LCodeGen; | 18 class LCodeGen; |
16 class LGapResolver; | 19 class LGapResolver; |
(...skipping 30 matching lines...) Expand all Loading... |
47 | 50 |
48 LCodeGen* cgen_; | 51 LCodeGen* cgen_; |
49 | 52 |
50 // List of moves not yet resolved. | 53 // List of moves not yet resolved. |
51 ZoneList<LMoveOperands> moves_; | 54 ZoneList<LMoveOperands> moves_; |
52 | 55 |
53 int root_index_; | 56 int root_index_; |
54 bool in_cycle_; | 57 bool in_cycle_; |
55 LOperand* saved_destination_; | 58 LOperand* saved_destination_; |
56 }; | 59 }; |
| 60 } |
| 61 } // namespace v8::internal |
57 | 62 |
58 } } // namespace v8::internal | 63 #endif // V8_PPC_LITHIUM_GAP_RESOLVER_PPC_H_ |
59 | |
60 #endif // V8_MIPS_LITHIUM_GAP_RESOLVER_MIPS_H_ | |
OLD | NEW |