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

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

Issue 1418863003: Precompilation: Generate instance calls as IC calls that can switch to Megamoprhic calls. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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
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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 const ObjectPool& object_pool_; 90 const ObjectPool& object_pool_;
91 91
92 uword end_; 92 uword end_;
93 intptr_t native_function_pool_index_; 93 intptr_t native_function_pool_index_;
94 intptr_t target_code_pool_index_; 94 intptr_t target_code_pool_index_;
95 95
96 DISALLOW_COPY_AND_ASSIGN(NativeCallPattern); 96 DISALLOW_COPY_AND_ASSIGN(NativeCallPattern);
97 }; 97 };
98 98
99 99
100 class SwitchableCallPattern : public ValueObject {
101 public:
102 SwitchableCallPattern(uword pc, const Code& code);
103
104 RawObject* cache() const;
105 void SetCache(const MegamorphicCache& cache) const;
106 void SetLookupStub(const Code& stub) const;
107
108 private:
109 const ObjectPool& object_pool_;
110 intptr_t cache_pool_index_;
111 intptr_t stub_pool_index_;
112
113 DISALLOW_COPY_AND_ASSIGN(SwitchableCallPattern);
114 };
115
116
100 class ReturnPattern : public ValueObject { 117 class ReturnPattern : public ValueObject {
101 public: 118 public:
102 explicit ReturnPattern(uword pc); 119 explicit ReturnPattern(uword pc);
103 120
104 // jr(RA) = 1 121 // jr(RA) = 1
105 static const int kLengthInBytes = 1 * Instr::kInstrSize; 122 static const int kLengthInBytes = 1 * Instr::kInstrSize;
106 123
107 int pattern_length_in_bytes() const { 124 int pattern_length_in_bytes() const {
108 return kLengthInBytes; 125 return kLengthInBytes;
109 } 126 }
110 127
111 bool IsValid() const; 128 bool IsValid() const;
112 129
113 private: 130 private:
114 const uword pc_; 131 const uword pc_;
115 }; 132 };
116 133
117 } // namespace dart 134 } // namespace dart
118 135
119 #endif // VM_INSTRUCTIONS_MIPS_H_ 136 #endif // VM_INSTRUCTIONS_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698