< prev index next >

src/hotspot/share/opto/escape.hpp

Print this page
rev 60703 : 8227745, 8233915: Enable Escape Analysis for Better Performance in the Presence of JVMTI Agents
Reviewed-by: mdoerr, goetz

*** 551,560 **** --- 551,565 ---- PhiNode* get_map_phi(int idx) { Node* phi = _node_map[idx]; return (phi == NULL) ? NULL : phi->as_Phi(); } + // Returns true if there is an object in the scope of sfn that does not escape globally. + bool has_ea_local_in_scope(SafePointNode* sfn); + + bool has_arg_escape(CallJavaNode* call); + // Notify optimizer that a node has been modified void record_for_optimizer(Node *n); // Compute the escape information bool compute_escape();
< prev index next >