mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
Merge
This commit is contained in:
commit
ae60c05fee
31 changed files with 1125 additions and 61 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -394,6 +394,11 @@ address AbstractInterpreterGenerator::generate_method_entry(AbstractInterpreter:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool AbstractInterpreter::can_be_compiled(methodHandle m) {
|
||||||
|
// No special entry points that preclude compilation
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
// This method tells the deoptimizer how big an interpreted frame must be:
|
// This method tells the deoptimizer how big an interpreted frame must be:
|
||||||
int AbstractInterpreter::size_activation(methodOop method,
|
int AbstractInterpreter::size_activation(methodOop method,
|
||||||
int tempcount,
|
int tempcount,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -2862,6 +2862,9 @@ class StubGenerator: public StubCodeGenerator {
|
||||||
|
|
||||||
// arraycopy stubs used by compilers
|
// arraycopy stubs used by compilers
|
||||||
generate_arraycopy_stubs();
|
generate_arraycopy_stubs();
|
||||||
|
|
||||||
|
// Don't initialize the platform math functions since sparc
|
||||||
|
// doesn't have intrinsics for these operations.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 1999-2009 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 1999-2010 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -2030,6 +2030,54 @@ class StubGenerator: public StubCodeGenerator {
|
||||||
entry_checkcast_arraycopy);
|
entry_checkcast_arraycopy);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void generate_math_stubs() {
|
||||||
|
{
|
||||||
|
StubCodeMark mark(this, "StubRoutines", "log");
|
||||||
|
StubRoutines::_intrinsic_log = (double (*)(double)) __ pc();
|
||||||
|
|
||||||
|
__ fld_d(Address(rsp, 4));
|
||||||
|
__ flog();
|
||||||
|
__ ret(0);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
StubCodeMark mark(this, "StubRoutines", "log10");
|
||||||
|
StubRoutines::_intrinsic_log10 = (double (*)(double)) __ pc();
|
||||||
|
|
||||||
|
__ fld_d(Address(rsp, 4));
|
||||||
|
__ flog10();
|
||||||
|
__ ret(0);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
StubCodeMark mark(this, "StubRoutines", "sin");
|
||||||
|
StubRoutines::_intrinsic_sin = (double (*)(double)) __ pc();
|
||||||
|
|
||||||
|
__ fld_d(Address(rsp, 4));
|
||||||
|
__ trigfunc('s');
|
||||||
|
__ ret(0);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
StubCodeMark mark(this, "StubRoutines", "cos");
|
||||||
|
StubRoutines::_intrinsic_cos = (double (*)(double)) __ pc();
|
||||||
|
|
||||||
|
__ fld_d(Address(rsp, 4));
|
||||||
|
__ trigfunc('c');
|
||||||
|
__ ret(0);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
StubCodeMark mark(this, "StubRoutines", "tan");
|
||||||
|
StubRoutines::_intrinsic_tan = (double (*)(double)) __ pc();
|
||||||
|
|
||||||
|
__ fld_d(Address(rsp, 4));
|
||||||
|
__ trigfunc('t');
|
||||||
|
__ ret(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// The intrinsic version of these seem to return the same value as
|
||||||
|
// the strict version.
|
||||||
|
StubRoutines::_intrinsic_exp = SharedRuntime::dexp;
|
||||||
|
StubRoutines::_intrinsic_pow = SharedRuntime::dpow;
|
||||||
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// Information about frame layout at time of blocking runtime call.
|
// Information about frame layout at time of blocking runtime call.
|
||||||
// Note that we only have to preserve callee-saved registers since
|
// Note that we only have to preserve callee-saved registers since
|
||||||
|
@ -2228,6 +2276,8 @@ class StubGenerator: public StubCodeGenerator {
|
||||||
MethodHandles::generate_method_handle_stub(_masm, ek);
|
MethodHandles::generate_method_handle_stub(_masm, ek);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
generate_math_stubs();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2003-2009 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 2003-2010 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -2731,6 +2731,79 @@ class StubGenerator: public StubCodeGenerator {
|
||||||
StubRoutines::_arrayof_oop_arraycopy = StubRoutines::_oop_arraycopy;
|
StubRoutines::_arrayof_oop_arraycopy = StubRoutines::_oop_arraycopy;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void generate_math_stubs() {
|
||||||
|
{
|
||||||
|
StubCodeMark mark(this, "StubRoutines", "log");
|
||||||
|
StubRoutines::_intrinsic_log = (double (*)(double)) __ pc();
|
||||||
|
|
||||||
|
__ subq(rsp, 8);
|
||||||
|
__ movdbl(Address(rsp, 0), xmm0);
|
||||||
|
__ fld_d(Address(rsp, 0));
|
||||||
|
__ flog();
|
||||||
|
__ fstp_d(Address(rsp, 0));
|
||||||
|
__ movdbl(xmm0, Address(rsp, 0));
|
||||||
|
__ addq(rsp, 8);
|
||||||
|
__ ret(0);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
StubCodeMark mark(this, "StubRoutines", "log10");
|
||||||
|
StubRoutines::_intrinsic_log10 = (double (*)(double)) __ pc();
|
||||||
|
|
||||||
|
__ subq(rsp, 8);
|
||||||
|
__ movdbl(Address(rsp, 0), xmm0);
|
||||||
|
__ fld_d(Address(rsp, 0));
|
||||||
|
__ flog10();
|
||||||
|
__ fstp_d(Address(rsp, 0));
|
||||||
|
__ movdbl(xmm0, Address(rsp, 0));
|
||||||
|
__ addq(rsp, 8);
|
||||||
|
__ ret(0);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
StubCodeMark mark(this, "StubRoutines", "sin");
|
||||||
|
StubRoutines::_intrinsic_sin = (double (*)(double)) __ pc();
|
||||||
|
|
||||||
|
__ subq(rsp, 8);
|
||||||
|
__ movdbl(Address(rsp, 0), xmm0);
|
||||||
|
__ fld_d(Address(rsp, 0));
|
||||||
|
__ trigfunc('s');
|
||||||
|
__ fstp_d(Address(rsp, 0));
|
||||||
|
__ movdbl(xmm0, Address(rsp, 0));
|
||||||
|
__ addq(rsp, 8);
|
||||||
|
__ ret(0);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
StubCodeMark mark(this, "StubRoutines", "cos");
|
||||||
|
StubRoutines::_intrinsic_cos = (double (*)(double)) __ pc();
|
||||||
|
|
||||||
|
__ subq(rsp, 8);
|
||||||
|
__ movdbl(Address(rsp, 0), xmm0);
|
||||||
|
__ fld_d(Address(rsp, 0));
|
||||||
|
__ trigfunc('c');
|
||||||
|
__ fstp_d(Address(rsp, 0));
|
||||||
|
__ movdbl(xmm0, Address(rsp, 0));
|
||||||
|
__ addq(rsp, 8);
|
||||||
|
__ ret(0);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
StubCodeMark mark(this, "StubRoutines", "tan");
|
||||||
|
StubRoutines::_intrinsic_tan = (double (*)(double)) __ pc();
|
||||||
|
|
||||||
|
__ subq(rsp, 8);
|
||||||
|
__ movdbl(Address(rsp, 0), xmm0);
|
||||||
|
__ fld_d(Address(rsp, 0));
|
||||||
|
__ trigfunc('t');
|
||||||
|
__ fstp_d(Address(rsp, 0));
|
||||||
|
__ movdbl(xmm0, Address(rsp, 0));
|
||||||
|
__ addq(rsp, 8);
|
||||||
|
__ ret(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// The intrinsic version of these seem to return the same value as
|
||||||
|
// the strict version.
|
||||||
|
StubRoutines::_intrinsic_exp = SharedRuntime::dexp;
|
||||||
|
StubRoutines::_intrinsic_pow = SharedRuntime::dpow;
|
||||||
|
}
|
||||||
|
|
||||||
#undef __
|
#undef __
|
||||||
#define __ masm->
|
#define __ masm->
|
||||||
|
|
||||||
|
@ -2945,6 +3018,8 @@ class StubGenerator: public StubCodeGenerator {
|
||||||
MethodHandles::generate_method_handle_stub(_masm, ek);
|
MethodHandles::generate_method_handle_stub(_masm, ek);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
generate_math_stubs();
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -1431,6 +1431,23 @@ address AbstractInterpreterGenerator::generate_method_entry(AbstractInterpreter:
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// These should never be compiled since the interpreter will prefer
|
||||||
|
// the compiled version to the intrinsic version.
|
||||||
|
bool AbstractInterpreter::can_be_compiled(methodHandle m) {
|
||||||
|
switch (method_kind(m)) {
|
||||||
|
case Interpreter::java_lang_math_sin : // fall thru
|
||||||
|
case Interpreter::java_lang_math_cos : // fall thru
|
||||||
|
case Interpreter::java_lang_math_tan : // fall thru
|
||||||
|
case Interpreter::java_lang_math_abs : // fall thru
|
||||||
|
case Interpreter::java_lang_math_log : // fall thru
|
||||||
|
case Interpreter::java_lang_math_log10 : // fall thru
|
||||||
|
case Interpreter::java_lang_math_sqrt :
|
||||||
|
return false;
|
||||||
|
default:
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// How much stack a method activation needs in words.
|
// How much stack a method activation needs in words.
|
||||||
int AbstractInterpreter::size_top_interpreter_activation(methodOop method) {
|
int AbstractInterpreter::size_top_interpreter_activation(methodOop method) {
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2003-2009 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 2003-2010 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -1456,6 +1456,23 @@ address AbstractInterpreterGenerator::generate_method_entry(
|
||||||
generate_normal_entry(synchronized);
|
generate_normal_entry(synchronized);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// These should never be compiled since the interpreter will prefer
|
||||||
|
// the compiled version to the intrinsic version.
|
||||||
|
bool AbstractInterpreter::can_be_compiled(methodHandle m) {
|
||||||
|
switch (method_kind(m)) {
|
||||||
|
case Interpreter::java_lang_math_sin : // fall thru
|
||||||
|
case Interpreter::java_lang_math_cos : // fall thru
|
||||||
|
case Interpreter::java_lang_math_tan : // fall thru
|
||||||
|
case Interpreter::java_lang_math_abs : // fall thru
|
||||||
|
case Interpreter::java_lang_math_log : // fall thru
|
||||||
|
case Interpreter::java_lang_math_log10 : // fall thru
|
||||||
|
case Interpreter::java_lang_math_sqrt :
|
||||||
|
return false;
|
||||||
|
default:
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// How much stack a method activation needs in words.
|
// How much stack a method activation needs in words.
|
||||||
int AbstractInterpreter::size_top_interpreter_activation(methodOop method) {
|
int AbstractInterpreter::size_top_interpreter_activation(methodOop method) {
|
||||||
const int entry_size = frame::interpreter_frame_monitor_size();
|
const int entry_size = frame::interpreter_frame_monitor_size();
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2003-2007 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 2003-2007 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* Copyright 2007, 2008 Red Hat, Inc.
|
* Copyright 2007, 2008, 2009, 2010 Red Hat, Inc.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -239,7 +239,21 @@ void os::Linux::set_fpu_control_word(int fpu) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool os::is_allocatable(size_t bytes) {
|
bool os::is_allocatable(size_t bytes) {
|
||||||
ShouldNotCallThis();
|
#ifdef _LP64
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
if (bytes < 2 * G) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
char* addr = reserve_memory(bytes, NULL);
|
||||||
|
|
||||||
|
if (addr != NULL) {
|
||||||
|
release_memory(addr, bytes);
|
||||||
|
}
|
||||||
|
|
||||||
|
return addr != NULL;
|
||||||
|
#endif // _LP64
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2000-2008 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 2000-2010 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -2000,7 +2000,7 @@ class LIR_OpVisitState: public StackObj {
|
||||||
typedef enum { inputMode, firstMode = inputMode, tempMode, outputMode, numModes, invalidMode = -1 } OprMode;
|
typedef enum { inputMode, firstMode = inputMode, tempMode, outputMode, numModes, invalidMode = -1 } OprMode;
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
maxNumberOfOperands = 14,
|
maxNumberOfOperands = 16,
|
||||||
maxNumberOfInfos = 4
|
maxNumberOfInfos = 4
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -161,6 +161,18 @@ ciField::ciField(fieldDescriptor *fd): _known_to_link_with(NULL) {
|
||||||
"bootstrap classes must not create & cache unshared fields");
|
"bootstrap classes must not create & cache unshared fields");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool trust_final_non_static_fields(ciInstanceKlass* holder) {
|
||||||
|
if (holder == NULL)
|
||||||
|
return false;
|
||||||
|
if (holder->name() == ciSymbol::java_lang_System())
|
||||||
|
// Never trust strangely unstable finals: System.out, etc.
|
||||||
|
return false;
|
||||||
|
// Even if general trusting is disabled, trust system-built closures in these packages.
|
||||||
|
if (holder->is_in_package("java/dyn") || holder->is_in_package("sun/dyn"))
|
||||||
|
return true;
|
||||||
|
return TrustFinalNonStaticFields;
|
||||||
|
}
|
||||||
|
|
||||||
void ciField::initialize_from(fieldDescriptor* fd) {
|
void ciField::initialize_from(fieldDescriptor* fd) {
|
||||||
// Get the flags, offset, and canonical holder of the field.
|
// Get the flags, offset, and canonical holder of the field.
|
||||||
_flags = ciFlags(fd->access_flags());
|
_flags = ciFlags(fd->access_flags());
|
||||||
|
@ -172,7 +184,7 @@ void ciField::initialize_from(fieldDescriptor* fd) {
|
||||||
if (!this->is_static()) {
|
if (!this->is_static()) {
|
||||||
// A field can be constant if it's a final static field or if it's
|
// A field can be constant if it's a final static field or if it's
|
||||||
// a final non-static field of a trusted class ({java,sun}.dyn).
|
// a final non-static field of a trusted class ({java,sun}.dyn).
|
||||||
if (_holder->is_in_package("java/dyn") || _holder->is_in_package("sun/dyn")) {
|
if (trust_final_non_static_fields(_holder)) {
|
||||||
_is_constant = true;
|
_is_constant = true;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -601,6 +601,7 @@ locknode.hpp subnode.hpp
|
||||||
|
|
||||||
loopTransform.cpp addnode.hpp
|
loopTransform.cpp addnode.hpp
|
||||||
loopTransform.cpp allocation.inline.hpp
|
loopTransform.cpp allocation.inline.hpp
|
||||||
|
loopTransform.cpp callnode.hpp
|
||||||
loopTransform.cpp connode.hpp
|
loopTransform.cpp connode.hpp
|
||||||
loopTransform.cpp compileLog.hpp
|
loopTransform.cpp compileLog.hpp
|
||||||
loopTransform.cpp divnode.hpp
|
loopTransform.cpp divnode.hpp
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -109,6 +109,8 @@ class AbstractInterpreter: AllStatic {
|
||||||
|
|
||||||
static void print_method_kind(MethodKind kind) PRODUCT_RETURN;
|
static void print_method_kind(MethodKind kind) PRODUCT_RETURN;
|
||||||
|
|
||||||
|
static bool can_be_compiled(methodHandle m);
|
||||||
|
|
||||||
// Runtime support
|
// Runtime support
|
||||||
|
|
||||||
// length = invoke bytecode length (to advance to next bytecode)
|
// length = invoke bytecode length (to advance to next bytecode)
|
||||||
|
|
|
@ -154,6 +154,12 @@
|
||||||
notproduct(bool, TraceProfileTripCount, false, \
|
notproduct(bool, TraceProfileTripCount, false, \
|
||||||
"Trace profile loop trip count information") \
|
"Trace profile loop trip count information") \
|
||||||
\
|
\
|
||||||
|
product(bool, UseLoopPredicate, true, \
|
||||||
|
"Generate a predicate to select fast/slow loop versions") \
|
||||||
|
\
|
||||||
|
develop(bool, TraceLoopPredicate, false, \
|
||||||
|
"Trace generation of loop predicates") \
|
||||||
|
\
|
||||||
develop(bool, OptoCoalesce, true, \
|
develop(bool, OptoCoalesce, true, \
|
||||||
"Use Conservative Copy Coalescing in the Register Allocator") \
|
"Use Conservative Copy Coalescing in the Register Allocator") \
|
||||||
\
|
\
|
||||||
|
|
|
@ -932,6 +932,7 @@ void Compile::Init(int aliaslevel) {
|
||||||
|
|
||||||
_intrinsics = NULL;
|
_intrinsics = NULL;
|
||||||
_macro_nodes = new GrowableArray<Node*>(comp_arena(), 8, 0, NULL);
|
_macro_nodes = new GrowableArray<Node*>(comp_arena(), 8, 0, NULL);
|
||||||
|
_predicate_opaqs = new GrowableArray<Node*>(comp_arena(), 8, 0, NULL);
|
||||||
register_library_intrinsics();
|
register_library_intrinsics();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1553,6 +1554,19 @@ void Compile::Finish_Warm() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------cleanup_loop_predicates-----------------------
|
||||||
|
// Remove the opaque nodes that protect the predicates so that all unused
|
||||||
|
// checks and uncommon_traps will be eliminated from the ideal graph
|
||||||
|
void Compile::cleanup_loop_predicates(PhaseIterGVN &igvn) {
|
||||||
|
if (predicate_count()==0) return;
|
||||||
|
for (int i = predicate_count(); i > 0; i--) {
|
||||||
|
Node * n = predicate_opaque1_node(i-1);
|
||||||
|
assert(n->Opcode() == Op_Opaque1, "must be");
|
||||||
|
igvn.replace_node(n, n->in(1));
|
||||||
|
}
|
||||||
|
assert(predicate_count()==0, "should be clean!");
|
||||||
|
igvn.optimize();
|
||||||
|
}
|
||||||
|
|
||||||
//------------------------------Optimize---------------------------------------
|
//------------------------------Optimize---------------------------------------
|
||||||
// Given a graph, optimize it.
|
// Given a graph, optimize it.
|
||||||
|
@ -1594,7 +1608,7 @@ void Compile::Optimize() {
|
||||||
if((loop_opts_cnt > 0) && (has_loops() || has_split_ifs())) {
|
if((loop_opts_cnt > 0) && (has_loops() || has_split_ifs())) {
|
||||||
{
|
{
|
||||||
TracePhase t2("idealLoop", &_t_idealLoop, true);
|
TracePhase t2("idealLoop", &_t_idealLoop, true);
|
||||||
PhaseIdealLoop ideal_loop( igvn, true );
|
PhaseIdealLoop ideal_loop( igvn, true, UseLoopPredicate);
|
||||||
loop_opts_cnt--;
|
loop_opts_cnt--;
|
||||||
if (major_progress()) print_method("PhaseIdealLoop 1", 2);
|
if (major_progress()) print_method("PhaseIdealLoop 1", 2);
|
||||||
if (failing()) return;
|
if (failing()) return;
|
||||||
|
@ -1602,7 +1616,7 @@ void Compile::Optimize() {
|
||||||
// Loop opts pass if partial peeling occurred in previous pass
|
// Loop opts pass if partial peeling occurred in previous pass
|
||||||
if(PartialPeelLoop && major_progress() && (loop_opts_cnt > 0)) {
|
if(PartialPeelLoop && major_progress() && (loop_opts_cnt > 0)) {
|
||||||
TracePhase t3("idealLoop", &_t_idealLoop, true);
|
TracePhase t3("idealLoop", &_t_idealLoop, true);
|
||||||
PhaseIdealLoop ideal_loop( igvn, false );
|
PhaseIdealLoop ideal_loop( igvn, false, UseLoopPredicate);
|
||||||
loop_opts_cnt--;
|
loop_opts_cnt--;
|
||||||
if (major_progress()) print_method("PhaseIdealLoop 2", 2);
|
if (major_progress()) print_method("PhaseIdealLoop 2", 2);
|
||||||
if (failing()) return;
|
if (failing()) return;
|
||||||
|
@ -1610,7 +1624,7 @@ void Compile::Optimize() {
|
||||||
// Loop opts pass for loop-unrolling before CCP
|
// Loop opts pass for loop-unrolling before CCP
|
||||||
if(major_progress() && (loop_opts_cnt > 0)) {
|
if(major_progress() && (loop_opts_cnt > 0)) {
|
||||||
TracePhase t4("idealLoop", &_t_idealLoop, true);
|
TracePhase t4("idealLoop", &_t_idealLoop, true);
|
||||||
PhaseIdealLoop ideal_loop( igvn, false );
|
PhaseIdealLoop ideal_loop( igvn, false, UseLoopPredicate);
|
||||||
loop_opts_cnt--;
|
loop_opts_cnt--;
|
||||||
if (major_progress()) print_method("PhaseIdealLoop 3", 2);
|
if (major_progress()) print_method("PhaseIdealLoop 3", 2);
|
||||||
}
|
}
|
||||||
|
@ -1648,13 +1662,21 @@ void Compile::Optimize() {
|
||||||
// peeling, unrolling, etc.
|
// peeling, unrolling, etc.
|
||||||
if(loop_opts_cnt > 0) {
|
if(loop_opts_cnt > 0) {
|
||||||
debug_only( int cnt = 0; );
|
debug_only( int cnt = 0; );
|
||||||
|
bool loop_predication = UseLoopPredicate;
|
||||||
while(major_progress() && (loop_opts_cnt > 0)) {
|
while(major_progress() && (loop_opts_cnt > 0)) {
|
||||||
TracePhase t2("idealLoop", &_t_idealLoop, true);
|
TracePhase t2("idealLoop", &_t_idealLoop, true);
|
||||||
assert( cnt++ < 40, "infinite cycle in loop optimization" );
|
assert( cnt++ < 40, "infinite cycle in loop optimization" );
|
||||||
PhaseIdealLoop ideal_loop( igvn, true );
|
PhaseIdealLoop ideal_loop( igvn, true, loop_predication);
|
||||||
loop_opts_cnt--;
|
loop_opts_cnt--;
|
||||||
if (major_progress()) print_method("PhaseIdealLoop iterations", 2);
|
if (major_progress()) print_method("PhaseIdealLoop iterations", 2);
|
||||||
if (failing()) return;
|
if (failing()) return;
|
||||||
|
// Perform loop predication optimization during first iteration after CCP.
|
||||||
|
// After that switch it off and cleanup unused loop predicates.
|
||||||
|
if (loop_predication) {
|
||||||
|
loop_predication = false;
|
||||||
|
cleanup_loop_predicates(igvn);
|
||||||
|
if (failing()) return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,7 @@ class Node_Notes;
|
||||||
class OptoReg;
|
class OptoReg;
|
||||||
class PhaseCFG;
|
class PhaseCFG;
|
||||||
class PhaseGVN;
|
class PhaseGVN;
|
||||||
|
class PhaseIterGVN;
|
||||||
class PhaseRegAlloc;
|
class PhaseRegAlloc;
|
||||||
class PhaseCCP;
|
class PhaseCCP;
|
||||||
class PhaseCCP_DCE;
|
class PhaseCCP_DCE;
|
||||||
|
@ -172,6 +173,7 @@ class Compile : public Phase {
|
||||||
const char* _failure_reason; // for record_failure/failing pattern
|
const char* _failure_reason; // for record_failure/failing pattern
|
||||||
GrowableArray<CallGenerator*>* _intrinsics; // List of intrinsics.
|
GrowableArray<CallGenerator*>* _intrinsics; // List of intrinsics.
|
||||||
GrowableArray<Node*>* _macro_nodes; // List of nodes which need to be expanded before matching.
|
GrowableArray<Node*>* _macro_nodes; // List of nodes which need to be expanded before matching.
|
||||||
|
GrowableArray<Node*>* _predicate_opaqs; // List of Opaque1 nodes for the loop predicates.
|
||||||
ConnectionGraph* _congraph;
|
ConnectionGraph* _congraph;
|
||||||
#ifndef PRODUCT
|
#ifndef PRODUCT
|
||||||
IdealGraphPrinter* _printer;
|
IdealGraphPrinter* _printer;
|
||||||
|
@ -351,7 +353,9 @@ class Compile : public Phase {
|
||||||
}
|
}
|
||||||
|
|
||||||
int macro_count() { return _macro_nodes->length(); }
|
int macro_count() { return _macro_nodes->length(); }
|
||||||
|
int predicate_count() { return _predicate_opaqs->length();}
|
||||||
Node* macro_node(int idx) { return _macro_nodes->at(idx); }
|
Node* macro_node(int idx) { return _macro_nodes->at(idx); }
|
||||||
|
Node* predicate_opaque1_node(int idx) { return _predicate_opaqs->at(idx);}
|
||||||
ConnectionGraph* congraph() { return _congraph;}
|
ConnectionGraph* congraph() { return _congraph;}
|
||||||
void add_macro_node(Node * n) {
|
void add_macro_node(Node * n) {
|
||||||
//assert(n->is_macro(), "must be a macro node");
|
//assert(n->is_macro(), "must be a macro node");
|
||||||
|
@ -363,7 +367,19 @@ class Compile : public Phase {
|
||||||
// that the node is in the array before attempting to remove it
|
// that the node is in the array before attempting to remove it
|
||||||
if (_macro_nodes->contains(n))
|
if (_macro_nodes->contains(n))
|
||||||
_macro_nodes->remove(n);
|
_macro_nodes->remove(n);
|
||||||
|
// remove from _predicate_opaqs list also if it is there
|
||||||
|
if (predicate_count() > 0 && _predicate_opaqs->contains(n)){
|
||||||
|
_predicate_opaqs->remove(n);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
void add_predicate_opaq(Node * n) {
|
||||||
|
assert(!_predicate_opaqs->contains(n), " duplicate entry in predicate opaque1");
|
||||||
|
assert(_macro_nodes->contains(n), "should have already been in macro list");
|
||||||
|
_predicate_opaqs->append(n);
|
||||||
|
}
|
||||||
|
// remove the opaque nodes that protect the predicates so that the unused checks and
|
||||||
|
// uncommon traps will be eliminated from the graph.
|
||||||
|
void cleanup_loop_predicates(PhaseIterGVN &igvn);
|
||||||
|
|
||||||
// Compilation environment.
|
// Compilation environment.
|
||||||
Arena* comp_arena() { return &_comp_arena; }
|
Arena* comp_arena() { return &_comp_arena; }
|
||||||
|
|
|
@ -549,6 +549,10 @@ bool IdealLoopTree::policy_range_check( PhaseIdealLoop *phase ) const {
|
||||||
// Comparing trip+off vs limit
|
// Comparing trip+off vs limit
|
||||||
Node *bol = iff->in(1);
|
Node *bol = iff->in(1);
|
||||||
if( bol->req() != 2 ) continue; // dead constant test
|
if( bol->req() != 2 ) continue; // dead constant test
|
||||||
|
if (!bol->is_Bool()) {
|
||||||
|
assert(UseLoopPredicate && bol->Opcode() == Op_Conv2B, "predicate check only");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
Node *cmp = bol->in(1);
|
Node *cmp = bol->in(1);
|
||||||
|
|
||||||
Node *rc_exp = cmp->in(1);
|
Node *rc_exp = cmp->in(1);
|
||||||
|
@ -875,7 +879,7 @@ void PhaseIdealLoop::insert_pre_post_loops( IdealLoopTree *loop, Node_List &old_
|
||||||
//------------------------------is_invariant-----------------------------
|
//------------------------------is_invariant-----------------------------
|
||||||
// Return true if n is invariant
|
// Return true if n is invariant
|
||||||
bool IdealLoopTree::is_invariant(Node* n) const {
|
bool IdealLoopTree::is_invariant(Node* n) const {
|
||||||
Node *n_c = _phase->get_ctrl(n);
|
Node *n_c = _phase->has_ctrl(n) ? _phase->get_ctrl(n) : n;
|
||||||
if (n_c->is_top()) return false;
|
if (n_c->is_top()) return false;
|
||||||
return !is_member(_phase->get_loop(n_c));
|
return !is_member(_phase->get_loop(n_c));
|
||||||
}
|
}
|
||||||
|
@ -1746,3 +1750,576 @@ bool IdealLoopTree::iteration_split( PhaseIdealLoop *phase, Node_List &old_new )
|
||||||
return false;
|
return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//-------------------------------is_uncommon_trap_proj----------------------------
|
||||||
|
// Return true if proj is the form of "proj->[region->..]call_uct"
|
||||||
|
bool PhaseIdealLoop::is_uncommon_trap_proj(ProjNode* proj, bool must_reason_predicate) {
|
||||||
|
int path_limit = 10;
|
||||||
|
assert(proj, "invalid argument");
|
||||||
|
Node* out = proj;
|
||||||
|
for (int ct = 0; ct < path_limit; ct++) {
|
||||||
|
out = out->unique_ctrl_out();
|
||||||
|
if (out == NULL || out->is_Root() || out->is_Start())
|
||||||
|
return false;
|
||||||
|
if (out->is_CallStaticJava()) {
|
||||||
|
int req = out->as_CallStaticJava()->uncommon_trap_request();
|
||||||
|
if (req != 0) {
|
||||||
|
Deoptimization::DeoptReason reason = Deoptimization::trap_request_reason(req);
|
||||||
|
if (!must_reason_predicate || reason == Deoptimization::Reason_predicate){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false; // don't do further after call
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
//-------------------------------is_uncommon_trap_if_pattern-------------------------
|
||||||
|
// Return true for "if(test)-> proj -> ...
|
||||||
|
// |
|
||||||
|
// V
|
||||||
|
// other_proj->[region->..]call_uct"
|
||||||
|
//
|
||||||
|
// "must_reason_predicate" means the uct reason must be Reason_predicate
|
||||||
|
bool PhaseIdealLoop::is_uncommon_trap_if_pattern(ProjNode *proj, bool must_reason_predicate) {
|
||||||
|
Node *in0 = proj->in(0);
|
||||||
|
if (!in0->is_If()) return false;
|
||||||
|
IfNode* iff = in0->as_If();
|
||||||
|
|
||||||
|
// we need "If(Conv2B(Opaque1(...)))" pattern for must_reason_predicate
|
||||||
|
if (must_reason_predicate) {
|
||||||
|
if (iff->in(1)->Opcode() != Op_Conv2B ||
|
||||||
|
iff->in(1)->in(1)->Opcode() != Op_Opaque1) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ProjNode* other_proj = iff->proj_out(1-proj->_con)->as_Proj();
|
||||||
|
return is_uncommon_trap_proj(other_proj, must_reason_predicate);
|
||||||
|
}
|
||||||
|
|
||||||
|
//------------------------------create_new_if_for_predicate------------------------
|
||||||
|
// create a new if above the uct_if_pattern for the predicate to be promoted.
|
||||||
|
//
|
||||||
|
// before after
|
||||||
|
// ---------- ----------
|
||||||
|
// ctrl ctrl
|
||||||
|
// | |
|
||||||
|
// | |
|
||||||
|
// v v
|
||||||
|
// iff new_iff
|
||||||
|
// / \ / \
|
||||||
|
// / \ / \
|
||||||
|
// v v v v
|
||||||
|
// uncommon_proj cont_proj if_uct if_cont
|
||||||
|
// \ | | | |
|
||||||
|
// \ | | | |
|
||||||
|
// v v v | v
|
||||||
|
// rgn loop | iff
|
||||||
|
// | | / \
|
||||||
|
// | | / \
|
||||||
|
// v | v v
|
||||||
|
// uncommon_trap | uncommon_proj cont_proj
|
||||||
|
// \ \ | |
|
||||||
|
// \ \ | |
|
||||||
|
// v v v v
|
||||||
|
// rgn loop
|
||||||
|
// |
|
||||||
|
// |
|
||||||
|
// v
|
||||||
|
// uncommon_trap
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// We will create a region to guard the uct call if there is no one there.
|
||||||
|
// The true projecttion (if_cont) of the new_iff is returned.
|
||||||
|
ProjNode* PhaseIdealLoop::create_new_if_for_predicate(ProjNode* cont_proj) {
|
||||||
|
assert(is_uncommon_trap_if_pattern(cont_proj, true), "must be a uct if pattern!");
|
||||||
|
IfNode* iff = cont_proj->in(0)->as_If();
|
||||||
|
|
||||||
|
ProjNode *uncommon_proj = iff->proj_out(1 - cont_proj->_con);
|
||||||
|
Node *rgn = uncommon_proj->unique_ctrl_out();
|
||||||
|
assert(rgn->is_Region() || rgn->is_Call(), "must be a region or call uct");
|
||||||
|
|
||||||
|
if (!rgn->is_Region()) { // create a region to guard the call
|
||||||
|
assert(rgn->is_Call(), "must be call uct");
|
||||||
|
CallNode* call = rgn->as_Call();
|
||||||
|
rgn = new (C, 1) RegionNode(1);
|
||||||
|
_igvn.set_type(rgn, rgn->bottom_type());
|
||||||
|
rgn->add_req(uncommon_proj);
|
||||||
|
set_idom(rgn, idom(uncommon_proj), dom_depth(uncommon_proj)+1);
|
||||||
|
_igvn.hash_delete(call);
|
||||||
|
call->set_req(0, rgn);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create new_iff
|
||||||
|
uint iffdd = dom_depth(iff);
|
||||||
|
IdealLoopTree* lp = get_loop(iff);
|
||||||
|
IfNode *new_iff = new (C, 2) IfNode(iff->in(0), NULL, iff->_prob, iff->_fcnt);
|
||||||
|
register_node(new_iff, lp, idom(iff), iffdd);
|
||||||
|
Node *if_cont = new (C, 1) IfTrueNode(new_iff);
|
||||||
|
Node *if_uct = new (C, 1) IfFalseNode(new_iff);
|
||||||
|
if (cont_proj->is_IfFalse()) {
|
||||||
|
// Swap
|
||||||
|
Node* tmp = if_uct; if_uct = if_cont; if_cont = tmp;
|
||||||
|
}
|
||||||
|
register_node(if_cont, lp, new_iff, iffdd);
|
||||||
|
register_node(if_uct, get_loop(rgn), new_iff, iffdd);
|
||||||
|
|
||||||
|
// if_cont to iff
|
||||||
|
_igvn.hash_delete(iff);
|
||||||
|
iff->set_req(0, if_cont);
|
||||||
|
set_idom(iff, if_cont, dom_depth(iff));
|
||||||
|
|
||||||
|
// if_uct to rgn
|
||||||
|
_igvn.hash_delete(rgn);
|
||||||
|
rgn->add_req(if_uct);
|
||||||
|
Node* ridom = idom(rgn);
|
||||||
|
Node* nrdom = dom_lca(ridom, new_iff);
|
||||||
|
set_idom(rgn, nrdom, dom_depth(rgn));
|
||||||
|
|
||||||
|
// rgn must have no phis
|
||||||
|
assert(!rgn->as_Region()->has_phi(), "region must have no phis");
|
||||||
|
|
||||||
|
return if_cont->as_Proj();
|
||||||
|
}
|
||||||
|
|
||||||
|
//------------------------------find_predicate_insertion_point--------------------------
|
||||||
|
// Find a good location to insert a predicate
|
||||||
|
ProjNode* PhaseIdealLoop::find_predicate_insertion_point(Node* start_c) {
|
||||||
|
if (start_c == C->root() || !start_c->is_Proj())
|
||||||
|
return NULL;
|
||||||
|
if (is_uncommon_trap_if_pattern(start_c->as_Proj(), true/*Reason_Predicate*/)) {
|
||||||
|
return start_c->as_Proj();
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
//------------------------------Invariance-----------------------------------
|
||||||
|
// Helper class for loop_predication_impl to compute invariance on the fly and
|
||||||
|
// clone invariants.
|
||||||
|
class Invariance : public StackObj {
|
||||||
|
VectorSet _visited, _invariant;
|
||||||
|
Node_Stack _stack;
|
||||||
|
VectorSet _clone_visited;
|
||||||
|
Node_List _old_new; // map of old to new (clone)
|
||||||
|
IdealLoopTree* _lpt;
|
||||||
|
PhaseIdealLoop* _phase;
|
||||||
|
|
||||||
|
// Helper function to set up the invariance for invariance computation
|
||||||
|
// If n is a known invariant, set up directly. Otherwise, look up the
|
||||||
|
// the possibility to push n onto the stack for further processing.
|
||||||
|
void visit(Node* use, Node* n) {
|
||||||
|
if (_lpt->is_invariant(n)) { // known invariant
|
||||||
|
_invariant.set(n->_idx);
|
||||||
|
} else if (!n->is_CFG()) {
|
||||||
|
Node *n_ctrl = _phase->ctrl_or_self(n);
|
||||||
|
Node *u_ctrl = _phase->ctrl_or_self(use); // self if use is a CFG
|
||||||
|
if (_phase->is_dominator(n_ctrl, u_ctrl)) {
|
||||||
|
_stack.push(n, n->in(0) == NULL ? 1 : 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Compute invariance for "the_node" and (possibly) all its inputs recursively
|
||||||
|
// on the fly
|
||||||
|
void compute_invariance(Node* n) {
|
||||||
|
assert(_visited.test(n->_idx), "must be");
|
||||||
|
visit(n, n);
|
||||||
|
while (_stack.is_nonempty()) {
|
||||||
|
Node* n = _stack.node();
|
||||||
|
uint idx = _stack.index();
|
||||||
|
if (idx == n->req()) { // all inputs are processed
|
||||||
|
_stack.pop();
|
||||||
|
// n is invariant if it's inputs are all invariant
|
||||||
|
bool all_inputs_invariant = true;
|
||||||
|
for (uint i = 0; i < n->req(); i++) {
|
||||||
|
Node* in = n->in(i);
|
||||||
|
if (in == NULL) continue;
|
||||||
|
assert(_visited.test(in->_idx), "must have visited input");
|
||||||
|
if (!_invariant.test(in->_idx)) { // bad guy
|
||||||
|
all_inputs_invariant = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (all_inputs_invariant) {
|
||||||
|
_invariant.set(n->_idx); // I am a invariant too
|
||||||
|
}
|
||||||
|
} else { // process next input
|
||||||
|
_stack.set_index(idx + 1);
|
||||||
|
Node* m = n->in(idx);
|
||||||
|
if (m != NULL && !_visited.test_set(m->_idx)) {
|
||||||
|
visit(n, m);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Helper function to set up _old_new map for clone_nodes.
|
||||||
|
// If n is a known invariant, set up directly ("clone" of n == n).
|
||||||
|
// Otherwise, push n onto the stack for real cloning.
|
||||||
|
void clone_visit(Node* n) {
|
||||||
|
assert(_invariant.test(n->_idx), "must be invariant");
|
||||||
|
if (_lpt->is_invariant(n)) { // known invariant
|
||||||
|
_old_new.map(n->_idx, n);
|
||||||
|
} else{ // to be cloned
|
||||||
|
assert (!n->is_CFG(), "should not see CFG here");
|
||||||
|
_stack.push(n, n->in(0) == NULL ? 1 : 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clone "n" and (possibly) all its inputs recursively
|
||||||
|
void clone_nodes(Node* n, Node* ctrl) {
|
||||||
|
clone_visit(n);
|
||||||
|
while (_stack.is_nonempty()) {
|
||||||
|
Node* n = _stack.node();
|
||||||
|
uint idx = _stack.index();
|
||||||
|
if (idx == n->req()) { // all inputs processed, clone n!
|
||||||
|
_stack.pop();
|
||||||
|
// clone invariant node
|
||||||
|
Node* n_cl = n->clone();
|
||||||
|
_old_new.map(n->_idx, n_cl);
|
||||||
|
_phase->register_new_node(n_cl, ctrl);
|
||||||
|
for (uint i = 0; i < n->req(); i++) {
|
||||||
|
Node* in = n_cl->in(i);
|
||||||
|
if (in == NULL) continue;
|
||||||
|
n_cl->set_req(i, _old_new[in->_idx]);
|
||||||
|
}
|
||||||
|
} else { // process next input
|
||||||
|
_stack.set_index(idx + 1);
|
||||||
|
Node* m = n->in(idx);
|
||||||
|
if (m != NULL && !_clone_visited.test_set(m->_idx)) {
|
||||||
|
clone_visit(m); // visit the input
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public:
|
||||||
|
Invariance(Arena* area, IdealLoopTree* lpt) :
|
||||||
|
_lpt(lpt), _phase(lpt->_phase),
|
||||||
|
_visited(area), _invariant(area), _stack(area, 10 /* guess */),
|
||||||
|
_clone_visited(area), _old_new(area)
|
||||||
|
{}
|
||||||
|
|
||||||
|
// Map old to n for invariance computation and clone
|
||||||
|
void map_ctrl(Node* old, Node* n) {
|
||||||
|
assert(old->is_CFG() && n->is_CFG(), "must be");
|
||||||
|
_old_new.map(old->_idx, n); // "clone" of old is n
|
||||||
|
_invariant.set(old->_idx); // old is invariant
|
||||||
|
_clone_visited.set(old->_idx);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Driver function to compute invariance
|
||||||
|
bool is_invariant(Node* n) {
|
||||||
|
if (!_visited.test_set(n->_idx))
|
||||||
|
compute_invariance(n);
|
||||||
|
return (_invariant.test(n->_idx) != 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Driver function to clone invariant
|
||||||
|
Node* clone(Node* n, Node* ctrl) {
|
||||||
|
assert(ctrl->is_CFG(), "must be");
|
||||||
|
assert(_invariant.test(n->_idx), "must be an invariant");
|
||||||
|
if (!_clone_visited.test(n->_idx))
|
||||||
|
clone_nodes(n, ctrl);
|
||||||
|
return _old_new[n->_idx];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
//------------------------------is_range_check_if -----------------------------------
|
||||||
|
// Returns true if the predicate of iff is in "scale*iv + offset u< load_range(ptr)" format
|
||||||
|
// Note: this function is particularly designed for loop predication. We require load_range
|
||||||
|
// and offset to be loop invariant computed on the fly by "invar"
|
||||||
|
bool IdealLoopTree::is_range_check_if(IfNode *iff, PhaseIdealLoop *phase, Invariance& invar) const {
|
||||||
|
if (!is_loop_exit(iff)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!iff->in(1)->is_Bool()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const BoolNode *bol = iff->in(1)->as_Bool();
|
||||||
|
if (bol->_test._test != BoolTest::lt) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!bol->in(1)->is_Cmp()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const CmpNode *cmp = bol->in(1)->as_Cmp();
|
||||||
|
if (cmp->Opcode() != Op_CmpU ) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (cmp->in(2)->Opcode() != Op_LoadRange) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
LoadRangeNode* lr = (LoadRangeNode*)cmp->in(2);
|
||||||
|
if (!invar.is_invariant(lr)) { // loadRange must be invariant
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Node *iv = _head->as_CountedLoop()->phi();
|
||||||
|
int scale = 0;
|
||||||
|
Node *offset = NULL;
|
||||||
|
if (!phase->is_scaled_iv_plus_offset(cmp->in(1), iv, &scale, &offset)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(offset && !invar.is_invariant(offset)) { // offset must be invariant
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//------------------------------rc_predicate-----------------------------------
|
||||||
|
// Create a range check predicate
|
||||||
|
//
|
||||||
|
// for (i = init; i < limit; i += stride) {
|
||||||
|
// a[scale*i+offset]
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// Compute max(scale*i + offset) for init <= i < limit and build the predicate
|
||||||
|
// as "max(scale*i + offset) u< a.length".
|
||||||
|
//
|
||||||
|
// There are two cases for max(scale*i + offset):
|
||||||
|
// (1) stride*scale > 0
|
||||||
|
// max(scale*i + offset) = scale*(limit-stride) + offset
|
||||||
|
// (2) stride*scale < 0
|
||||||
|
// max(scale*i + offset) = scale*init + offset
|
||||||
|
BoolNode* PhaseIdealLoop::rc_predicate(Node* ctrl,
|
||||||
|
int scale, Node* offset,
|
||||||
|
Node* init, Node* limit, Node* stride,
|
||||||
|
Node* range) {
|
||||||
|
Node* max_idx_expr = init;
|
||||||
|
int stride_con = stride->get_int();
|
||||||
|
if ((stride_con > 0) == (scale > 0)) {
|
||||||
|
max_idx_expr = new (C, 3) SubINode(limit, stride);
|
||||||
|
register_new_node(max_idx_expr, ctrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (scale != 1) {
|
||||||
|
ConNode* con_scale = _igvn.intcon(scale);
|
||||||
|
max_idx_expr = new (C, 3) MulINode(max_idx_expr, con_scale);
|
||||||
|
register_new_node(max_idx_expr, ctrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (offset && (!offset->is_Con() || offset->get_int() != 0)){
|
||||||
|
max_idx_expr = new (C, 3) AddINode(max_idx_expr, offset);
|
||||||
|
register_new_node(max_idx_expr, ctrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
CmpUNode* cmp = new (C, 3) CmpUNode(max_idx_expr, range);
|
||||||
|
register_new_node(cmp, ctrl);
|
||||||
|
BoolNode* bol = new (C, 2) BoolNode(cmp, BoolTest::lt);
|
||||||
|
register_new_node(bol, ctrl);
|
||||||
|
return bol;
|
||||||
|
}
|
||||||
|
|
||||||
|
//------------------------------ loop_predication_impl--------------------------
|
||||||
|
// Insert loop predicates for null checks and range checks
|
||||||
|
bool PhaseIdealLoop::loop_predication_impl(IdealLoopTree *loop) {
|
||||||
|
if (!UseLoopPredicate) return false;
|
||||||
|
|
||||||
|
// Too many traps seen?
|
||||||
|
bool tmt = C->too_many_traps(C->method(), 0, Deoptimization::Reason_predicate);
|
||||||
|
int tc = C->trap_count(Deoptimization::Reason_predicate);
|
||||||
|
if (tmt || tc > 0) {
|
||||||
|
if (TraceLoopPredicate) {
|
||||||
|
tty->print_cr("too many predicate traps: %d", tc);
|
||||||
|
C->method()->print(); // which method has too many predicate traps
|
||||||
|
tty->print_cr("");
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
CountedLoopNode *cl = NULL;
|
||||||
|
if (loop->_head->is_CountedLoop()) {
|
||||||
|
cl = loop->_head->as_CountedLoop();
|
||||||
|
// do nothing for iteration-splitted loops
|
||||||
|
if(!cl->is_normal_loop()) return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
LoopNode *lpn = loop->_head->as_Loop();
|
||||||
|
Node* entry = lpn->in(LoopNode::EntryControl);
|
||||||
|
|
||||||
|
ProjNode *predicate_proj = find_predicate_insertion_point(entry);
|
||||||
|
if (!predicate_proj){
|
||||||
|
#ifndef PRODUCT
|
||||||
|
if (TraceLoopPredicate) {
|
||||||
|
tty->print("missing predicate:");
|
||||||
|
loop->dump_head();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
ConNode* zero = _igvn.intcon(0);
|
||||||
|
set_ctrl(zero, C->root());
|
||||||
|
Node *cond_false = new (C, 2) Conv2BNode(zero);
|
||||||
|
register_new_node(cond_false, C->root());
|
||||||
|
ConNode* one = _igvn.intcon(1);
|
||||||
|
set_ctrl(one, C->root());
|
||||||
|
Node *cond_true = new (C, 2) Conv2BNode(one);
|
||||||
|
register_new_node(cond_true, C->root());
|
||||||
|
|
||||||
|
ResourceArea *area = Thread::current()->resource_area();
|
||||||
|
Invariance invar(area, loop);
|
||||||
|
|
||||||
|
// Create list of if-projs such that a newer proj dominates all older
|
||||||
|
// projs in the list, and they all dominate loop->tail()
|
||||||
|
Node_List if_proj_list(area);
|
||||||
|
LoopNode *head = loop->_head->as_Loop();
|
||||||
|
Node *current_proj = loop->tail(); //start from tail
|
||||||
|
while ( current_proj != head ) {
|
||||||
|
if (loop == get_loop(current_proj) && // still in the loop ?
|
||||||
|
current_proj->is_Proj() && // is a projection ?
|
||||||
|
current_proj->in(0)->Opcode() == Op_If) { // is a if projection ?
|
||||||
|
if_proj_list.push(current_proj);
|
||||||
|
}
|
||||||
|
current_proj = idom(current_proj);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool hoisted = false; // true if at least one proj is promoted
|
||||||
|
while (if_proj_list.size() > 0) {
|
||||||
|
// Following are changed to nonnull when a predicate can be hoisted
|
||||||
|
ProjNode* new_predicate_proj = NULL;
|
||||||
|
BoolNode* new_predicate_bol = NULL;
|
||||||
|
|
||||||
|
ProjNode* proj = if_proj_list.pop()->as_Proj();
|
||||||
|
IfNode* iff = proj->in(0)->as_If();
|
||||||
|
|
||||||
|
if (!is_uncommon_trap_if_pattern(proj)) {
|
||||||
|
if (loop->is_loop_exit(iff)) {
|
||||||
|
// stop processing the remaining projs in the list because the execution of them
|
||||||
|
// depends on the condition of "iff" (iff->in(1)).
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
// Both arms are inside the loop. There are two cases:
|
||||||
|
// (1) there is one backward branch. In this case, any remaining proj
|
||||||
|
// in the if_proj list post-dominates "iff". So, the condition of "iff"
|
||||||
|
// does not determine the execution the remining projs directly, and we
|
||||||
|
// can safely continue.
|
||||||
|
// (2) both arms are forwarded, i.e. a diamond shape. In this case, "proj"
|
||||||
|
// does not dominate loop->tail(), so it can not be in the if_proj list.
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Node* test = iff->in(1);
|
||||||
|
if (!test->is_Bool()){ //Conv2B, ...
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
BoolNode* bol = test->as_Bool();
|
||||||
|
if (invar.is_invariant(bol)) {
|
||||||
|
// Invariant test
|
||||||
|
new_predicate_proj = create_new_if_for_predicate(predicate_proj);
|
||||||
|
Node* ctrl = new_predicate_proj->in(0)->as_If()->in(0);
|
||||||
|
new_predicate_bol = invar.clone(bol, ctrl)->as_Bool();
|
||||||
|
if (TraceLoopPredicate) tty->print("invariant");
|
||||||
|
} else if (cl != NULL && loop->is_range_check_if(iff, this, invar)) {
|
||||||
|
// Range check (only for counted loops)
|
||||||
|
new_predicate_proj = create_new_if_for_predicate(predicate_proj);
|
||||||
|
Node *ctrl = new_predicate_proj->in(0)->as_If()->in(0);
|
||||||
|
const Node* cmp = bol->in(1)->as_Cmp();
|
||||||
|
Node* idx = cmp->in(1);
|
||||||
|
assert(!invar.is_invariant(idx), "index is variant");
|
||||||
|
assert(cmp->in(2)->Opcode() == Op_LoadRange, "must be");
|
||||||
|
LoadRangeNode* ld_rng = (LoadRangeNode*)cmp->in(2); // LoadRangeNode
|
||||||
|
assert(invar.is_invariant(ld_rng), "load range must be invariant");
|
||||||
|
ld_rng = (LoadRangeNode*)invar.clone(ld_rng, ctrl);
|
||||||
|
int scale = 1;
|
||||||
|
Node* offset = zero;
|
||||||
|
bool ok = is_scaled_iv_plus_offset(idx, cl->phi(), &scale, &offset);
|
||||||
|
assert(ok, "must be index expression");
|
||||||
|
if (offset && offset != zero) {
|
||||||
|
assert(invar.is_invariant(offset), "offset must be loop invariant");
|
||||||
|
offset = invar.clone(offset, ctrl);
|
||||||
|
}
|
||||||
|
Node* init = cl->init_trip();
|
||||||
|
Node* limit = cl->limit();
|
||||||
|
Node* stride = cl->stride();
|
||||||
|
new_predicate_bol = rc_predicate(ctrl, scale, offset, init, limit, stride, ld_rng);
|
||||||
|
if (TraceLoopPredicate) tty->print("range check");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (new_predicate_proj == NULL) {
|
||||||
|
// The other proj of the "iff" is a uncommon trap projection, and we can assume
|
||||||
|
// the other proj will not be executed ("executed" means uct raised).
|
||||||
|
continue;
|
||||||
|
} else {
|
||||||
|
// Success - attach condition (new_predicate_bol) to predicate if
|
||||||
|
invar.map_ctrl(proj, new_predicate_proj); // so that invariance test can be appropriate
|
||||||
|
IfNode* new_iff = new_predicate_proj->in(0)->as_If();
|
||||||
|
|
||||||
|
// Negate test if necessary
|
||||||
|
if (proj->_con != predicate_proj->_con) {
|
||||||
|
new_predicate_bol = new (C, 2) BoolNode(new_predicate_bol->in(1), new_predicate_bol->_test.negate());
|
||||||
|
register_new_node(new_predicate_bol, new_iff->in(0));
|
||||||
|
if (TraceLoopPredicate) tty->print_cr(" if negated: %d", iff->_idx);
|
||||||
|
} else {
|
||||||
|
if (TraceLoopPredicate) tty->print_cr(" if: %d", iff->_idx);
|
||||||
|
}
|
||||||
|
|
||||||
|
_igvn.hash_delete(new_iff);
|
||||||
|
new_iff->set_req(1, new_predicate_bol);
|
||||||
|
|
||||||
|
_igvn.hash_delete(iff);
|
||||||
|
iff->set_req(1, proj->is_IfFalse() ? cond_false : cond_true);
|
||||||
|
|
||||||
|
Node* ctrl = new_predicate_proj; // new control
|
||||||
|
ProjNode* dp = proj; // old control
|
||||||
|
assert(get_loop(dp) == loop, "guarenteed at the time of collecting proj");
|
||||||
|
// Find nodes (depends only on the test) off the surviving projection;
|
||||||
|
// move them outside the loop with the control of proj_clone
|
||||||
|
for (DUIterator_Fast imax, i = dp->fast_outs(imax); i < imax; i++) {
|
||||||
|
Node* cd = dp->fast_out(i); // Control-dependent node
|
||||||
|
if (cd->depends_only_on_test()) {
|
||||||
|
assert(cd->in(0) == dp, "");
|
||||||
|
_igvn.hash_delete(cd);
|
||||||
|
cd->set_req(0, ctrl); // ctrl, not NULL
|
||||||
|
set_early_ctrl(cd);
|
||||||
|
_igvn._worklist.push(cd);
|
||||||
|
IdealLoopTree *new_loop = get_loop(get_ctrl(cd));
|
||||||
|
if (new_loop != loop) {
|
||||||
|
if (!loop->_child) loop->_body.yank(cd);
|
||||||
|
if (!new_loop->_child ) new_loop->_body.push(cd);
|
||||||
|
}
|
||||||
|
--i;
|
||||||
|
--imax;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
hoisted = true;
|
||||||
|
C->set_major_progress();
|
||||||
|
}
|
||||||
|
} // end while
|
||||||
|
|
||||||
|
#ifndef PRODUCT
|
||||||
|
// report that the loop predication has been actually performed
|
||||||
|
// for this loop
|
||||||
|
if (TraceLoopPredicate && hoisted) {
|
||||||
|
tty->print("Loop Predication Performed:");
|
||||||
|
loop->dump_head();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return hoisted;
|
||||||
|
}
|
||||||
|
|
||||||
|
//------------------------------loop_predication--------------------------------
|
||||||
|
// driver routine for loop predication optimization
|
||||||
|
bool IdealLoopTree::loop_predication( PhaseIdealLoop *phase) {
|
||||||
|
bool hoisted = false;
|
||||||
|
// Recursively promote predicates
|
||||||
|
if ( _child ) {
|
||||||
|
hoisted = _child->loop_predication( phase);
|
||||||
|
}
|
||||||
|
|
||||||
|
// self
|
||||||
|
if (!_irreducible && !tail()->is_top()) {
|
||||||
|
hoisted |= phase->loop_predication_impl(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( _next ) { //sibling
|
||||||
|
hoisted |= _next->loop_predication( phase);
|
||||||
|
}
|
||||||
|
|
||||||
|
return hoisted;
|
||||||
|
}
|
||||||
|
|
|
@ -1420,11 +1420,57 @@ static void log_loop_tree(IdealLoopTree* root, IdealLoopTree* loop, CompileLog*
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------collect_potentially_useful_predicates-----------------------
|
||||||
|
// Helper function to collect potentially useful predicates to prevent them from
|
||||||
|
// being eliminated by PhaseIdealLoop::eliminate_useless_predicates
|
||||||
|
void PhaseIdealLoop::collect_potentially_useful_predicates(
|
||||||
|
IdealLoopTree * loop, Unique_Node_List &useful_predicates) {
|
||||||
|
if (loop->_child) { // child
|
||||||
|
collect_potentially_useful_predicates(loop->_child, useful_predicates);
|
||||||
|
}
|
||||||
|
|
||||||
|
// self (only loops that we can apply loop predication may use their predicates)
|
||||||
|
if (loop->_head->is_Loop() &&
|
||||||
|
!loop->_irreducible &&
|
||||||
|
!loop->tail()->is_top()) {
|
||||||
|
LoopNode *lpn = loop->_head->as_Loop();
|
||||||
|
Node* entry = lpn->in(LoopNode::EntryControl);
|
||||||
|
ProjNode *predicate_proj = find_predicate_insertion_point(entry);
|
||||||
|
if (predicate_proj != NULL ) { // right pattern that can be used by loop predication
|
||||||
|
assert(entry->in(0)->in(1)->in(1)->Opcode()==Op_Opaque1, "must be");
|
||||||
|
useful_predicates.push(entry->in(0)->in(1)->in(1)); // good one
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( loop->_next ) { // sibling
|
||||||
|
collect_potentially_useful_predicates(loop->_next, useful_predicates);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//------------------------eliminate_useless_predicates-----------------------------
|
||||||
|
// Eliminate all inserted predicates if they could not be used by loop predication.
|
||||||
|
void PhaseIdealLoop::eliminate_useless_predicates() {
|
||||||
|
if (C->predicate_count() == 0) return; // no predicate left
|
||||||
|
|
||||||
|
Unique_Node_List useful_predicates; // to store useful predicates
|
||||||
|
if (C->has_loops()) {
|
||||||
|
collect_potentially_useful_predicates(_ltree_root->_child, useful_predicates);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = C->predicate_count(); i > 0; i--) {
|
||||||
|
Node * n = C->predicate_opaque1_node(i-1);
|
||||||
|
assert(n->Opcode() == Op_Opaque1, "must be");
|
||||||
|
if (!useful_predicates.member(n)) { // not in the useful list
|
||||||
|
_igvn.replace_node(n, n->in(1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
//----------------------------build_and_optimize-------------------------------
|
//----------------------------build_and_optimize-------------------------------
|
||||||
// Create a PhaseLoop. Build the ideal Loop tree. Map each Ideal Node to
|
// Create a PhaseLoop. Build the ideal Loop tree. Map each Ideal Node to
|
||||||
// its corresponding LoopNode. If 'optimize' is true, do some loop cleanups.
|
// its corresponding LoopNode. If 'optimize' is true, do some loop cleanups.
|
||||||
void PhaseIdealLoop::build_and_optimize(bool do_split_ifs) {
|
void PhaseIdealLoop::build_and_optimize(bool do_split_ifs, bool do_loop_pred) {
|
||||||
int old_progress = C->major_progress();
|
int old_progress = C->major_progress();
|
||||||
|
|
||||||
// Reset major-progress flag for the driver's heuristics
|
// Reset major-progress flag for the driver's heuristics
|
||||||
|
@ -1577,6 +1623,12 @@ void PhaseIdealLoop::build_and_optimize(bool do_split_ifs) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// some parser-inserted loop predicates could never be used by loop
|
||||||
|
// predication. Eliminate them before loop optimization
|
||||||
|
if (UseLoopPredicate) {
|
||||||
|
eliminate_useless_predicates();
|
||||||
|
}
|
||||||
|
|
||||||
// clear out the dead code
|
// clear out the dead code
|
||||||
while(_deadlist.size()) {
|
while(_deadlist.size()) {
|
||||||
_igvn.remove_globally_dead_node(_deadlist.pop());
|
_igvn.remove_globally_dead_node(_deadlist.pop());
|
||||||
|
@ -1603,7 +1655,7 @@ void PhaseIdealLoop::build_and_optimize(bool do_split_ifs) {
|
||||||
// Because RCE opportunities can be masked by split_thru_phi,
|
// Because RCE opportunities can be masked by split_thru_phi,
|
||||||
// look for RCE candidates and inhibit split_thru_phi
|
// look for RCE candidates and inhibit split_thru_phi
|
||||||
// on just their loop-phi's for this pass of loop opts
|
// on just their loop-phi's for this pass of loop opts
|
||||||
if( SplitIfBlocks && do_split_ifs ) {
|
if (SplitIfBlocks && do_split_ifs) {
|
||||||
if (lpt->policy_range_check(this)) {
|
if (lpt->policy_range_check(this)) {
|
||||||
lpt->_rce_candidate = 1; // = true
|
lpt->_rce_candidate = 1; // = true
|
||||||
}
|
}
|
||||||
|
@ -1619,12 +1671,17 @@ void PhaseIdealLoop::build_and_optimize(bool do_split_ifs) {
|
||||||
NOT_PRODUCT( if( VerifyLoopOptimizations ) verify(); );
|
NOT_PRODUCT( if( VerifyLoopOptimizations ) verify(); );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Perform loop predication before iteration splitting
|
||||||
|
if (do_loop_pred && C->has_loops() && !C->major_progress()) {
|
||||||
|
_ltree_root->_child->loop_predication(this);
|
||||||
|
}
|
||||||
|
|
||||||
// Perform iteration-splitting on inner loops. Split iterations to avoid
|
// Perform iteration-splitting on inner loops. Split iterations to avoid
|
||||||
// range checks or one-shot null checks.
|
// range checks or one-shot null checks.
|
||||||
|
|
||||||
// If split-if's didn't hack the graph too bad (no CFG changes)
|
// If split-if's didn't hack the graph too bad (no CFG changes)
|
||||||
// then do loop opts.
|
// then do loop opts.
|
||||||
if( C->has_loops() && !C->major_progress() ) {
|
if (C->has_loops() && !C->major_progress()) {
|
||||||
memset( worklist.adr(), 0, worklist.Size()*sizeof(Node*) );
|
memset( worklist.adr(), 0, worklist.Size()*sizeof(Node*) );
|
||||||
_ltree_root->_child->iteration_split( this, worklist );
|
_ltree_root->_child->iteration_split( this, worklist );
|
||||||
// No verify after peeling! GCM has hoisted code out of the loop.
|
// No verify after peeling! GCM has hoisted code out of the loop.
|
||||||
|
@ -1636,7 +1693,7 @@ void PhaseIdealLoop::build_and_optimize(bool do_split_ifs) {
|
||||||
// Do verify graph edges in any case
|
// Do verify graph edges in any case
|
||||||
NOT_PRODUCT( C->verify_graph_edges(); );
|
NOT_PRODUCT( C->verify_graph_edges(); );
|
||||||
|
|
||||||
if( !do_split_ifs ) {
|
if (!do_split_ifs) {
|
||||||
// We saw major progress in Split-If to get here. We forced a
|
// We saw major progress in Split-If to get here. We forced a
|
||||||
// pass with unrolling and not split-if, however more split-if's
|
// pass with unrolling and not split-if, however more split-if's
|
||||||
// might make progress. If the unrolling didn't make progress
|
// might make progress. If the unrolling didn't make progress
|
||||||
|
@ -2763,6 +2820,22 @@ void PhaseIdealLoop::build_loop_late_post( Node *n ) {
|
||||||
Node *legal = LCA; // Walk 'legal' up the IDOM chain
|
Node *legal = LCA; // Walk 'legal' up the IDOM chain
|
||||||
Node *least = legal; // Best legal position so far
|
Node *least = legal; // Best legal position so far
|
||||||
while( early != legal ) { // While not at earliest legal
|
while( early != legal ) { // While not at earliest legal
|
||||||
|
#ifdef ASSERT
|
||||||
|
if (legal->is_Start() && !early->is_Root()) {
|
||||||
|
// Bad graph. Print idom path and fail.
|
||||||
|
tty->print_cr( "Bad graph detected in build_loop_late");
|
||||||
|
tty->print("n: ");n->dump(); tty->cr();
|
||||||
|
tty->print("early: ");early->dump(); tty->cr();
|
||||||
|
int ct = 0;
|
||||||
|
Node *dbg_legal = LCA;
|
||||||
|
while(!dbg_legal->is_Start() && ct < 100) {
|
||||||
|
tty->print("idom[%d] ",ct); dbg_legal->dump(); tty->cr();
|
||||||
|
ct++;
|
||||||
|
dbg_legal = idom(dbg_legal);
|
||||||
|
}
|
||||||
|
assert(false, "Bad graph detected in build_loop_late");
|
||||||
|
}
|
||||||
|
#endif
|
||||||
// Find least loop nesting depth
|
// Find least loop nesting depth
|
||||||
legal = idom(legal); // Bump up the IDOM tree
|
legal = idom(legal); // Bump up the IDOM tree
|
||||||
// Check for lower nesting depth
|
// Check for lower nesting depth
|
||||||
|
|
|
@ -30,6 +30,7 @@ class LoopNode;
|
||||||
class Node;
|
class Node;
|
||||||
class PhaseIdealLoop;
|
class PhaseIdealLoop;
|
||||||
class VectorSet;
|
class VectorSet;
|
||||||
|
class Invariance;
|
||||||
struct small_cache;
|
struct small_cache;
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -325,6 +326,10 @@ public:
|
||||||
// Returns TRUE if loop tree is structurally changed.
|
// Returns TRUE if loop tree is structurally changed.
|
||||||
bool beautify_loops( PhaseIdealLoop *phase );
|
bool beautify_loops( PhaseIdealLoop *phase );
|
||||||
|
|
||||||
|
// Perform optimization to use the loop predicates for null checks and range checks.
|
||||||
|
// Applies to any loop level (not just the innermost one)
|
||||||
|
bool loop_predication( PhaseIdealLoop *phase);
|
||||||
|
|
||||||
// Perform iteration-splitting on inner loops. Split iterations to
|
// Perform iteration-splitting on inner loops. Split iterations to
|
||||||
// avoid range checks or one-shot null checks. Returns false if the
|
// avoid range checks or one-shot null checks. Returns false if the
|
||||||
// current round of loop opts should stop.
|
// current round of loop opts should stop.
|
||||||
|
@ -395,6 +400,9 @@ public:
|
||||||
// into longer memory ops, we may want to increase alignment.
|
// into longer memory ops, we may want to increase alignment.
|
||||||
bool policy_align( PhaseIdealLoop *phase ) const;
|
bool policy_align( PhaseIdealLoop *phase ) const;
|
||||||
|
|
||||||
|
// Return TRUE if "iff" is a range check.
|
||||||
|
bool is_range_check_if(IfNode *iff, PhaseIdealLoop *phase, Invariance& invar) const;
|
||||||
|
|
||||||
// Compute loop trip count from profile data
|
// Compute loop trip count from profile data
|
||||||
void compute_profile_trip_cnt( PhaseIdealLoop *phase );
|
void compute_profile_trip_cnt( PhaseIdealLoop *phase );
|
||||||
|
|
||||||
|
@ -521,9 +529,6 @@ class PhaseIdealLoop : public PhaseTransform {
|
||||||
}
|
}
|
||||||
Node *dom_lca_for_get_late_ctrl_internal( Node *lca, Node *n, Node *tag );
|
Node *dom_lca_for_get_late_ctrl_internal( Node *lca, Node *n, Node *tag );
|
||||||
|
|
||||||
// true if CFG node d dominates CFG node n
|
|
||||||
bool is_dominator(Node *d, Node *n);
|
|
||||||
|
|
||||||
// Helper function for directing control inputs away from CFG split
|
// Helper function for directing control inputs away from CFG split
|
||||||
// points.
|
// points.
|
||||||
Node *find_non_split_ctrl( Node *ctrl ) const {
|
Node *find_non_split_ctrl( Node *ctrl ) const {
|
||||||
|
@ -572,6 +577,17 @@ public:
|
||||||
assert(n == find_non_split_ctrl(n), "must return legal ctrl" );
|
assert(n == find_non_split_ctrl(n), "must return legal ctrl" );
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
// true if CFG node d dominates CFG node n
|
||||||
|
bool is_dominator(Node *d, Node *n);
|
||||||
|
// return get_ctrl for a data node and self(n) for a CFG node
|
||||||
|
Node* ctrl_or_self(Node* n) {
|
||||||
|
if (has_ctrl(n))
|
||||||
|
return get_ctrl(n);
|
||||||
|
else {
|
||||||
|
assert (n->is_CFG(), "must be a CFG node");
|
||||||
|
return n;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Node *get_ctrl_no_update( Node *i ) const {
|
Node *get_ctrl_no_update( Node *i ) const {
|
||||||
|
@ -600,7 +616,7 @@ private:
|
||||||
// Lazy-dazy update of 'get_ctrl' and 'idom_at' mechanisms. Replace
|
// Lazy-dazy update of 'get_ctrl' and 'idom_at' mechanisms. Replace
|
||||||
// the 'old_node' with 'new_node'. Kill old-node. Add a reference
|
// the 'old_node' with 'new_node'. Kill old-node. Add a reference
|
||||||
// from old_node to new_node to support the lazy update. Reference
|
// from old_node to new_node to support the lazy update. Reference
|
||||||
// replaces loop reference, since that is not neede for dead node.
|
// replaces loop reference, since that is not needed for dead node.
|
||||||
public:
|
public:
|
||||||
void lazy_update( Node *old_node, Node *new_node ) {
|
void lazy_update( Node *old_node, Node *new_node ) {
|
||||||
assert( old_node != new_node, "no cycles please" );
|
assert( old_node != new_node, "no cycles please" );
|
||||||
|
@ -679,11 +695,11 @@ private:
|
||||||
_dom_lca_tags(C->comp_arena()),
|
_dom_lca_tags(C->comp_arena()),
|
||||||
_verify_me(NULL),
|
_verify_me(NULL),
|
||||||
_verify_only(true) {
|
_verify_only(true) {
|
||||||
build_and_optimize(false);
|
build_and_optimize(false, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// build the loop tree and perform any requested optimizations
|
// build the loop tree and perform any requested optimizations
|
||||||
void build_and_optimize(bool do_split_if);
|
void build_and_optimize(bool do_split_if, bool do_loop_pred);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// Dominators for the sea of nodes
|
// Dominators for the sea of nodes
|
||||||
|
@ -694,13 +710,13 @@ public:
|
||||||
Node *dom_lca_internal( Node *n1, Node *n2 ) const;
|
Node *dom_lca_internal( Node *n1, Node *n2 ) const;
|
||||||
|
|
||||||
// Compute the Ideal Node to Loop mapping
|
// Compute the Ideal Node to Loop mapping
|
||||||
PhaseIdealLoop( PhaseIterGVN &igvn, bool do_split_ifs) :
|
PhaseIdealLoop( PhaseIterGVN &igvn, bool do_split_ifs, bool do_loop_pred) :
|
||||||
PhaseTransform(Ideal_Loop),
|
PhaseTransform(Ideal_Loop),
|
||||||
_igvn(igvn),
|
_igvn(igvn),
|
||||||
_dom_lca_tags(C->comp_arena()),
|
_dom_lca_tags(C->comp_arena()),
|
||||||
_verify_me(NULL),
|
_verify_me(NULL),
|
||||||
_verify_only(false) {
|
_verify_only(false) {
|
||||||
build_and_optimize(do_split_ifs);
|
build_and_optimize(do_split_ifs, do_loop_pred);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Verify that verify_me made the same decisions as a fresh run.
|
// Verify that verify_me made the same decisions as a fresh run.
|
||||||
|
@ -710,7 +726,7 @@ public:
|
||||||
_dom_lca_tags(C->comp_arena()),
|
_dom_lca_tags(C->comp_arena()),
|
||||||
_verify_me(verify_me),
|
_verify_me(verify_me),
|
||||||
_verify_only(false) {
|
_verify_only(false) {
|
||||||
build_and_optimize(false);
|
build_and_optimize(false, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build and verify the loop tree without modifying the graph. This
|
// Build and verify the loop tree without modifying the graph. This
|
||||||
|
@ -790,6 +806,30 @@ public:
|
||||||
// Return true if exp is a scaled induction var plus (or minus) constant
|
// Return true if exp is a scaled induction var plus (or minus) constant
|
||||||
bool is_scaled_iv_plus_offset(Node* exp, Node* iv, int* p_scale, Node** p_offset, int depth = 0);
|
bool is_scaled_iv_plus_offset(Node* exp, Node* iv, int* p_scale, Node** p_offset, int depth = 0);
|
||||||
|
|
||||||
|
// Return true if proj is for "proj->[region->..]call_uct"
|
||||||
|
bool is_uncommon_trap_proj(ProjNode* proj, bool must_reason_predicate = false);
|
||||||
|
// Return true for "if(test)-> proj -> ...
|
||||||
|
// |
|
||||||
|
// V
|
||||||
|
// other_proj->[region->..]call_uct"
|
||||||
|
bool is_uncommon_trap_if_pattern(ProjNode* proj, bool must_reason_predicate = false);
|
||||||
|
// Create a new if above the uncommon_trap_if_pattern for the predicate to be promoted
|
||||||
|
ProjNode* create_new_if_for_predicate(ProjNode* cont_proj);
|
||||||
|
// Find a good location to insert a predicate
|
||||||
|
ProjNode* find_predicate_insertion_point(Node* start_c);
|
||||||
|
// Construct a range check for a predicate if
|
||||||
|
BoolNode* rc_predicate(Node* ctrl,
|
||||||
|
int scale, Node* offset,
|
||||||
|
Node* init, Node* limit, Node* stride,
|
||||||
|
Node* range);
|
||||||
|
|
||||||
|
// Implementation of the loop predication to promote checks outside the loop
|
||||||
|
bool loop_predication_impl(IdealLoopTree *loop);
|
||||||
|
|
||||||
|
// Helper function to collect predicate for eliminating the useless ones
|
||||||
|
void collect_potentially_useful_predicates(IdealLoopTree *loop, Unique_Node_List &predicate_opaque1);
|
||||||
|
void eliminate_useless_predicates();
|
||||||
|
|
||||||
// Eliminate range-checks and other trip-counter vs loop-invariant tests.
|
// Eliminate range-checks and other trip-counter vs loop-invariant tests.
|
||||||
void do_range_check( IdealLoopTree *loop, Node_List &old_new );
|
void do_range_check( IdealLoopTree *loop, Node_List &old_new );
|
||||||
|
|
||||||
|
@ -906,7 +946,6 @@ private:
|
||||||
const TypeInt* filtered_type_from_dominators( Node* val, Node *val_ctrl);
|
const TypeInt* filtered_type_from_dominators( Node* val, Node *val_ctrl);
|
||||||
|
|
||||||
// Helper functions
|
// Helper functions
|
||||||
void register_new_node( Node *n, Node *blk );
|
|
||||||
Node *spinup( Node *iff, Node *new_false, Node *new_true, Node *region, Node *phi, small_cache *cache );
|
Node *spinup( Node *iff, Node *new_false, Node *new_true, Node *region, Node *phi, small_cache *cache );
|
||||||
Node *find_use_block( Node *use, Node *def, Node *old_false, Node *new_false, Node *old_true, Node *new_true );
|
Node *find_use_block( Node *use, Node *def, Node *old_false, Node *new_false, Node *old_true, Node *new_true );
|
||||||
void handle_use( Node *use, Node *def, small_cache *cache, Node *region_dom, Node *new_false, Node *new_true, Node *old_false, Node *old_true );
|
void handle_use( Node *use, Node *def, small_cache *cache, Node *region_dom, Node *new_false, Node *new_true, Node *old_false, Node *old_true );
|
||||||
|
@ -918,6 +957,7 @@ private:
|
||||||
public:
|
public:
|
||||||
void set_created_loop_node() { _created_loop_node = true; }
|
void set_created_loop_node() { _created_loop_node = true; }
|
||||||
bool created_loop_node() { return _created_loop_node; }
|
bool created_loop_node() { return _created_loop_node; }
|
||||||
|
void register_new_node( Node *n, Node *blk );
|
||||||
|
|
||||||
#ifndef PRODUCT
|
#ifndef PRODUCT
|
||||||
void dump( ) const;
|
void dump( ) const;
|
||||||
|
|
|
@ -430,6 +430,11 @@ class Parse : public GraphKit {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Return true if the parser should add a loop predicate
|
||||||
|
bool should_add_predicate(int target_bci);
|
||||||
|
// Insert a loop predicate into the graph
|
||||||
|
void add_predicate();
|
||||||
|
|
||||||
// Note: Intrinsic generation routines may be found in library_call.cpp.
|
// Note: Intrinsic generation routines may be found in library_call.cpp.
|
||||||
|
|
||||||
// Helper function to setup Ideal Call nodes
|
// Helper function to setup Ideal Call nodes
|
||||||
|
@ -491,7 +496,7 @@ class Parse : public GraphKit {
|
||||||
|
|
||||||
void do_ifnull(BoolTest::mask btest, Node* c);
|
void do_ifnull(BoolTest::mask btest, Node* c);
|
||||||
void do_if(BoolTest::mask btest, Node* c);
|
void do_if(BoolTest::mask btest, Node* c);
|
||||||
void repush_if_args();
|
int repush_if_args();
|
||||||
void adjust_map_after_if(BoolTest::mask btest, Node* c, float prob,
|
void adjust_map_after_if(BoolTest::mask btest, Node* c, float prob,
|
||||||
Block* path, Block* other_path);
|
Block* path, Block* other_path);
|
||||||
IfNode* jump_if_fork_int(Node* a, Node* b, BoolTest::mask mask);
|
IfNode* jump_if_fork_int(Node* a, Node* b, BoolTest::mask mask);
|
||||||
|
|
|
@ -1383,6 +1383,10 @@ void Parse::do_one_block() {
|
||||||
set_parse_bci(iter().cur_bci());
|
set_parse_bci(iter().cur_bci());
|
||||||
|
|
||||||
if (bci() == block()->limit()) {
|
if (bci() == block()->limit()) {
|
||||||
|
// insert a predicate if it falls through to a loop head block
|
||||||
|
if (should_add_predicate(bci())){
|
||||||
|
add_predicate();
|
||||||
|
}
|
||||||
// Do not walk into the next block until directed by do_all_blocks.
|
// Do not walk into the next block until directed by do_all_blocks.
|
||||||
merge(bci());
|
merge(bci());
|
||||||
break;
|
break;
|
||||||
|
@ -2083,6 +2087,37 @@ void Parse::add_safepoint() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//------------------------------should_add_predicate--------------------------
|
||||||
|
bool Parse::should_add_predicate(int target_bci) {
|
||||||
|
if (!UseLoopPredicate) return false;
|
||||||
|
Block* target = successor_for_bci(target_bci);
|
||||||
|
if (target != NULL &&
|
||||||
|
target->is_loop_head() &&
|
||||||
|
block()->rpo() < target->rpo()) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
//------------------------------add_predicate---------------------------------
|
||||||
|
void Parse::add_predicate() {
|
||||||
|
assert(UseLoopPredicate,"use only for loop predicate");
|
||||||
|
Node *cont = _gvn.intcon(1);
|
||||||
|
Node* opq = _gvn.transform(new (C, 2) Opaque1Node(C, cont));
|
||||||
|
Node *bol = _gvn.transform(new (C, 2) Conv2BNode(opq));
|
||||||
|
IfNode* iff = create_and_map_if(control(), bol, PROB_MAX, COUNT_UNKNOWN);
|
||||||
|
Node* iffalse = _gvn.transform(new (C, 1) IfFalseNode(iff));
|
||||||
|
C->add_predicate_opaq(opq);
|
||||||
|
{
|
||||||
|
PreserveJVMState pjvms(this);
|
||||||
|
set_control(iffalse);
|
||||||
|
uncommon_trap(Deoptimization::Reason_predicate,
|
||||||
|
Deoptimization::Action_maybe_recompile);
|
||||||
|
}
|
||||||
|
Node* iftrue = _gvn.transform(new (C, 1) IfTrueNode(iff));
|
||||||
|
set_control(iftrue);
|
||||||
|
}
|
||||||
|
|
||||||
#ifndef PRODUCT
|
#ifndef PRODUCT
|
||||||
//------------------------show_parse_info--------------------------------------
|
//------------------------show_parse_info--------------------------------------
|
||||||
void Parse::show_parse_info() {
|
void Parse::show_parse_info() {
|
||||||
|
|
|
@ -278,6 +278,11 @@ void Parse::do_tableswitch() {
|
||||||
if (len < 1) {
|
if (len < 1) {
|
||||||
// If this is a backward branch, add safepoint
|
// If this is a backward branch, add safepoint
|
||||||
maybe_add_safepoint(default_dest);
|
maybe_add_safepoint(default_dest);
|
||||||
|
if (should_add_predicate(default_dest)){
|
||||||
|
_sp += 1; // set original stack for use by uncommon_trap
|
||||||
|
add_predicate();
|
||||||
|
_sp -= 1;
|
||||||
|
}
|
||||||
merge(default_dest);
|
merge(default_dest);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -324,6 +329,11 @@ void Parse::do_lookupswitch() {
|
||||||
|
|
||||||
if (len < 1) { // If this is a backward branch, add safepoint
|
if (len < 1) { // If this is a backward branch, add safepoint
|
||||||
maybe_add_safepoint(default_dest);
|
maybe_add_safepoint(default_dest);
|
||||||
|
if (should_add_predicate(default_dest)){
|
||||||
|
_sp += 1; // set original stack for use by uncommon_trap
|
||||||
|
add_predicate();
|
||||||
|
_sp -= 1;
|
||||||
|
}
|
||||||
merge(default_dest);
|
merge(default_dest);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -731,6 +741,9 @@ void Parse::do_jsr() {
|
||||||
push(_gvn.makecon(ret_addr));
|
push(_gvn.makecon(ret_addr));
|
||||||
|
|
||||||
// Flow to the jsr.
|
// Flow to the jsr.
|
||||||
|
if (should_add_predicate(jsr_bci)){
|
||||||
|
add_predicate();
|
||||||
|
}
|
||||||
merge(jsr_bci);
|
merge(jsr_bci);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -881,7 +894,7 @@ bool Parse::seems_never_taken(float prob) {
|
||||||
|
|
||||||
//-------------------------------repush_if_args--------------------------------
|
//-------------------------------repush_if_args--------------------------------
|
||||||
// Push arguments of an "if" bytecode back onto the stack by adjusting _sp.
|
// Push arguments of an "if" bytecode back onto the stack by adjusting _sp.
|
||||||
inline void Parse::repush_if_args() {
|
inline int Parse::repush_if_args() {
|
||||||
#ifndef PRODUCT
|
#ifndef PRODUCT
|
||||||
if (PrintOpto && WizardMode) {
|
if (PrintOpto && WizardMode) {
|
||||||
tty->print("defending against excessive implicit null exceptions on %s @%d in ",
|
tty->print("defending against excessive implicit null exceptions on %s @%d in ",
|
||||||
|
@ -895,6 +908,7 @@ inline void Parse::repush_if_args() {
|
||||||
assert(argument(0) != NULL, "must exist");
|
assert(argument(0) != NULL, "must exist");
|
||||||
assert(bc_depth == 1 || argument(1) != NULL, "two must exist");
|
assert(bc_depth == 1 || argument(1) != NULL, "two must exist");
|
||||||
_sp += bc_depth;
|
_sp += bc_depth;
|
||||||
|
return bc_depth;
|
||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------do_ifnull----------------------------------
|
//----------------------------------do_ifnull----------------------------------
|
||||||
|
@ -954,10 +968,16 @@ void Parse::do_ifnull(BoolTest::mask btest, Node *c) {
|
||||||
// Update method data
|
// Update method data
|
||||||
profile_taken_branch(target_bci);
|
profile_taken_branch(target_bci);
|
||||||
adjust_map_after_if(btest, c, prob, branch_block, next_block);
|
adjust_map_after_if(btest, c, prob, branch_block, next_block);
|
||||||
if (!stopped())
|
if (!stopped()) {
|
||||||
|
if (should_add_predicate(target_bci)){ // add a predicate if it branches to a loop
|
||||||
|
int nargs = repush_if_args(); // set original stack for uncommon_trap
|
||||||
|
add_predicate();
|
||||||
|
_sp -= nargs;
|
||||||
|
}
|
||||||
merge(target_bci);
|
merge(target_bci);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// False branch
|
// False branch
|
||||||
Node* iffalse = _gvn.transform( new (C, 1) IfFalseNode(iff) );
|
Node* iffalse = _gvn.transform( new (C, 1) IfFalseNode(iff) );
|
||||||
|
@ -1076,10 +1096,16 @@ void Parse::do_if(BoolTest::mask btest, Node* c) {
|
||||||
// Update method data
|
// Update method data
|
||||||
profile_taken_branch(target_bci);
|
profile_taken_branch(target_bci);
|
||||||
adjust_map_after_if(taken_btest, c, prob, branch_block, next_block);
|
adjust_map_after_if(taken_btest, c, prob, branch_block, next_block);
|
||||||
if (!stopped())
|
if (!stopped()) {
|
||||||
|
if (should_add_predicate(target_bci)){ // add a predicate if it branches to a loop
|
||||||
|
int nargs = repush_if_args(); // set original stack for the uncommon_trap
|
||||||
|
add_predicate();
|
||||||
|
_sp -= nargs;
|
||||||
|
}
|
||||||
merge(target_bci);
|
merge(target_bci);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
untaken_branch = _gvn.transform(untaken_branch);
|
untaken_branch = _gvn.transform(untaken_branch);
|
||||||
set_control(untaken_branch);
|
set_control(untaken_branch);
|
||||||
|
@ -2080,6 +2106,10 @@ void Parse::do_one_bytecode() {
|
||||||
// Update method data
|
// Update method data
|
||||||
profile_taken_branch(target_bci);
|
profile_taken_branch(target_bci);
|
||||||
|
|
||||||
|
// Add loop predicate if it goes to a loop
|
||||||
|
if (should_add_predicate(target_bci)){
|
||||||
|
add_predicate();
|
||||||
|
}
|
||||||
// Merge the current control into the target basic block
|
// Merge the current control into the target basic block
|
||||||
merge(target_bci);
|
merge(target_bci);
|
||||||
|
|
||||||
|
|
|
@ -219,6 +219,7 @@ bool PhaseIdealLoop::split_up( Node *n, Node *blk1, Node *blk2 ) {
|
||||||
|
|
||||||
//------------------------------register_new_node------------------------------
|
//------------------------------register_new_node------------------------------
|
||||||
void PhaseIdealLoop::register_new_node( Node *n, Node *blk ) {
|
void PhaseIdealLoop::register_new_node( Node *n, Node *blk ) {
|
||||||
|
assert(!n->is_CFG(), "must be data node");
|
||||||
_igvn.register_new_node_with_optimizer(n);
|
_igvn.register_new_node_with_optimizer(n);
|
||||||
set_ctrl(n, blk);
|
set_ctrl(n, blk);
|
||||||
IdealLoopTree *loop = get_loop(blk);
|
IdealLoopTree *loop = get_loop(blk);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -1244,8 +1244,7 @@ const Type *CosDNode::Value( PhaseTransform *phase ) const {
|
||||||
if( t1 == Type::TOP ) return Type::TOP;
|
if( t1 == Type::TOP ) return Type::TOP;
|
||||||
if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
|
if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
|
||||||
double d = t1->getd();
|
double d = t1->getd();
|
||||||
if( d < 0.0 ) return Type::DOUBLE;
|
return TypeD::make( StubRoutines::intrinsic_cos( d ) );
|
||||||
return TypeD::make( SharedRuntime::dcos( d ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
@ -1256,8 +1255,7 @@ const Type *SinDNode::Value( PhaseTransform *phase ) const {
|
||||||
if( t1 == Type::TOP ) return Type::TOP;
|
if( t1 == Type::TOP ) return Type::TOP;
|
||||||
if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
|
if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
|
||||||
double d = t1->getd();
|
double d = t1->getd();
|
||||||
if( d < 0.0 ) return Type::DOUBLE;
|
return TypeD::make( StubRoutines::intrinsic_sin( d ) );
|
||||||
return TypeD::make( SharedRuntime::dsin( d ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
@ -1268,8 +1266,7 @@ const Type *TanDNode::Value( PhaseTransform *phase ) const {
|
||||||
if( t1 == Type::TOP ) return Type::TOP;
|
if( t1 == Type::TOP ) return Type::TOP;
|
||||||
if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
|
if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
|
||||||
double d = t1->getd();
|
double d = t1->getd();
|
||||||
if( d < 0.0 ) return Type::DOUBLE;
|
return TypeD::make( StubRoutines::intrinsic_tan( d ) );
|
||||||
return TypeD::make( SharedRuntime::dtan( d ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
@ -1280,8 +1277,7 @@ const Type *LogDNode::Value( PhaseTransform *phase ) const {
|
||||||
if( t1 == Type::TOP ) return Type::TOP;
|
if( t1 == Type::TOP ) return Type::TOP;
|
||||||
if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
|
if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
|
||||||
double d = t1->getd();
|
double d = t1->getd();
|
||||||
if( d < 0.0 ) return Type::DOUBLE;
|
return TypeD::make( StubRoutines::intrinsic_log( d ) );
|
||||||
return TypeD::make( SharedRuntime::dlog( d ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
@ -1292,8 +1288,7 @@ const Type *Log10DNode::Value( PhaseTransform *phase ) const {
|
||||||
if( t1 == Type::TOP ) return Type::TOP;
|
if( t1 == Type::TOP ) return Type::TOP;
|
||||||
if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
|
if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
|
||||||
double d = t1->getd();
|
double d = t1->getd();
|
||||||
if( d < 0.0 ) return Type::DOUBLE;
|
return TypeD::make( StubRoutines::intrinsic_log10( d ) );
|
||||||
return TypeD::make( SharedRuntime::dlog10( d ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
@ -1304,8 +1299,7 @@ const Type *ExpDNode::Value( PhaseTransform *phase ) const {
|
||||||
if( t1 == Type::TOP ) return Type::TOP;
|
if( t1 == Type::TOP ) return Type::TOP;
|
||||||
if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
|
if( t1->base() != Type::DoubleCon ) return Type::DOUBLE;
|
||||||
double d = t1->getd();
|
double d = t1->getd();
|
||||||
if( d < 0.0 ) return Type::DOUBLE;
|
return TypeD::make( StubRoutines::intrinsic_exp( d ) );
|
||||||
return TypeD::make( SharedRuntime::dexp( d ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1323,5 +1317,5 @@ const Type *PowDNode::Value( PhaseTransform *phase ) const {
|
||||||
double d2 = t2->getd();
|
double d2 = t2->getd();
|
||||||
if( d1 < 0.0 ) return Type::DOUBLE;
|
if( d1 < 0.0 ) return Type::DOUBLE;
|
||||||
if( d2 < 0.0 ) return Type::DOUBLE;
|
if( d2 < 0.0 ) return Type::DOUBLE;
|
||||||
return TypeD::make( SharedRuntime::dpow( d1, d2 ) );
|
return TypeD::make( StubRoutines::intrinsic_pow( d1, d2 ) );
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2000-2007 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 2000-2010 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -74,6 +74,16 @@ bool CompilationPolicy::canBeCompiled(methodHandle m) {
|
||||||
if (m->is_abstract()) return false;
|
if (m->is_abstract()) return false;
|
||||||
if (DontCompileHugeMethods && m->code_size() > HugeMethodLimit) return false;
|
if (DontCompileHugeMethods && m->code_size() > HugeMethodLimit) return false;
|
||||||
|
|
||||||
|
// Math intrinsics should never be compiled as this can lead to
|
||||||
|
// monotonicity problems because the interpreter will prefer the
|
||||||
|
// compiled code to the intrinsic version. This can't happen in
|
||||||
|
// production because the invocation counter can't be incremented
|
||||||
|
// but we shouldn't expose the system to this problem in testing
|
||||||
|
// modes.
|
||||||
|
if (!AbstractInterpreter::can_be_compiled(m)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return !m->is_not_compilable();
|
return !m->is_not_compilable();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1672,7 +1672,8 @@ const char* Deoptimization::_trap_reason_name[Reason_LIMIT] = {
|
||||||
"unhandled",
|
"unhandled",
|
||||||
"constraint",
|
"constraint",
|
||||||
"div0_check",
|
"div0_check",
|
||||||
"age"
|
"age",
|
||||||
|
"predicate"
|
||||||
};
|
};
|
||||||
const char* Deoptimization::_trap_action_name[Action_LIMIT] = {
|
const char* Deoptimization::_trap_action_name[Action_LIMIT] = {
|
||||||
// Note: Keep this in sync. with enum DeoptAction.
|
// Note: Keep this in sync. with enum DeoptAction.
|
||||||
|
|
|
@ -46,6 +46,7 @@ class Deoptimization : AllStatic {
|
||||||
Reason_constraint, // arbitrary runtime constraint violated
|
Reason_constraint, // arbitrary runtime constraint violated
|
||||||
Reason_div0_check, // a null_check due to division by zero
|
Reason_div0_check, // a null_check due to division by zero
|
||||||
Reason_age, // nmethod too old; tier threshold reached
|
Reason_age, // nmethod too old; tier threshold reached
|
||||||
|
Reason_predicate, // compiler generated predicate failed
|
||||||
Reason_LIMIT,
|
Reason_LIMIT,
|
||||||
// Note: Keep this enum in sync. with _trap_reason_name.
|
// Note: Keep this enum in sync. with _trap_reason_name.
|
||||||
Reason_RECORDED_LIMIT = Reason_unloaded // some are not recorded per bc
|
Reason_RECORDED_LIMIT = Reason_unloaded // some are not recorded per bc
|
||||||
|
|
|
@ -3460,6 +3460,9 @@ class CommandLineFlags {
|
||||||
diagnostic(bool, OptimizeMethodHandles, true, \
|
diagnostic(bool, OptimizeMethodHandles, true, \
|
||||||
"when constructing method handles, try to improve them") \
|
"when constructing method handles, try to improve them") \
|
||||||
\
|
\
|
||||||
|
experimental(bool, TrustFinalNonStaticFields, false, \
|
||||||
|
"trust final non-static declarations for constant folding") \
|
||||||
|
\
|
||||||
experimental(bool, EnableInvokeDynamic, false, \
|
experimental(bool, EnableInvokeDynamic, false, \
|
||||||
"recognize the invokedynamic instruction") \
|
"recognize the invokedynamic instruction") \
|
||||||
\
|
\
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -97,6 +97,14 @@ address StubRoutines::_checkcast_arraycopy = NULL;
|
||||||
address StubRoutines::_unsafe_arraycopy = NULL;
|
address StubRoutines::_unsafe_arraycopy = NULL;
|
||||||
address StubRoutines::_generic_arraycopy = NULL;
|
address StubRoutines::_generic_arraycopy = NULL;
|
||||||
|
|
||||||
|
double (* StubRoutines::_intrinsic_log )(double) = NULL;
|
||||||
|
double (* StubRoutines::_intrinsic_log10 )(double) = NULL;
|
||||||
|
double (* StubRoutines::_intrinsic_exp )(double) = NULL;
|
||||||
|
double (* StubRoutines::_intrinsic_pow )(double, double) = NULL;
|
||||||
|
double (* StubRoutines::_intrinsic_sin )(double) = NULL;
|
||||||
|
double (* StubRoutines::_intrinsic_cos )(double) = NULL;
|
||||||
|
double (* StubRoutines::_intrinsic_tan )(double) = NULL;
|
||||||
|
|
||||||
// Initialization
|
// Initialization
|
||||||
//
|
//
|
||||||
// Note: to break cycle with universe initialization, stubs are generated in two phases.
|
// Note: to break cycle with universe initialization, stubs are generated in two phases.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
|
* Copyright 1997-2010 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -148,6 +148,20 @@ class StubRoutines: AllStatic {
|
||||||
static address _unsafe_arraycopy;
|
static address _unsafe_arraycopy;
|
||||||
static address _generic_arraycopy;
|
static address _generic_arraycopy;
|
||||||
|
|
||||||
|
// These are versions of the java.lang.Math methods which perform
|
||||||
|
// the same operations as the intrinsic version. They are used for
|
||||||
|
// constant folding in the compiler to ensure equivalence. If the
|
||||||
|
// intrinsic version returns the same result as the strict version
|
||||||
|
// then they can be set to the appropriate function from
|
||||||
|
// SharedRuntime.
|
||||||
|
static double (*_intrinsic_log)(double);
|
||||||
|
static double (*_intrinsic_log10)(double);
|
||||||
|
static double (*_intrinsic_exp)(double);
|
||||||
|
static double (*_intrinsic_pow)(double, double);
|
||||||
|
static double (*_intrinsic_sin)(double);
|
||||||
|
static double (*_intrinsic_cos)(double);
|
||||||
|
static double (*_intrinsic_tan)(double);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// Initialization/Testing
|
// Initialization/Testing
|
||||||
static void initialize1(); // must happen before universe::genesis
|
static void initialize1(); // must happen before universe::genesis
|
||||||
|
@ -245,6 +259,35 @@ class StubRoutines: AllStatic {
|
||||||
static address unsafe_arraycopy() { return _unsafe_arraycopy; }
|
static address unsafe_arraycopy() { return _unsafe_arraycopy; }
|
||||||
static address generic_arraycopy() { return _generic_arraycopy; }
|
static address generic_arraycopy() { return _generic_arraycopy; }
|
||||||
|
|
||||||
|
static double intrinsic_log(double d) {
|
||||||
|
assert(_intrinsic_log != NULL, "must be defined");
|
||||||
|
return _intrinsic_log(d);
|
||||||
|
}
|
||||||
|
static double intrinsic_log10(double d) {
|
||||||
|
assert(_intrinsic_log != NULL, "must be defined");
|
||||||
|
return _intrinsic_log10(d);
|
||||||
|
}
|
||||||
|
static double intrinsic_exp(double d) {
|
||||||
|
assert(_intrinsic_exp != NULL, "must be defined");
|
||||||
|
return _intrinsic_exp(d);
|
||||||
|
}
|
||||||
|
static double intrinsic_pow(double d, double d2) {
|
||||||
|
assert(_intrinsic_pow != NULL, "must be defined");
|
||||||
|
return _intrinsic_pow(d, d2);
|
||||||
|
}
|
||||||
|
static double intrinsic_sin(double d) {
|
||||||
|
assert(_intrinsic_sin != NULL, "must be defined");
|
||||||
|
return _intrinsic_sin(d);
|
||||||
|
}
|
||||||
|
static double intrinsic_cos(double d) {
|
||||||
|
assert(_intrinsic_cos != NULL, "must be defined");
|
||||||
|
return _intrinsic_cos(d);
|
||||||
|
}
|
||||||
|
static double intrinsic_tan(double d) {
|
||||||
|
assert(_intrinsic_tan != NULL, "must be defined");
|
||||||
|
return _intrinsic_tan(d);
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Default versions of the above arraycopy functions for platforms which do
|
// Default versions of the above arraycopy functions for platforms which do
|
||||||
// not have specialized versions
|
// not have specialized versions
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @bug 6877254
|
* @bug 6877254
|
||||||
* @summary Implement StoreCMNode::Ideal to promote its OopStore above the MergeMem
|
* @summary Implement StoreCMNode::Ideal to promote its OopStore above the MergeMem
|
||||||
*
|
*
|
||||||
* @run main/othervm -server -Xcomp -XX:+UseConcMarkSweepGC Test
|
* @run main/othervm -Xcomp Test
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class Test {
|
public class Test {
|
||||||
|
|
|
@ -30,6 +30,9 @@
|
||||||
* @run main/othervm -Xcomp Test
|
* @run main/othervm -Xcomp Test
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import java.util.*;
|
||||||
|
import java.util.concurrent.*;
|
||||||
|
|
||||||
public class Test {
|
public class Test {
|
||||||
public static void main(String argv[]) {
|
public static void main(String argv[]) {
|
||||||
Test test = new Test();
|
Test test = new Test();
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* @test
|
* @test
|
||||||
* @bug 6896727
|
* @bug 6896727
|
||||||
* @summary nsk/logging/LoggingPermission/LoggingPermission/logperm002 fails with G1, EscapeAnalisys w/o COOPs
|
* @summary nsk/logging/LoggingPermission/LoggingPermission/logperm002 fails with G1, EscapeAnalisys w/o COOPs
|
||||||
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -Xcomp -XX:+DoEscapeAnalysis -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC Test
|
* @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -Xcomp -XX:+DoEscapeAnalysis Test
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class Test {
|
public class Test {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue