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

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

Issue 2382953004: Revert "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_arm.cc ('k') | runtime/vm/instructions_arm64.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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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_ARM64_H_ 6 #ifndef VM_INSTRUCTIONS_ARM64_H_
7 #define VM_INSTRUCTIONS_ARM64_H_ 7 #define VM_INSTRUCTIONS_ARM64_H_
8 8
9 #ifndef VM_INSTRUCTIONS_H_ 9 #ifndef VM_INSTRUCTIONS_H_
10 #error Do not include instructions_arm64.h directly; use instructions.h instead. 10 #error Do not include instructions_arm64.h directly; use instructions.h instead.
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 57
58 class CallPattern : public ValueObject { 58 class CallPattern : public ValueObject {
59 public: 59 public:
60 CallPattern(uword pc, const Code& code); 60 CallPattern(uword pc, const Code& code);
61 61
62 RawICData* IcData(); 62 RawICData* IcData();
63 63
64 RawCode* TargetCode() const; 64 RawCode* TargetCode() const;
65 void SetTargetCode(const Code& target) const; 65 void SetTargetCode(const Code& target) const;
66 66
67 // This constant length is only valid for inserted call patterns used for
68 // lazy deoptimization. Regular call pattern may vary in length.
69 static const int kDeoptCallLengthInInstructions = 5;
70 static const int kDeoptCallLengthInBytes =
71 kDeoptCallLengthInInstructions * Instr::kInstrSize;
72
73 static void InsertDeoptCallAt(uword pc, uword target_address);
74
67 private: 75 private:
68 const ObjectPool& object_pool_; 76 const ObjectPool& object_pool_;
69 77
70 uword end_; 78 uword end_;
71 uword ic_data_load_end_; 79 uword ic_data_load_end_;
72 80
73 intptr_t target_code_pool_index_; 81 intptr_t target_code_pool_index_;
74 ICData& ic_data_; 82 ICData& ic_data_;
75 83
76 DISALLOW_COPY_AND_ASSIGN(CallPattern); 84 DISALLOW_COPY_AND_ASSIGN(CallPattern);
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 142
135 bool IsValid() const; 143 bool IsValid() const;
136 144
137 private: 145 private:
138 const uword pc_; 146 const uword pc_;
139 }; 147 };
140 148
141 } // namespace dart 149 } // namespace dart
142 150
143 #endif // VM_INSTRUCTIONS_ARM64_H_ 151 #endif // VM_INSTRUCTIONS_ARM64_H_
OLDNEW
« no previous file with comments | « runtime/vm/instructions_arm.cc ('k') | runtime/vm/instructions_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698