From 0b42b1cf15e7d2b012ca4efa5c4e4e8921a8c532 Mon Sep 17 00:00:00 2001 From: Igor Ignatyev Date: Tue, 28 Jul 2020 15:31:10 -0700 Subject: [PATCH] 8250739: remove Compile::Generate_*_Graph methods declarations Reviewed-by: kvn --- src/hotspot/share/opto/compile.hpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/hotspot/share/opto/compile.hpp b/src/hotspot/share/opto/compile.hpp index 30c1c2511e0..a1e02888568 100644 --- a/src/hotspot/share/opto/compile.hpp +++ b/src/hotspot/share/opto/compile.hpp @@ -1012,14 +1012,6 @@ class Compile : public Phase { int is_fancy_jump, bool pass_tls, bool save_arg_registers, bool return_pc, DirectiveSet* directive); - // From the TypeFunc signature, generate code to pass arguments - // from Compiled calling convention to Interpreter's calling convention - void Generate_Compiled_To_Interpreter_Graph(const TypeFunc *tf, address interpreter_entry); - - // From the TypeFunc signature, generate code to pass arguments - // from Interpreter's calling convention to Compiler's calling convention - void Generate_Interpreter_To_Compiled_Graph(const TypeFunc *tf); - // Are we compiling a method? bool has_method() { return method() != NULL; }