summaryrefslogtreecommitdiffstats
path: root/runtime/stack.cc
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2015-03-13 08:45:10 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-03-13 08:45:12 +0000
commitddd04a64a13bde9551ca1174957e055cd2132cff (patch)
treecfee62d10e81752ec3af2be1b03dc04a4b176fc9 /runtime/stack.cc
parent90a6adc0f6e55ec02f9443c12e93fea85c1a9393 (diff)
parent915b9d0c13bb5091875d868fbfa551d7b65d7477 (diff)
downloadart-ddd04a64a13bde9551ca1174957e055cd2132cff.zip
art-ddd04a64a13bde9551ca1174957e055cd2132cff.tar.gz
art-ddd04a64a13bde9551ca1174957e055cd2132cff.tar.bz2
Merge "Tweak liveness when instructions are used in environments."
Diffstat (limited to 'runtime/stack.cc')
-rw-r--r--runtime/stack.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/stack.cc b/runtime/stack.cc
index e420c57..b8ca21e 100644
--- a/runtime/stack.cc
+++ b/runtime/stack.cc
@@ -129,12 +129,6 @@ mirror::Object* StackVisitor::GetThisObject() const {
} else {
return cur_shadow_frame_->GetVRegReference(0);
}
- } else if (m->IsOptimized(GetInstructionSetPointerSize(
- Runtime::Current()->GetInstructionSet()))) {
- // TODO: Implement, currently only used for exceptions when jdwp is enabled.
- UNIMPLEMENTED(WARNING)
- << "StackVisitor::GetThisObject is unimplemented with the optimizing compiler";
- return nullptr;
} else {
const DexFile::CodeItem* code_item = m->GetCodeItem();
if (code_item == nullptr) {