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

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

Issue 2226893002: Optimize AOT's switchable calls for the monomorphic case. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: sync Created 4 years, 4 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/flow_graph_compiler_x64.cc ('k') | runtime/vm/instructions_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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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_ARM_H_ 6 #ifndef VM_INSTRUCTIONS_ARM_H_
7 #define VM_INSTRUCTIONS_ARM_H_ 7 #define VM_INSTRUCTIONS_ARM_H_
8 8
9 #ifndef VM_INSTRUCTIONS_H_ 9 #ifndef VM_INSTRUCTIONS_H_
10 #error Do not include instructions_arm.h directly; use instructions.h instead. 10 #error Do not include instructions_arm.h directly; use instructions.h instead.
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 const ObjectPool& object_pool_; 91 const ObjectPool& object_pool_;
92 92
93 uword end_; 93 uword end_;
94 intptr_t native_function_pool_index_; 94 intptr_t native_function_pool_index_;
95 intptr_t target_code_pool_index_; 95 intptr_t target_code_pool_index_;
96 96
97 DISALLOW_COPY_AND_ASSIGN(NativeCallPattern); 97 DISALLOW_COPY_AND_ASSIGN(NativeCallPattern);
98 }; 98 };
99 99
100 100
101 // Instance call that can switch from an IC call to a megamorphic call 101 // Instance call that can switch between a direct monomorphic call, an IC call,
102 // load ICData load MegamorphicCache 102 // and a megamorphic call.
103 // call ICLookup stub -> call MegamorphicLookup stub 103 // load guarded cid load ICData load MegamorphicCache
104 // call target call target 104 // load monomorphic target <-> load ICLookup stub -> load MMLookup stub
105 // call target.entry call stub.entry call stub.entry
105 class SwitchableCallPattern : public ValueObject { 106 class SwitchableCallPattern : public ValueObject {
106 public: 107 public:
107 SwitchableCallPattern(uword pc, const Code& code); 108 SwitchableCallPattern(uword pc, const Code& code);
108 109
109 RawObject* cache() const; 110 RawObject* data() const;
110 void SetCache(const MegamorphicCache& cache) const; 111 RawCode* target() const;
111 void SetLookupStub(const Code& stub) const; 112 void SetData(const Object& data) const;
113 void SetTarget(const Code& target) const;
112 114
113 private: 115 private:
114 const ObjectPool& object_pool_; 116 const ObjectPool& object_pool_;
115 intptr_t cache_pool_index_; 117 intptr_t data_pool_index_;
116 intptr_t stub_pool_index_; 118 intptr_t target_pool_index_;
117 119
118 DISALLOW_COPY_AND_ASSIGN(SwitchableCallPattern); 120 DISALLOW_COPY_AND_ASSIGN(SwitchableCallPattern);
119 }; 121 };
120 122
121 123
122 class ReturnPattern : public ValueObject { 124 class ReturnPattern : public ValueObject {
123 public: 125 public:
124 explicit ReturnPattern(uword pc); 126 explicit ReturnPattern(uword pc);
125 127
126 // bx_lr = 1. 128 // bx_lr = 1.
127 static const int kLengthInBytes = 1 * Instr::kInstrSize; 129 static const int kLengthInBytes = 1 * Instr::kInstrSize;
128 130
129 int pattern_length_in_bytes() const { 131 int pattern_length_in_bytes() const {
130 return kLengthInBytes; 132 return kLengthInBytes;
131 } 133 }
132 134
133 bool IsValid() const; 135 bool IsValid() const;
134 136
135 private: 137 private:
136 const uword pc_; 138 const uword pc_;
137 }; 139 };
138 140
139 } // namespace dart 141 } // namespace dart
140 142
141 #endif // VM_INSTRUCTIONS_ARM_H_ 143 #endif // VM_INSTRUCTIONS_ARM_H_
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_compiler_x64.cc ('k') | runtime/vm/instructions_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698