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

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

Issue 2392613002: Reapply "Lazy deopt without code patching." (Closed)
Patch Set: . Created 4 years, 2 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/instructions_arm64.cc ('k') | runtime/vm/instructions_dbc.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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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_DBC_H_ 6 #ifndef VM_INSTRUCTIONS_DBC_H_
7 #define VM_INSTRUCTIONS_DBC_H_ 7 #define VM_INSTRUCTIONS_DBC_H_
8 8
9 #ifndef VM_INSTRUCTIONS_H_ 9 #ifndef VM_INSTRUCTIONS_H_
10 #error Do not include instructions_dbc.h directly; use instructions.h instead. 10 #error Do not include instructions_dbc.h directly; use instructions.h instead.
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 class CallPattern : public ValueObject { 51 class CallPattern : public ValueObject {
52 public: 52 public:
53 CallPattern(uword pc, const Code& code); 53 CallPattern(uword pc, const Code& code);
54 54
55 RawICData* IcData(); 55 RawICData* IcData();
56 56
57 RawCode* TargetCode() const; 57 RawCode* TargetCode() const;
58 void SetTargetCode(const Code& code) const; 58 void SetTargetCode(const Code& code) const;
59 59
60 // This constant length is only valid for inserted call patterns used for 60 static void InsertDeoptCallAt(uword pc);
61 // lazy deoptimization. Regular call pattern may vary in length.
62 static int DeoptCallPatternLengthInBytes();
63 static int DeoptCallPatternLengthInInstructions();
64
65 static void InsertDeoptCallAt(uword pc, uword target_address);
66 61
67 private: 62 private:
68 const ObjectPool& object_pool_; 63 const ObjectPool& object_pool_;
69 64
70 uword end_; 65 uword end_;
71 uword ic_data_load_end_; 66 uword ic_data_load_end_;
72 67
73 intptr_t target_code_pool_index_; 68 intptr_t target_code_pool_index_;
74 ICData& ic_data_; 69 ICData& ic_data_;
75 70
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 129
135 bool IsValid() const; 130 bool IsValid() const;
136 131
137 private: 132 private:
138 const uword pc_; 133 const uword pc_;
139 }; 134 };
140 135
141 } // namespace dart 136 } // namespace dart
142 137
143 #endif // VM_INSTRUCTIONS_DBC_H_ 138 #endif // VM_INSTRUCTIONS_DBC_H_
OLDNEW
« no previous file with comments | « runtime/vm/instructions_arm64.cc ('k') | runtime/vm/instructions_dbc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698