OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 // Classes that describe assembly patterns as used by inline caches. | 4 // Classes that describe assembly patterns as used by inline caches. |
5 | 5 |
6 #ifndef VM_INSTRUCTIONS_IA32_H_ | 6 #ifndef VM_INSTRUCTIONS_IA32_H_ |
7 #define VM_INSTRUCTIONS_IA32_H_ | 7 #define VM_INSTRUCTIONS_IA32_H_ |
8 | 8 |
9 #ifndef VM_INSTRUCTIONS_H_ | 9 #ifndef VM_INSTRUCTIONS_H_ |
10 #error Do not include instructions_ia32.h directly; use instructions.h instead. | 10 #error Do not include instructions_ia32.h directly; use instructions.h instead. |
11 #endif | 11 #endif |
12 | 12 |
13 #include "vm/allocation.h" | 13 #include "vm/allocation.h" |
| 14 #include "vm/object.h" |
14 | 15 |
15 namespace dart { | 16 namespace dart { |
16 | 17 |
17 // Forward declarations. | 18 // Forward declarations. |
18 class RawClass; | 19 class RawClass; |
19 class Immediate; | 20 class Immediate; |
20 class RawObject; | 21 class RawObject; |
21 | 22 |
22 // Abstract class for all instruction pattern classes. | 23 // Abstract class for all instruction pattern classes. |
23 class InstructionPattern : public ValueObject { | 24 class InstructionPattern : public ValueObject { |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 | 79 |
79 private: | 80 private: |
80 virtual const int* pattern() const; | 81 virtual const int* pattern() const; |
81 | 82 |
82 DISALLOW_COPY_AND_ASSIGN(CallPattern); | 83 DISALLOW_COPY_AND_ASSIGN(CallPattern); |
83 }; | 84 }; |
84 | 85 |
85 | 86 |
86 class JumpPattern : public CallOrJumpPattern { | 87 class JumpPattern : public CallOrJumpPattern { |
87 public: | 88 public: |
88 explicit JumpPattern(uword pc) : CallOrJumpPattern(pc) {} | 89 JumpPattern(uword pc, const Code& code) : CallOrJumpPattern(pc) {} |
89 | 90 |
90 private: | 91 private: |
91 virtual const int* pattern() const; | 92 virtual const int* pattern() const; |
92 | 93 |
93 DISALLOW_COPY_AND_ASSIGN(JumpPattern); | 94 DISALLOW_COPY_AND_ASSIGN(JumpPattern); |
94 }; | 95 }; |
95 | 96 |
96 | 97 |
97 } // namespace dart | 98 } // namespace dart |
98 | 99 |
99 #endif // VM_INSTRUCTIONS_IA32_H_ | 100 #endif // VM_INSTRUCTIONS_IA32_H_ |
OLD | NEW |