Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: runtime/vm/raw_object.h

Issue 2646073005: Precompiler: Rehash types after reassigning class ids. (Closed)
Patch Set: . Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/vm/precompiler.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 RUNTIME_VM_RAW_OBJECT_H_ 5 #ifndef RUNTIME_VM_RAW_OBJECT_H_
6 #define RUNTIME_VM_RAW_OBJECT_H_ 6 #define RUNTIME_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 1743 matching lines...) Expand 10 before | Expand all | Expand 10 after
1754 1754
1755 1755
1756 class RawMixinAppType : public RawAbstractType { 1756 class RawMixinAppType : public RawAbstractType {
1757 private: 1757 private:
1758 RAW_HEAP_OBJECT_IMPLEMENTATION(MixinAppType); 1758 RAW_HEAP_OBJECT_IMPLEMENTATION(MixinAppType);
1759 1759
1760 RawObject** from() { 1760 RawObject** from() {
1761 return reinterpret_cast<RawObject**>(&ptr()->super_type_); 1761 return reinterpret_cast<RawObject**>(&ptr()->super_type_);
1762 } 1762 }
1763 RawAbstractType* super_type_; 1763 RawAbstractType* super_type_;
1764 RawSmi* hash_;
1765 RawArray* mixin_types_; // Array of AbstractType. 1764 RawArray* mixin_types_; // Array of AbstractType.
1766 RawObject** to() { 1765 RawObject** to() {
1767 return reinterpret_cast<RawObject**>(&ptr()->mixin_types_); 1766 return reinterpret_cast<RawObject**>(&ptr()->mixin_types_);
1768 } 1767 }
1769 }; 1768 };
1770 1769
1771 1770
1772 class RawClosure : public RawInstance { 1771 class RawClosure : public RawInstance {
1773 private: 1772 private:
1774 RAW_HEAP_OBJECT_IMPLEMENTATION(Closure); 1773 RAW_HEAP_OBJECT_IMPLEMENTATION(Closure);
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
2424 COMPILE_ASSERT(kExternalTypedDataInt8ArrayCid == 2423 COMPILE_ASSERT(kExternalTypedDataInt8ArrayCid ==
2425 kTypedDataInt8ArrayViewCid + 15); 2424 kTypedDataInt8ArrayViewCid + 15);
2426 COMPILE_ASSERT(kByteBufferCid == kExternalTypedDataInt8ArrayCid + 14); 2425 COMPILE_ASSERT(kByteBufferCid == kExternalTypedDataInt8ArrayCid + 14);
2427 COMPILE_ASSERT(kNullCid == kByteBufferCid + 1); 2426 COMPILE_ASSERT(kNullCid == kByteBufferCid + 1);
2428 return (kNullCid - kTypedDataInt8ArrayCid); 2427 return (kNullCid - kTypedDataInt8ArrayCid);
2429 } 2428 }
2430 2429
2431 } // namespace dart 2430 } // namespace dart
2432 2431
2433 #endif // RUNTIME_VM_RAW_OBJECT_H_ 2432 #endif // RUNTIME_VM_RAW_OBJECT_H_
OLDNEW
« no previous file with comments | « runtime/vm/precompiler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698