summaryrefslogtreecommitdiff
path: root/compiler/dex/inline_method_analyser.cc
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2024-02-29 16:21:32 +0100
committer VladimĂ­r Marko <vmarko@google.com> 2024-03-04 05:35:43 +0000
commit79f9e3647b601a33f5db3d1b95e434617e2bad93 (patch)
tree7f7ef5e4d939687565913658996e79f48df66bc9 /compiler/dex/inline_method_analyser.cc
parentd3ec33dd3bb34bea5033898c9e9990bbc4de3756 (diff)
Remove obsolete quickening-related TODO comments.
Test: N/A (Comments only) Bug: 289199192 Change-Id: I1c632febe3a5ef41ac57292d7062d6e2142583e4
Diffstat (limited to 'compiler/dex/inline_method_analyser.cc')
-rw-r--r--compiler/dex/inline_method_analyser.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/compiler/dex/inline_method_analyser.cc b/compiler/dex/inline_method_analyser.cc
index 43e984b5cb..91944b01c0 100644
--- a/compiler/dex/inline_method_analyser.cc
+++ b/compiler/dex/inline_method_analyser.cc
@@ -467,10 +467,6 @@ bool InlineMethodAnalyser::AnalyseMethodCode(ArtMethod* method,
case Instruction::IGET_CHAR:
case Instruction::IGET_SHORT:
case Instruction::IGET_WIDE:
- // TODO: Add handling for JIT.
- // case Instruction::IGET_QUICK:
- // case Instruction::IGET_WIDE_QUICK:
- // case Instruction::IGET_OBJECT_QUICK:
return AnalyseIGetMethod(method, code_item, result);
case Instruction::IPUT:
case Instruction::IPUT_OBJECT:
@@ -479,10 +475,6 @@ bool InlineMethodAnalyser::AnalyseMethodCode(ArtMethod* method,
case Instruction::IPUT_CHAR:
case Instruction::IPUT_SHORT:
case Instruction::IPUT_WIDE:
- // TODO: Add handling for JIT.
- // case Instruction::IPUT_QUICK:
- // case Instruction::IPUT_WIDE_QUICK:
- // case Instruction::IPUT_OBJECT_QUICK:
return AnalyseIPutMethod(method, code_item, result);
default:
return false;