summaryrefslogtreecommitdiff
path: root/compiler/dex/mir_analysis.cc
diff options
context:
space:
mode:
author Calin Juravle <calin@google.com> 2015-11-25 15:59:14 +0000
committer Calin Juravle <calin@google.com> 2015-12-02 16:17:21 +0000
commit27e17fd81cc30e16e86c9c15498cae7f920c9dfe (patch)
tree96b03ed3671236b696e25e0671e3d6f27604c035 /compiler/dex/mir_analysis.cc
parent47229aa5848df7d45578dbdd9285f57dfa9399a8 (diff)
Enable profiled guided compilation in dex2oat
- add parsing of the profile info saved during JIT - don't compile methods which are not part of the profile info. - delete old profile hooks Change-Id: I45a13c3aeb36265d335e57cd160b9ea0fab3cbb5
Diffstat (limited to 'compiler/dex/mir_analysis.cc')
-rw-r--r--compiler/dex/mir_analysis.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/dex/mir_analysis.cc b/compiler/dex/mir_analysis.cc
index 39f8ee8f7e..18ce563fc2 100644
--- a/compiler/dex/mir_analysis.cc
+++ b/compiler/dex/mir_analysis.cc
@@ -1430,8 +1430,4 @@ void MIRGraph::DoCacheMethodLoweringInfo() {
method_lowering_infos_.data(), count);
}
-bool MIRGraph::SkipCompilationByName(const std::string& methodname) {
- return cu_->compiler_driver->SkipCompilation(methodname);
-}
-
} // namespace art