diff options
author | 2019-09-18 06:14:50 +0000 | |
---|---|---|
committer | 2019-09-18 06:14:50 +0000 | |
commit | 4ac0e1571e015a01d75091c3daef065f9624ad77 (patch) | |
tree | 4d13edeab88bd6fd724388c48385b0c3cca4f3a8 /runtime/mirror/class_ext.cc | |
parent | 5a2301d897294ff4ee6de71f459dc2566dc3fa1a (diff) |
Revert "Revert "Basic structural redefinition support""
This reverts commit 5a2301d897294ff4ee6de71f459dc2566dc3fa1a.
Bug: 134162467
Reason for revert: Relanding as unclear if issue is due to topic.
Change-Id: Ib1d1cf2e9132e30c9649b760ae9ae2d8ceacf843
Diffstat (limited to 'runtime/mirror/class_ext.cc')
-rw-r--r-- | runtime/mirror/class_ext.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/mirror/class_ext.cc b/runtime/mirror/class_ext.cc index 4c6cb4d840..27dcea83c6 100644 --- a/runtime/mirror/class_ext.cc +++ b/runtime/mirror/class_ext.cc @@ -25,6 +25,8 @@ #include "class_root.h" #include "dex/dex_file-inl.h" #include "gc/accounting/card_table-inl.h" +#include "mirror/object.h" +#include "mirror/object_array.h" #include "object-inl.h" #include "object_array-alloc-inl.h" #include "object_array-inl.h" @@ -101,6 +103,10 @@ bool ClassExt::ExtendObsoleteArrays(Handle<ClassExt> h_this, Thread* self, uint3 return true; } +void ClassExt::SetObsoleteClass(ObjPtr<Class> klass) { + SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(ClassExt, obsolete_class_), klass); +} + ObjPtr<ClassExt> ClassExt::Alloc(Thread* self) { return ObjPtr<ClassExt>::DownCast(GetClassRoot<ClassExt>()->AllocObject(self)); } |