| 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 | 4 |
| 5 #ifndef VM_RAW_OBJECT_H_ | 5 #ifndef VM_RAW_OBJECT_H_ |
| 6 #define VM_RAW_OBJECT_H_ | 6 #define VM_RAW_OBJECT_H_ |
| 7 | 7 |
| 8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
| 9 #include "vm/atomic.h" | 9 #include "vm/atomic.h" |
| 10 #include "vm/globals.h" | 10 #include "vm/globals.h" |
| (...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 934 } initializer_; | 934 } initializer_; |
| 935 RawSmi* guarded_list_length_; | 935 RawSmi* guarded_list_length_; |
| 936 RawArray* dependent_code_; | 936 RawArray* dependent_code_; |
| 937 RawObject** to() { | 937 RawObject** to() { |
| 938 return reinterpret_cast<RawObject**>(&ptr()->dependent_code_); | 938 return reinterpret_cast<RawObject**>(&ptr()->dependent_code_); |
| 939 } | 939 } |
| 940 RawObject** to_snapshot(Snapshot::Kind kind) { | 940 RawObject** to_snapshot(Snapshot::Kind kind) { |
| 941 switch (kind) { | 941 switch (kind) { |
| 942 case Snapshot::kCore: | 942 case Snapshot::kCore: |
| 943 case Snapshot::kScript: | 943 case Snapshot::kScript: |
| 944 return reinterpret_cast<RawObject**>(&ptr()->guarded_list_length_); |
| 944 case Snapshot::kAppWithJIT: | 945 case Snapshot::kAppWithJIT: |
| 945 return reinterpret_cast<RawObject**>(&ptr()->guarded_list_length_); | 946 return reinterpret_cast<RawObject**>(&ptr()->dependent_code_); |
| 946 case Snapshot::kAppNoJIT: | 947 case Snapshot::kAppNoJIT: |
| 947 return reinterpret_cast<RawObject**>(&ptr()->initializer_); | 948 return reinterpret_cast<RawObject**>(&ptr()->initializer_); |
| 948 case Snapshot::kMessage: | 949 case Snapshot::kMessage: |
| 949 case Snapshot::kNone: | 950 case Snapshot::kNone: |
| 950 case Snapshot::kInvalid: | 951 case Snapshot::kInvalid: |
| 951 break; | 952 break; |
| 952 } | 953 } |
| 953 UNREACHABLE(); | 954 UNREACHABLE(); |
| 954 return NULL; | 955 return NULL; |
| 955 } | 956 } |
| (...skipping 1526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2482 COMPILE_ASSERT(kExternalTypedDataInt8ArrayCid == | 2483 COMPILE_ASSERT(kExternalTypedDataInt8ArrayCid == |
| 2483 kTypedDataInt8ArrayViewCid + 15); | 2484 kTypedDataInt8ArrayViewCid + 15); |
| 2484 COMPILE_ASSERT(kByteBufferCid == kExternalTypedDataInt8ArrayCid + 14); | 2485 COMPILE_ASSERT(kByteBufferCid == kExternalTypedDataInt8ArrayCid + 14); |
| 2485 COMPILE_ASSERT(kNullCid == kByteBufferCid + 1); | 2486 COMPILE_ASSERT(kNullCid == kByteBufferCid + 1); |
| 2486 return (kNullCid - kTypedDataInt8ArrayCid); | 2487 return (kNullCid - kTypedDataInt8ArrayCid); |
| 2487 } | 2488 } |
| 2488 | 2489 |
| 2489 } // namespace dart | 2490 } // namespace dart |
| 2490 | 2491 |
| 2491 #endif // VM_RAW_OBJECT_H_ | 2492 #endif // VM_RAW_OBJECT_H_ |
| OLD | NEW |