diff options
author | 2019-03-22 13:38:57 +0000 | |
---|---|---|
committer | 2019-03-25 16:54:37 +0000 | |
commit | 179b7c61ea6769b99f70c80a7a89cbb212423ec2 (patch) | |
tree | 06130898bfb2d8c3f71f4fe181277f20e1942726 /runtime/interpreter/interpreter_common.cc | |
parent | c8b7d445e02b752a68d824e2bc69658dfb76288a (diff) |
ObjPtr<>-ify String allocations, fix stale refs.
ObjPtr<>-ify String allocation functions and related code
and remove some unnecessary calls to ObjPtr<>::Ptr(). Fix
stale reference uses in reference_table_test and stub_test.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 31113334
Change-Id: I42927fb8b7240e5132188f73318b2ccb218748fd
Diffstat (limited to 'runtime/interpreter/interpreter_common.cc')
-rw-r--r-- | runtime/interpreter/interpreter_common.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/interpreter/interpreter_common.cc b/runtime/interpreter/interpreter_common.cc index 7a40ab431f..db3032a908 100644 --- a/runtime/interpreter/interpreter_common.cc +++ b/runtime/interpreter/interpreter_common.cc @@ -805,7 +805,7 @@ static bool DoVarHandleInvokeCommon(Thread* self, const uint32_t vRegC = is_var_args ? inst->VRegC_45cc() : inst->VRegC_4rcc(); ObjPtr<mirror::Object> receiver(shadow_frame.GetVRegReference(vRegC)); - Handle<mirror::VarHandle> var_handle(hs.NewHandle(down_cast<mirror::VarHandle*>(receiver.Ptr()))); + Handle<mirror::VarHandle> var_handle(hs.NewHandle(ObjPtr<mirror::VarHandle>::DownCast(receiver))); if (is_var_args) { uint32_t args[Instruction::kMaxVarArgRegs]; inst->GetVarArgs(args, inst_data); |