OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 | 4 |
5 #ifndef VM_OBJECT_H_ | 5 #ifndef VM_OBJECT_H_ |
6 #define VM_OBJECT_H_ | 6 #define VM_OBJECT_H_ |
7 | 7 |
8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
9 #include "platform/assert.h" | 9 #include "platform/assert.h" |
10 #include "platform/utils.h" | 10 #include "platform/utils.h" |
(...skipping 4306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4317 private: | 4317 private: |
4318 static void UnpackInto(const Array& table, | 4318 static void UnpackInto(const Array& table, |
4319 const TypedData& packed, | 4319 const TypedData& packed, |
4320 GrowableArray<DeoptInstr*>* instructions, | 4320 GrowableArray<DeoptInstr*>* instructions, |
4321 intptr_t length); | 4321 intptr_t length); |
4322 }; | 4322 }; |
4323 | 4323 |
4324 | 4324 |
4325 class Code : public Object { | 4325 class Code : public Object { |
4326 public: | 4326 public: |
4327 RawInstructions* active_instructions() const { | 4327 uword active_entry_point() const { return raw_ptr()->entry_point_; } |
4328 return raw_ptr()->active_instructions_; | |
4329 } | |
4330 | 4328 |
4331 RawInstructions* instructions() const { return raw_ptr()->instructions_; } | 4329 RawInstructions* instructions() const { return raw_ptr()->instructions_; } |
4332 | 4330 |
4333 static intptr_t saved_instructions_offset() { | 4331 static intptr_t saved_instructions_offset() { |
4334 return OFFSET_OF(RawCode, instructions_); | 4332 return OFFSET_OF(RawCode, instructions_); |
4335 } | 4333 } |
4336 | 4334 |
4337 static intptr_t entry_point_offset() { | 4335 static intptr_t entry_point_offset() { |
4338 return OFFSET_OF(RawCode, entry_point_); | 4336 return OFFSET_OF(RawCode, entry_point_); |
4339 } | 4337 } |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4601 bool IsStubCode() const; | 4599 bool IsStubCode() const; |
4602 bool IsFunctionCode() const; | 4600 bool IsFunctionCode() const; |
4603 | 4601 |
4604 void DisableDartCode() const; | 4602 void DisableDartCode() const; |
4605 | 4603 |
4606 void DisableStubCode() const; | 4604 void DisableStubCode() const; |
4607 | 4605 |
4608 void Enable() const { | 4606 void Enable() const { |
4609 if (!IsDisabled()) return; | 4607 if (!IsDisabled()) return; |
4610 ASSERT(Thread::Current()->IsMutatorThread()); | 4608 ASSERT(Thread::Current()->IsMutatorThread()); |
4611 ASSERT(instructions() != active_instructions()); | |
4612 SetActiveInstructions(instructions()); | 4609 SetActiveInstructions(instructions()); |
4613 } | 4610 } |
4614 | 4611 |
4615 bool IsDisabled() const { | 4612 bool IsDisabled() const { |
4616 return instructions() != active_instructions(); | 4613 return active_entry_point() != EntryPoint(); |
4617 } | 4614 } |
4618 | 4615 |
4619 private: | 4616 private: |
4620 void set_state_bits(intptr_t bits) const; | 4617 void set_state_bits(intptr_t bits) const; |
4621 | 4618 |
4622 void set_object_pool(RawObjectPool* object_pool) const { | 4619 void set_object_pool(RawObjectPool* object_pool) const { |
4623 StorePointer(&raw_ptr()->object_pool_, object_pool); | 4620 StorePointer(&raw_ptr()->object_pool_, object_pool); |
4624 } | 4621 } |
4625 | 4622 |
4626 friend class RawObject; // For RawObject::SizeFromClass(). | 4623 friend class RawObject; // For RawObject::SizeFromClass(). |
(...skipping 3878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8505 | 8502 |
8506 | 8503 |
8507 RawObject* MegamorphicCache::GetTargetFunction(const Array& array, | 8504 RawObject* MegamorphicCache::GetTargetFunction(const Array& array, |
8508 intptr_t index) { | 8505 intptr_t index) { |
8509 return array.At((index * kEntryLength) + kTargetFunctionIndex); | 8506 return array.At((index * kEntryLength) + kTargetFunctionIndex); |
8510 } | 8507 } |
8511 | 8508 |
8512 } // namespace dart | 8509 } // namespace dart |
8513 | 8510 |
8514 #endif // VM_OBJECT_H_ | 8511 #endif // VM_OBJECT_H_ |
OLD | NEW |