summaryrefslogtreecommitdiffstats
path: root/compiler/dex/mir_graph.h
diff options
context:
space:
mode:
authorRazvan A Lupusoru <razvan.a.lupusoru@intel.com>2014-07-09 16:42:19 -0700
committerRazvan A Lupusoru <razvan.a.lupusoru@intel.com>2014-07-10 10:31:02 -0700
commitcb804742f8786826286046e9c4489ef9d7ceb7ec (patch)
tree21c5a32335b1d19c7ad3064651ba55bc636b1e2d /compiler/dex/mir_graph.h
parentcba6b1fc88fd54c35211fd49a7a7501cfcdaa170 (diff)
downloadart-cb804742f8786826286046e9c4489ef9d7ceb7ec.tar.gz
art-cb804742f8786826286046e9c4489ef9d7ceb7ec.tar.bz2
art-cb804742f8786826286046e9c4489ef9d7ceb7ec.zip
ART: Rename CallInlining to SpecialMethodInliner
The CallInlining pass is used to inline just a set of pre-categorized methods. This set of methods includes empty, instance getters, instance setters, argument return, and constant return. Since it inlines only "special methods", it makes sense to name it to reflect that. Change-Id: Iea2c1820080b0c212c99e977f6b5d34ee0774868 Signed-off-by: Razvan A Lupusoru <razvan.a.lupusoru@intel.com>
Diffstat (limited to 'compiler/dex/mir_graph.h')
-rw-r--r--compiler/dex/mir_graph.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/dex/mir_graph.h b/compiler/dex/mir_graph.h
index d09732891c..6ee48a494a 100644
--- a/compiler/dex/mir_graph.h
+++ b/compiler/dex/mir_graph.h
@@ -956,10 +956,10 @@ class MIRGraph {
void ComputeTopologicalSortOrder();
BasicBlock* CreateNewBB(BBType block_type);
- bool InlineCallsGate();
- void InlineCallsStart();
- void InlineCalls(BasicBlock* bb);
- void InlineCallsEnd();
+ bool InlineSpecialMethodsGate();
+ void InlineSpecialMethodsStart();
+ void InlineSpecialMethods(BasicBlock* bb);
+ void InlineSpecialMethodsEnd();
/**
* @brief Perform the initial preparation for the Method Uses.