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

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

Issue 136753012: Refactor unboxed fields in preparation of reusable SIMD boxes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « runtime/vm/intermediate_language_x64.cc ('k') | runtime/vm/object.cc » ('j') | 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 VM_OBJECT_H_ 5 #ifndef VM_OBJECT_H_
6 #define VM_OBJECT_H_ 6 #define VM_OBJECT_H_
7 7
8 #include "include/dart_api.h" 8 #include "include/dart_api.h"
9 #include "platform/assert.h" 9 #include "platform/assert.h"
10 #include "platform/utils.h" 10 #include "platform/utils.h"
(...skipping 2169 matching lines...) Expand 10 before | Expand all | Expand 10 after
2180 void set_guarded_list_length(intptr_t list_length) const; 2180 void set_guarded_list_length(intptr_t list_length) const;
2181 static intptr_t guarded_list_length_offset() { 2181 static intptr_t guarded_list_length_offset() {
2182 return OFFSET_OF(RawField, guarded_list_length_); 2182 return OFFSET_OF(RawField, guarded_list_length_);
2183 } 2183 }
2184 bool needs_length_check() const { 2184 bool needs_length_check() const {
2185 const bool r = guarded_list_length() >= Field::kUnknownFixedLength; 2185 const bool r = guarded_list_length() >= Field::kUnknownFixedLength;
2186 ASSERT(!r || is_final()); 2186 ASSERT(!r || is_final());
2187 return r; 2187 return r;
2188 } 2188 }
2189 2189
2190 bool IsUnboxedField() const { 2190 intptr_t UnboxedFieldCid() const {
2191 return is_unboxing_candidate() 2191 ASSERT(IsUnboxedField());
2192 && !is_final() 2192 return guarded_cid();
2193 && (guarded_cid() == kDoubleCid && !is_nullable());
2194 } 2193 }
2195 2194
2196 bool IsPotentialUnboxedField() const { 2195 bool IsUnboxedField() const;
2197 return is_unboxing_candidate() 2196
2198 && (IsUnboxedField() || 2197 bool IsPotentialUnboxedField() const;
2199 (!is_final() && (guarded_cid() == kIllegalCid)));
2200 }
2201 2198
2202 bool is_unboxing_candidate() const { 2199 bool is_unboxing_candidate() const {
2203 return UnboxingCandidateBit::decode(raw_ptr()->kind_bits_); 2200 return UnboxingCandidateBit::decode(raw_ptr()->kind_bits_);
2204 } 2201 }
2205 void set_is_unboxing_candidate(bool b) const { 2202 void set_is_unboxing_candidate(bool b) const {
2206 set_kind_bits(UnboxingCandidateBit::update(b, raw_ptr()->kind_bits_)); 2203 set_kind_bits(UnboxingCandidateBit::update(b, raw_ptr()->kind_bits_));
2207 } 2204 }
2208 2205
2209 static bool IsExternalizableCid(intptr_t cid) { 2206 static bool IsExternalizableCid(intptr_t cid) {
2210 return (cid == kOneByteStringCid) || (cid == kTwoByteStringCid); 2207 return (cid == kOneByteStringCid) || (cid == kTwoByteStringCid);
(...skipping 4449 matching lines...) Expand 10 before | Expand all | Expand 10 after
6660 6657
6661 6658
6662 RawObject* MegamorphicCache::GetTargetFunction(const Array& array, 6659 RawObject* MegamorphicCache::GetTargetFunction(const Array& array,
6663 intptr_t index) { 6660 intptr_t index) {
6664 return array.At((index * kEntryLength) + kTargetFunctionIndex); 6661 return array.At((index * kEntryLength) + kTargetFunctionIndex);
6665 } 6662 }
6666 6663
6667 } // namespace dart 6664 } // namespace dart
6668 6665
6669 #endif // VM_OBJECT_H_ 6666 #endif // VM_OBJECT_H_
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language_x64.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698