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

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

Issue 17421003: Store arguments descriptor in ICData. Remove loading of arguments descriptor at unoptimized call si… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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/parser.h ('k') | runtime/vm/stub_code_arm.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_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/globals.h" 9 #include "vm/globals.h"
10 #include "vm/token.h" 10 #include "vm/token.h"
(...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after
1015 } 1015 }
1016 }; 1016 };
1017 1017
1018 1018
1019 class RawICData : public RawObject { 1019 class RawICData : public RawObject {
1020 RAW_HEAP_OBJECT_IMPLEMENTATION(ICData); 1020 RAW_HEAP_OBJECT_IMPLEMENTATION(ICData);
1021 1021
1022 RawObject** from() { 1022 RawObject** from() {
1023 return reinterpret_cast<RawObject**>(&ptr()->function_); 1023 return reinterpret_cast<RawObject**>(&ptr()->function_);
1024 } 1024 }
1025 RawFunction* function_; // Parent/calling function of this IC. 1025 RawFunction* function_; // Parent/calling function of this IC.
1026 RawString* target_name_; // Name of target function. 1026 RawString* target_name_; // Name of target function.
1027 RawArray* ic_data_; // Contains test class-ids and target functions. 1027 RawArray* args_descriptor_; // Arguments descriptor.
1028 RawArray* ic_data_; // Contains test class-ids and target functions.
1028 RawObject** to() { 1029 RawObject** to() {
1029 return reinterpret_cast<RawObject**>(&ptr()->ic_data_); 1030 return reinterpret_cast<RawObject**>(&ptr()->ic_data_);
1030 } 1031 }
1031 intptr_t deopt_id_; // Deoptimization id corresponding to this IC. 1032 intptr_t deopt_id_; // Deoptimization id corresponding to this IC.
1032 intptr_t num_args_tested_; // Number of arguments tested in IC. 1033 intptr_t num_args_tested_; // Number of arguments tested in IC.
1033 uint8_t deopt_reason_; // Last deoptimization reason. 1034 uint8_t deopt_reason_; // Last deoptimization reason.
1034 uint8_t is_closure_call_; // 0 or 1. 1035 uint8_t is_closure_call_; // 0 or 1.
1035 }; 1036 };
1036 1037
1037 1038
1038 class RawMegamorphicCache : public RawObject { 1039 class RawMegamorphicCache : public RawObject {
1039 RAW_HEAP_OBJECT_IMPLEMENTATION(MegamorphicCache); 1040 RAW_HEAP_OBJECT_IMPLEMENTATION(MegamorphicCache);
1040 1041
1041 RawObject** from() { 1042 RawObject** from() {
1042 return reinterpret_cast<RawObject**>(&ptr()->buckets_); 1043 return reinterpret_cast<RawObject**>(&ptr()->buckets_);
1043 } 1044 }
1044 RawArray* buckets_; 1045 RawArray* buckets_;
(...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
1688 // Make sure this is updated when new TypedData types are added. 1689 // Make sure this is updated when new TypedData types are added.
1689 ASSERT(kTypedDataInt8ArrayViewCid == kTypedDataInt8ArrayCid + 12); 1690 ASSERT(kTypedDataInt8ArrayViewCid == kTypedDataInt8ArrayCid + 12);
1690 ASSERT(kExternalTypedDataInt8ArrayCid == kTypedDataInt8ArrayViewCid + 13); 1691 ASSERT(kExternalTypedDataInt8ArrayCid == kTypedDataInt8ArrayViewCid + 13);
1691 ASSERT(kNullCid == kExternalTypedDataInt8ArrayCid + 12); 1692 ASSERT(kNullCid == kExternalTypedDataInt8ArrayCid + 12);
1692 return (kNullCid - kTypedDataInt8ArrayCid); 1693 return (kNullCid - kTypedDataInt8ArrayCid);
1693 } 1694 }
1694 1695
1695 } // namespace dart 1696 } // namespace dart
1696 1697
1697 #endif // VM_RAW_OBJECT_H_ 1698 #endif // VM_RAW_OBJECT_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.h ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698