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

Side by Side Diff: runtime/vm/instructions_mips.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_dbc.cc ('k') | runtime/vm/instructions_mips.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_MIPS_H_ 6 #ifndef VM_INSTRUCTIONS_MIPS_H_
7 #define VM_INSTRUCTIONS_MIPS_H_ 7 #define VM_INSTRUCTIONS_MIPS_H_
8 8
9 #ifndef VM_INSTRUCTIONS_H_ 9 #ifndef VM_INSTRUCTIONS_H_
10 #error Do not include instructions_mips.h directly; use instructions.h instead. 10 #error Do not include instructions_mips.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& target) const; 58 void SetTargetCode(const Code& target) const;
59 59
60 static const int kDeoptCallLengthInInstructions = 4;
61 static const int kDeoptCallLengthInBytes =
62 kDeoptCallLengthInInstructions * Instr::kInstrSize;
63
64 static void InsertDeoptCallAt(uword pc, uword target_address);
65
60 private: 66 private:
61 const ObjectPool& object_pool_; 67 const ObjectPool& object_pool_;
62 68
63 uword end_; 69 uword end_;
64 uword ic_data_load_end_; 70 uword ic_data_load_end_;
65 71
66 intptr_t target_code_pool_index_; 72 intptr_t target_code_pool_index_;
67 ICData& ic_data_; 73 ICData& ic_data_;
68 74
69 DISALLOW_COPY_AND_ASSIGN(CallPattern); 75 DISALLOW_COPY_AND_ASSIGN(CallPattern);
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 133
128 bool IsValid() const; 134 bool IsValid() const;
129 135
130 private: 136 private:
131 const uword pc_; 137 const uword pc_;
132 }; 138 };
133 139
134 } // namespace dart 140 } // namespace dart
135 141
136 #endif // VM_INSTRUCTIONS_MIPS_H_ 142 #endif // VM_INSTRUCTIONS_MIPS_H_
OLDNEW
« no previous file with comments | « runtime/vm/instructions_dbc.cc ('k') | runtime/vm/instructions_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698