Merge
This commit is contained in:
commit
9d4cd45834
@ -24,23 +24,64 @@
|
||||
|
||||
package sun.jvm.hotspot.code;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import sun.jvm.hotspot.debugger.*;
|
||||
import sun.jvm.hotspot.runtime.VM;
|
||||
import sun.jvm.hotspot.utilities.*;
|
||||
|
||||
public class DebugInfoReadStream extends CompressedReadStream {
|
||||
private NMethod code;
|
||||
private int InvocationEntryBCI;
|
||||
private List objectPool; // ArrayList<ObjectValue>
|
||||
|
||||
public DebugInfoReadStream(NMethod code, int offset) {
|
||||
super(code.scopesDataBegin(), offset);
|
||||
InvocationEntryBCI = VM.getVM().getInvocationEntryBCI();
|
||||
this.code = code;
|
||||
this.objectPool = null;
|
||||
}
|
||||
|
||||
public DebugInfoReadStream(NMethod code, int offset, List objectPool) {
|
||||
super(code.scopesDataBegin(), offset);
|
||||
InvocationEntryBCI = VM.getVM().getInvocationEntryBCI();
|
||||
this.code = code;
|
||||
this.objectPool = objectPool;
|
||||
}
|
||||
|
||||
public OopHandle readOopHandle() {
|
||||
return code.getOopAt(readInt());
|
||||
}
|
||||
|
||||
ScopeValue readObjectValue() {
|
||||
int id = readInt();
|
||||
if (Assert.ASSERTS_ENABLED) {
|
||||
Assert.that(objectPool != null, "object pool does not exist");
|
||||
for (Iterator itr = objectPool.iterator(); itr.hasNext();) {
|
||||
ObjectValue ov = (ObjectValue) itr.next();
|
||||
Assert.that(ov.id() != id, "should not be read twice");
|
||||
}
|
||||
}
|
||||
ObjectValue result = new ObjectValue(id);
|
||||
// Cache the object since an object field could reference it.
|
||||
objectPool.add(result);
|
||||
result.readObject(this);
|
||||
return result;
|
||||
}
|
||||
|
||||
ScopeValue getCachedObject() {
|
||||
int id = readInt();
|
||||
Assert.that(objectPool != null, "object pool does not exist");
|
||||
for (Iterator itr = objectPool.iterator(); itr.hasNext();) {
|
||||
ObjectValue ov = (ObjectValue) itr.next();
|
||||
if (ov.id() == id) {
|
||||
return ov;
|
||||
}
|
||||
}
|
||||
Assert.that(false, "should not reach here");
|
||||
return null;
|
||||
}
|
||||
|
||||
public int readBCI() {
|
||||
return readInt() + InvocationEntryBCI;
|
||||
}
|
||||
|
@ -29,6 +29,7 @@ import java.io.*;
|
||||
public class MonitorValue {
|
||||
private ScopeValue owner;
|
||||
private Location basicLock;
|
||||
private boolean eliminated;
|
||||
|
||||
// FIXME: not useful yet
|
||||
// MonitorValue(ScopeValue* owner, Location basic_lock);
|
||||
@ -36,10 +37,12 @@ public class MonitorValue {
|
||||
public MonitorValue(DebugInfoReadStream stream) {
|
||||
basicLock = new Location(stream);
|
||||
owner = ScopeValue.readFrom(stream);
|
||||
eliminated= stream.readBoolean();
|
||||
}
|
||||
|
||||
public ScopeValue owner() { return owner; }
|
||||
public Location basicLock() { return basicLock; }
|
||||
public boolean eliminated() { return eliminated; }
|
||||
|
||||
// FIXME: not yet implementable
|
||||
// void write_on(DebugInfoWriteStream* stream);
|
||||
@ -50,5 +53,8 @@ public class MonitorValue {
|
||||
tty.print(",");
|
||||
basicLock().printOn(tty);
|
||||
tty.print("}");
|
||||
if (eliminated) {
|
||||
tty.print(" (eliminated)");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,93 @@
|
||||
/*
|
||||
* Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
||||
* CA 95054 USA or visit www.sun.com if you need additional information or
|
||||
* have any questions.
|
||||
*
|
||||
*/
|
||||
|
||||
package sun.jvm.hotspot.code;
|
||||
|
||||
import java.io.*;
|
||||
import java.util.*;
|
||||
|
||||
import sun.jvm.hotspot.debugger.*;
|
||||
import sun.jvm.hotspot.utilities.*;
|
||||
|
||||
/** An ObjectValue describes an object eliminated by escape analysis. */
|
||||
|
||||
public class ObjectValue extends ScopeValue {
|
||||
private int id;
|
||||
private ScopeValue klass;
|
||||
private List fieldsValue; // ArrayList<ScopeValue>
|
||||
|
||||
// Field "boolean visited" is not implemented here since
|
||||
// it is used only a during debug info creation.
|
||||
|
||||
public ObjectValue(int id) {
|
||||
this.id = id;
|
||||
klass = null;
|
||||
fieldsValue = new ArrayList();
|
||||
}
|
||||
|
||||
public boolean isObject() { return true; }
|
||||
public int id() { return id; }
|
||||
public ScopeValue getKlass() { return klass; }
|
||||
public List getFieldsValue() { return fieldsValue; }
|
||||
public ScopeValue getFieldAt(int i) { return (ScopeValue)fieldsValue.get(i); }
|
||||
public int fieldsSize() { return fieldsValue.size(); }
|
||||
|
||||
// Field "value" is always NULL here since it is used
|
||||
// only during deoptimization of a compiled frame
|
||||
// pointing to reallocated object.
|
||||
public OopHandle getValue() { return null; }
|
||||
|
||||
/** Serialization of debugging information */
|
||||
|
||||
void readObject(DebugInfoReadStream stream) {
|
||||
klass = readFrom(stream);
|
||||
Assert.that(klass.isConstantOop(), "should be constant klass oop");
|
||||
int length = stream.readInt();
|
||||
for (int i = 0; i < length; i++) {
|
||||
ScopeValue val = readFrom(stream);
|
||||
fieldsValue.add(val);
|
||||
}
|
||||
}
|
||||
|
||||
// Printing
|
||||
|
||||
public void print() {
|
||||
printOn(System.out);
|
||||
}
|
||||
|
||||
public void printOn(PrintStream tty) {
|
||||
tty.print("scalarObj[" + id + "]");
|
||||
}
|
||||
|
||||
void printFieldsOn(PrintStream tty) {
|
||||
if (fieldsValue.size() > 0) {
|
||||
((ScopeValue)fieldsValue.get(0)).printOn(tty);
|
||||
}
|
||||
for (int i = 1; i < fieldsValue.size(); i++) {
|
||||
tty.print(", ");
|
||||
((ScopeValue)fieldsValue.get(i)).printOn(tty);
|
||||
}
|
||||
}
|
||||
|
||||
};
|
@ -27,8 +27,10 @@ package sun.jvm.hotspot.code;
|
||||
import java.io.*;
|
||||
import java.util.*;
|
||||
|
||||
import sun.jvm.hotspot.debugger.*;
|
||||
import sun.jvm.hotspot.oops.*;
|
||||
import sun.jvm.hotspot.runtime.*;
|
||||
import sun.jvm.hotspot.utilities.*;
|
||||
|
||||
/** ScopeDescs contain the information that makes source-level
|
||||
debugging of nmethods possible; each scopeDesc describes a method
|
||||
@ -45,10 +47,31 @@ public class ScopeDesc {
|
||||
private int localsDecodeOffset;
|
||||
private int expressionsDecodeOffset;
|
||||
private int monitorsDecodeOffset;
|
||||
/** Scalar replaced bjects pool */
|
||||
private List objects; // ArrayList<ScopeValue>
|
||||
|
||||
|
||||
public ScopeDesc(NMethod code, int decodeOffset) {
|
||||
this.code = code;
|
||||
this.decodeOffset = decodeOffset;
|
||||
this.objects = decodeObjectValues(DebugInformationRecorder.SERIALIZED_NULL);
|
||||
|
||||
// Decode header
|
||||
DebugInfoReadStream stream = streamAt(decodeOffset);
|
||||
|
||||
senderDecodeOffset = stream.readInt();
|
||||
method = (Method) VM.getVM().getObjectHeap().newOop(stream.readOopHandle());
|
||||
bci = stream.readBCI();
|
||||
// Decode offsets for body and sender
|
||||
localsDecodeOffset = stream.readInt();
|
||||
expressionsDecodeOffset = stream.readInt();
|
||||
monitorsDecodeOffset = stream.readInt();
|
||||
}
|
||||
|
||||
public ScopeDesc(NMethod code, int decodeOffset, int objectDecodeOffset) {
|
||||
this.code = code;
|
||||
this.decodeOffset = decodeOffset;
|
||||
this.objects = decodeObjectValues(objectDecodeOffset);
|
||||
|
||||
// Decode header
|
||||
DebugInfoReadStream stream = streamAt(decodeOffset);
|
||||
@ -81,6 +104,11 @@ public class ScopeDesc {
|
||||
return decodeMonitorValues(monitorsDecodeOffset);
|
||||
}
|
||||
|
||||
/** Returns a List<MonitorValue> */
|
||||
public List getObjects() {
|
||||
return objects;
|
||||
}
|
||||
|
||||
/** Stack walking. Returns null if this is the outermost scope. */
|
||||
public ScopeDesc sender() {
|
||||
if (isTop()) {
|
||||
@ -131,7 +159,7 @@ public class ScopeDesc {
|
||||
//
|
||||
|
||||
private DebugInfoReadStream streamAt(int decodeOffset) {
|
||||
return new DebugInfoReadStream(code, decodeOffset);
|
||||
return new DebugInfoReadStream(code, decodeOffset, objects);
|
||||
}
|
||||
|
||||
/** Returns a List<ScopeValue> or null if no values were present */
|
||||
@ -161,4 +189,22 @@ public class ScopeDesc {
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
/** Returns a List<ObjectValue> or null if no values were present */
|
||||
private List decodeObjectValues(int decodeOffset) {
|
||||
if (decodeOffset == DebugInformationRecorder.SERIALIZED_NULL) {
|
||||
return null;
|
||||
}
|
||||
List res = new ArrayList();
|
||||
DebugInfoReadStream stream = new DebugInfoReadStream(code, decodeOffset, res);
|
||||
int length = stream.readInt();
|
||||
for (int i = 0; i < length; i++) {
|
||||
// Objects values are pushed to 'res' array during read so that
|
||||
// object's fields could reference it (OBJECT_ID_CODE).
|
||||
ScopeValue.readFrom(stream);
|
||||
// res.add(ScopeValue.readFrom(stream));
|
||||
}
|
||||
Assert.that(res.size() == length, "inconsistent debug information");
|
||||
return res;
|
||||
}
|
||||
}
|
||||
|
@ -49,12 +49,15 @@ public abstract class ScopeValue {
|
||||
static final int CONSTANT_OOP_CODE = 2;
|
||||
static final int CONSTANT_LONG_CODE = 3;
|
||||
static final int CONSTANT_DOUBLE_CODE = 4;
|
||||
static final int CONSTANT_OBJECT_CODE = 5;
|
||||
static final int CONSTANT_OBJECT_ID_CODE = 6;
|
||||
|
||||
public boolean isLocation() { return false; }
|
||||
public boolean isConstantInt() { return false; }
|
||||
public boolean isConstantDouble() { return false; }
|
||||
public boolean isConstantLong() { return false; }
|
||||
public boolean isConstantOop() { return false; }
|
||||
public boolean isObject() { return false; }
|
||||
|
||||
public static ScopeValue readFrom(DebugInfoReadStream stream) {
|
||||
switch (stream.readInt()) {
|
||||
@ -68,6 +71,10 @@ public abstract class ScopeValue {
|
||||
return new ConstantLongValue(stream);
|
||||
case CONSTANT_DOUBLE_CODE:
|
||||
return new ConstantDoubleValue(stream);
|
||||
case CONSTANT_OBJECT_CODE:
|
||||
return stream.readObjectValue();
|
||||
case CONSTANT_OBJECT_ID_CODE:
|
||||
return stream.getCachedObject();
|
||||
default:
|
||||
Assert.that(false, "should not reach here");
|
||||
return null;
|
||||
|
@ -249,6 +249,7 @@ public class ObjectReferenceImpl extends ValueImpl implements ObjectReference {
|
||||
OopHandle givenHandle = obj.getHandle();
|
||||
for (Iterator itr = monitors.iterator(); itr.hasNext();) {
|
||||
MonitorInfo mi = (MonitorInfo) itr.next();
|
||||
if (mi.eliminated() && frame.isCompiledFrame()) continue; // skip eliminated monitor
|
||||
if (givenHandle.equals(mi.owner())) {
|
||||
res++;
|
||||
}
|
||||
|
@ -301,6 +301,9 @@ public class ThreadReferenceImpl extends ObjectReferenceImpl
|
||||
List frameMonitors = frame.getMonitors(); // List<MonitorInfo>
|
||||
for (Iterator miItr = frameMonitors.iterator(); miItr.hasNext(); ) {
|
||||
sun.jvm.hotspot.runtime.MonitorInfo mi = (sun.jvm.hotspot.runtime.MonitorInfo) miItr.next();
|
||||
if (mi.eliminated() && frame.isCompiledFrame()) {
|
||||
continue; // skip eliminated monitor
|
||||
}
|
||||
OopHandle obj = mi.owner();
|
||||
if (obj == null) {
|
||||
// this monitor doesn't have an owning object so skip it
|
||||
|
@ -131,8 +131,18 @@ public class CompiledVFrame extends JavaVFrame {
|
||||
List result = new ArrayList(monitors.size());
|
||||
for (int i = 0; i < monitors.size(); i++) {
|
||||
MonitorValue mv = (MonitorValue) monitors.get(i);
|
||||
StackValue ownerSV = createStackValue(mv.owner()); // it is an oop
|
||||
result.add(new MonitorInfo(ownerSV.getObject(), resolveMonitorLock(mv.basicLock())));
|
||||
ScopeValue ov = mv.owner();
|
||||
StackValue ownerSV = createStackValue(ov); // it is an oop
|
||||
if (ov.isObject()) { // The owner object was scalar replaced
|
||||
Assert.that(mv.eliminated() && ownerSV.objIsScalarReplaced(), "monitor should be eliminated for scalar replaced object");
|
||||
// Put klass for scalar replaced object.
|
||||
ScopeValue kv = ((ObjectValue)ov).getKlass();
|
||||
Assert.that(kv.isConstantOop(), "klass should be oop constant for scalar replaced object");
|
||||
OopHandle k = ((ConstantOopReadValue)kv).getValue();
|
||||
result.add(new MonitorInfo(k, resolveMonitorLock(mv.basicLock()), mv.eliminated(), true));
|
||||
} else {
|
||||
result.add(new MonitorInfo(ownerSV.getObject(), resolveMonitorLock(mv.basicLock()), mv.eliminated(), false));
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
@ -212,12 +222,12 @@ public class CompiledVFrame extends JavaVFrame {
|
||||
// long or is unused. He always saves a long. Here we know
|
||||
// a long was saved, but we only want an narrow oop back. Narrow the
|
||||
// saved long to the narrow oop that the JVM wants.
|
||||
return new StackValue(valueAddr.getCompOopHandleAt(VM.getVM().getIntSize()));
|
||||
return new StackValue(valueAddr.getCompOopHandleAt(VM.getVM().getIntSize()), 0);
|
||||
} else {
|
||||
return new StackValue(valueAddr.getCompOopHandleAt(0));
|
||||
return new StackValue(valueAddr.getCompOopHandleAt(0), 0);
|
||||
}
|
||||
} else if( loc.holdsOop() ) { // Holds an oop?
|
||||
return new StackValue(valueAddr.getOopHandleAt(0));
|
||||
return new StackValue(valueAddr.getOopHandleAt(0), 0);
|
||||
} else if( loc.holdsDouble() ) {
|
||||
// Double value in a single stack slot
|
||||
return new StackValue(valueAddr.getJIntAt(0) & 0xFFFFFFFF);
|
||||
@ -277,7 +287,7 @@ public class CompiledVFrame extends JavaVFrame {
|
||||
return new StackValue(((ConstantIntValue) sv).getValue() & 0xFFFFFFFF);
|
||||
} else if (sv.isConstantOop()) {
|
||||
// constant oop
|
||||
return new StackValue(((ConstantOopReadValue) sv).getValue());
|
||||
return new StackValue(((ConstantOopReadValue) sv).getValue(), 0);
|
||||
} else if (sv.isConstantDouble()) {
|
||||
// Constant double in a single stack slot
|
||||
double d = ((ConstantDoubleValue) sv).getValue();
|
||||
@ -285,6 +295,9 @@ public class CompiledVFrame extends JavaVFrame {
|
||||
} else if (VM.getVM().isLP64() && sv.isConstantLong()) {
|
||||
// Constant long in a single stack slot
|
||||
return new StackValue(((ConstantLongValue) sv).getValue() & 0xFFFFFFFF);
|
||||
} else if (sv.isObject()) {
|
||||
// Scalar replaced object in compiled frame
|
||||
return new StackValue(((ObjectValue)sv).getValue(), 1);
|
||||
}
|
||||
|
||||
// Unknown ScopeValue type
|
||||
|
@ -61,7 +61,7 @@ public class InterpretedVFrame extends JavaVFrame {
|
||||
StackValue sv;
|
||||
if (oopMask.isOop(i)) {
|
||||
// oop value
|
||||
sv = new StackValue(addr.getOopHandleAt(0));
|
||||
sv = new StackValue(addr.getOopHandleAt(0), 0);
|
||||
} else {
|
||||
// integer
|
||||
// Fetch a signed integer the size of a stack slot
|
||||
@ -95,7 +95,7 @@ public class InterpretedVFrame extends JavaVFrame {
|
||||
StackValue sv;
|
||||
if (oopMask.isOop(i + nofLocals)) {
|
||||
// oop value
|
||||
sv = new StackValue(addr.getOopHandleAt(0));
|
||||
sv = new StackValue(addr.getOopHandleAt(0), 0);
|
||||
} else {
|
||||
// integer
|
||||
// Fetch a signed integer the size of a stack slot
|
||||
@ -113,7 +113,7 @@ public class InterpretedVFrame extends JavaVFrame {
|
||||
for (BasicObjectLock current = getFrame().interpreterFrameMonitorEnd();
|
||||
current.address().lessThan(getFrame().interpreterFrameMonitorBegin().address());
|
||||
current = getFrame().nextMonitorInInterpreterFrame(current)) {
|
||||
result.add(new MonitorInfo(current.obj(), current.lock()));
|
||||
result.add(new MonitorInfo(current.obj(), current.lock(), false, false));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@ -25,16 +25,39 @@
|
||||
package sun.jvm.hotspot.runtime;
|
||||
|
||||
import sun.jvm.hotspot.debugger.*;
|
||||
import sun.jvm.hotspot.utilities.*;
|
||||
|
||||
public class MonitorInfo {
|
||||
private OopHandle owner;
|
||||
private BasicLock lock;
|
||||
private OopHandle ownerKlass;
|
||||
private boolean eliminated;
|
||||
private boolean ownerIsScalarReplaced;
|
||||
|
||||
public MonitorInfo(OopHandle owner, BasicLock lock) {
|
||||
this.owner = owner;
|
||||
this.lock = lock;
|
||||
public MonitorInfo(OopHandle owner, BasicLock lock, boolean eliminated, boolean ownerIsScalarReplaced) {
|
||||
if (!ownerIsScalarReplaced) {
|
||||
this.owner = owner;
|
||||
this.ownerKlass = null;
|
||||
} else {
|
||||
Assert.that(eliminated, "monitor should be eliminated for scalar replaced object");
|
||||
this.owner = null;
|
||||
this.ownerKlass = owner;
|
||||
}
|
||||
this.eliminated = eliminated;
|
||||
this.ownerIsScalarReplaced = ownerIsScalarReplaced;
|
||||
}
|
||||
|
||||
public OopHandle owner() {
|
||||
Assert.that(!ownerIsScalarReplaced, "should not be called for scalar replaced object");
|
||||
return owner;
|
||||
}
|
||||
|
||||
public OopHandle ownerKlass() {
|
||||
Assert.that(ownerIsScalarReplaced, "should not be called for not scalar replaced object");
|
||||
return ownerKlass;
|
||||
}
|
||||
|
||||
public OopHandle owner() { return owner; }
|
||||
public BasicLock lock() { return lock; }
|
||||
public boolean eliminated() { return eliminated; }
|
||||
public boolean ownerIsScalarReplaced() { return ownerIsScalarReplaced; }
|
||||
}
|
||||
|
@ -37,9 +37,11 @@ public class StackValue {
|
||||
type = BasicType.getTConflict();
|
||||
}
|
||||
|
||||
public StackValue(OopHandle h) {
|
||||
public StackValue(OopHandle h, long scalar_replaced) {
|
||||
handleValue = h;
|
||||
type = BasicType.getTObject();
|
||||
integerValue = scalar_replaced;
|
||||
Assert.that(integerValue == 0 || handleValue == null, "not null object should not be marked as scalar replaced");
|
||||
}
|
||||
|
||||
public StackValue(long i) {
|
||||
@ -59,6 +61,13 @@ public class StackValue {
|
||||
return handleValue;
|
||||
}
|
||||
|
||||
boolean objIsScalarReplaced() {
|
||||
if (Assert.ASSERTS_ENABLED) {
|
||||
Assert.that(type == BasicType.getTObject(), "type check");
|
||||
}
|
||||
return integerValue != 0;
|
||||
}
|
||||
|
||||
public long getInteger() {
|
||||
if (Assert.ASSERTS_ENABLED) {
|
||||
Assert.that(type == BasicType.getTInt(), "type check");
|
||||
|
@ -135,6 +135,10 @@ public class JSJavaThread extends JSJavaInstance {
|
||||
List frameMonitors = frame.getMonitors(); // List<MonitorInfo>
|
||||
for (Iterator miItr = frameMonitors.iterator(); miItr.hasNext(); ) {
|
||||
MonitorInfo mi = (MonitorInfo) miItr.next();
|
||||
|
||||
if (mi.eliminated() && frame.isCompiledFrame()) {
|
||||
continue; // skip eliminated monitor
|
||||
}
|
||||
OopHandle obj = mi.owner();
|
||||
if (obj == null) {
|
||||
// this monitor doesn't have an owning object so skip it
|
||||
|
@ -68,7 +68,9 @@ endif
|
||||
|
||||
# CFLAGS_WARN holds compiler options to suppress/enable warnings.
|
||||
# Compiler warnings are treated as errors
|
||||
CFLAGS_WARN = +w -errwarn
|
||||
ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1)
|
||||
CFLAGS_WARN = +w -errwarn
|
||||
endif
|
||||
CFLAGS += $(CFLAGS_WARN)
|
||||
|
||||
ifeq ("${Platform_compiler}", "sparcWorks")
|
||||
|
@ -371,7 +371,7 @@ void LIRGenerator::do_StoreIndexed(StoreIndexed* x) {
|
||||
}
|
||||
__ move(value.result(), array_addr, null_check_info);
|
||||
if (obj_store) {
|
||||
// Is this precise?
|
||||
// Precise card mark
|
||||
post_barrier(LIR_OprFact::address(array_addr), value.result());
|
||||
}
|
||||
}
|
||||
@ -685,11 +685,8 @@ void LIRGenerator::do_CompareAndSwap(Intrinsic* x, ValueType* type) {
|
||||
LIR_Opr result = rlock_result(x);
|
||||
__ cmove(lir_cond_equal, LIR_OprFact::intConst(1), LIR_OprFact::intConst(0), result);
|
||||
if (type == objectType) { // Write-barrier needed for Object fields.
|
||||
#ifdef PRECISE_CARDMARK
|
||||
// Precise card mark since could either be object or array
|
||||
post_barrier(addr, val.result());
|
||||
#else
|
||||
post_barrier(obj.result(), val.result());
|
||||
#endif // PRECISE_CARDMARK
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1891,17 +1891,17 @@ RegMask Matcher::modL_proj_mask() {
|
||||
// The intptr_t operand types, defined by textual substitution.
|
||||
// (Cf. opto/type.hpp. This lets us avoid many, many other ifdefs.)
|
||||
#ifdef _LP64
|
||||
#define immX immL
|
||||
#define immX13 immL13
|
||||
#define immX13m7 immL13m7
|
||||
#define iRegX iRegL
|
||||
#define g1RegX g1RegL
|
||||
#define immX immL
|
||||
#define immX13 immL13
|
||||
#define immX13m7 immL13m7
|
||||
#define iRegX iRegL
|
||||
#define g1RegX g1RegL
|
||||
#else
|
||||
#define immX immI
|
||||
#define immX13 immI13
|
||||
#define immX13m7 immI13m7
|
||||
#define iRegX iRegI
|
||||
#define g1RegX g1RegI
|
||||
#define immX immI
|
||||
#define immX13 immI13
|
||||
#define immX13m7 immI13m7
|
||||
#define iRegX iRegI
|
||||
#define g1RegX g1RegI
|
||||
#endif
|
||||
|
||||
//----------ENCODING BLOCK-----------------------------------------------------
|
||||
@ -3446,6 +3446,15 @@ operand immI() %{
|
||||
interface(CONST_INTER);
|
||||
%}
|
||||
|
||||
// Integer Immediate: 8-bit
|
||||
operand immI8() %{
|
||||
predicate(Assembler::is_simm(n->get_int(), 8));
|
||||
match(ConI);
|
||||
op_cost(0);
|
||||
format %{ %}
|
||||
interface(CONST_INTER);
|
||||
%}
|
||||
|
||||
// Integer Immediate: 13-bit
|
||||
operand immI13() %{
|
||||
predicate(Assembler::is_simm13(n->get_int()));
|
||||
@ -3466,6 +3475,15 @@ operand immI13m7() %{
|
||||
interface(CONST_INTER);
|
||||
%}
|
||||
|
||||
// Integer Immediate: 16-bit
|
||||
operand immI16() %{
|
||||
predicate(Assembler::is_simm(n->get_int(), 16));
|
||||
match(ConI);
|
||||
op_cost(0);
|
||||
format %{ %}
|
||||
interface(CONST_INTER);
|
||||
%}
|
||||
|
||||
// Unsigned (positive) Integer Immediate: 13-bit
|
||||
operand immU13() %{
|
||||
predicate((0 <= n->get_int()) && Assembler::is_simm13(n->get_int()));
|
||||
@ -5544,7 +5562,7 @@ instruct loadUB(iRegI dst, memory mem) %{
|
||||
ins_encode %{
|
||||
__ ldub($mem$$Address, $dst$$Register);
|
||||
%}
|
||||
ins_pipe(iload_mask_mem);
|
||||
ins_pipe(iload_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Byte (8bit UNsigned) into a Long Register
|
||||
@ -5557,7 +5575,22 @@ instruct loadUB2L(iRegL dst, memory mem) %{
|
||||
ins_encode %{
|
||||
__ ldub($mem$$Address, $dst$$Register);
|
||||
%}
|
||||
ins_pipe(iload_mask_mem);
|
||||
ins_pipe(iload_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Byte (8 bit UNsigned) with 8-bit mask into Long Register
|
||||
instruct loadUB2L_immI8(iRegL dst, memory mem, immI8 mask) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadUB mem) mask)));
|
||||
ins_cost(MEMORY_REF_COST + DEFAULT_COST);
|
||||
|
||||
size(2*4);
|
||||
format %{ "LDUB $mem,$dst\t# ubyte & 8-bit mask -> long\n\t"
|
||||
"AND $dst,$mask,$dst" %}
|
||||
ins_encode %{
|
||||
__ ldub($mem$$Address, $dst$$Register);
|
||||
__ and3($dst$$Register, $mask$$constant, $dst$$Register);
|
||||
%}
|
||||
ins_pipe(iload_mem);
|
||||
%}
|
||||
|
||||
// Load Short (16bit signed)
|
||||
@ -5610,7 +5643,7 @@ instruct loadUS(iRegI dst, memory mem) %{
|
||||
ins_encode %{
|
||||
__ lduh($mem$$Address, $dst$$Register);
|
||||
%}
|
||||
ins_pipe(iload_mask_mem);
|
||||
ins_pipe(iload_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Short/Char (16 bit UNsigned) to Byte (8 bit signed)
|
||||
@ -5636,7 +5669,56 @@ instruct loadUS2L(iRegL dst, memory mem) %{
|
||||
ins_encode %{
|
||||
__ lduh($mem$$Address, $dst$$Register);
|
||||
%}
|
||||
ins_pipe(iload_mask_mem);
|
||||
ins_pipe(iload_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Short/Char (16bit UNsigned) with mask 0xFF into a Long Register
|
||||
instruct loadUS2L_immI_255(iRegL dst, indOffset13m7 mem, immI_255 mask) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
|
||||
ins_cost(MEMORY_REF_COST);
|
||||
|
||||
size(4);
|
||||
format %{ "LDUB $mem+1,$dst\t! ushort/char & 0xFF -> long" %}
|
||||
ins_encode %{
|
||||
__ ldub($mem$$Address, $dst$$Register, 1); // LSB is index+1 on BE
|
||||
%}
|
||||
ins_pipe(iload_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Short/Char (16bit UNsigned) with a 13-bit mask into a Long Register
|
||||
instruct loadUS2L_immI13(iRegL dst, memory mem, immI13 mask) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
|
||||
ins_cost(MEMORY_REF_COST + DEFAULT_COST);
|
||||
|
||||
size(2*4);
|
||||
format %{ "LDUH $mem,$dst\t! ushort/char & 13-bit mask -> long\n\t"
|
||||
"AND $dst,$mask,$dst" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
__ lduh($mem$$Address, Rdst);
|
||||
__ and3(Rdst, $mask$$constant, Rdst);
|
||||
%}
|
||||
ins_pipe(iload_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Short/Char (16bit UNsigned) with a 16-bit mask into a Long Register
|
||||
instruct loadUS2L_immI16(iRegL dst, memory mem, immI16 mask, iRegL tmp) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
|
||||
effect(TEMP dst, TEMP tmp);
|
||||
ins_cost(MEMORY_REF_COST + 2*DEFAULT_COST);
|
||||
|
||||
size(3*4);
|
||||
format %{ "LDUH $mem,$dst\t! ushort/char & 16-bit mask -> long\n\t"
|
||||
"SET $mask,$tmp\n\t"
|
||||
"AND $dst,$tmp,$dst" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
Register Rtmp = $tmp$$Register;
|
||||
__ lduh($mem$$Address, Rdst);
|
||||
__ set($mask$$constant, Rtmp);
|
||||
__ and3(Rdst, Rtmp, Rdst);
|
||||
%}
|
||||
ins_pipe(iload_mem);
|
||||
%}
|
||||
|
||||
// Load Integer
|
||||
@ -5718,6 +5800,68 @@ instruct loadI2L(iRegL dst, memory mem) %{
|
||||
ins_encode %{
|
||||
__ ldsw($mem$$Address, $dst$$Register);
|
||||
%}
|
||||
ins_pipe(iload_mask_mem);
|
||||
%}
|
||||
|
||||
// Load Integer with mask 0xFF into a Long Register
|
||||
instruct loadI2L_immI_255(iRegL dst, indOffset13m7 mem, immI_255 mask) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
|
||||
ins_cost(MEMORY_REF_COST);
|
||||
|
||||
size(4);
|
||||
format %{ "LDUB $mem+3,$dst\t! int & 0xFF -> long" %}
|
||||
ins_encode %{
|
||||
__ ldub($mem$$Address, $dst$$Register, 3); // LSB is index+3 on BE
|
||||
%}
|
||||
ins_pipe(iload_mem);
|
||||
%}
|
||||
|
||||
// Load Integer with mask 0xFFFF into a Long Register
|
||||
instruct loadI2L_immI_65535(iRegL dst, indOffset13m7 mem, immI_65535 mask) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
|
||||
ins_cost(MEMORY_REF_COST);
|
||||
|
||||
size(4);
|
||||
format %{ "LDUH $mem+2,$dst\t! int & 0xFFFF -> long" %}
|
||||
ins_encode %{
|
||||
__ lduh($mem$$Address, $dst$$Register, 2); // LSW is index+2 on BE
|
||||
%}
|
||||
ins_pipe(iload_mem);
|
||||
%}
|
||||
|
||||
// Load Integer with a 13-bit mask into a Long Register
|
||||
instruct loadI2L_immI13(iRegL dst, memory mem, immI13 mask) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
|
||||
ins_cost(MEMORY_REF_COST + DEFAULT_COST);
|
||||
|
||||
size(2*4);
|
||||
format %{ "LDUW $mem,$dst\t! int & 13-bit mask -> long\n\t"
|
||||
"AND $dst,$mask,$dst" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
__ lduw($mem$$Address, Rdst);
|
||||
__ and3(Rdst, $mask$$constant, Rdst);
|
||||
%}
|
||||
ins_pipe(iload_mem);
|
||||
%}
|
||||
|
||||
// Load Integer with a 32-bit mask into a Long Register
|
||||
instruct loadI2L_immI(iRegL dst, memory mem, immI mask, iRegL tmp) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
|
||||
effect(TEMP dst, TEMP tmp);
|
||||
ins_cost(MEMORY_REF_COST + 2*DEFAULT_COST);
|
||||
|
||||
size(3*4);
|
||||
format %{ "LDUW $mem,$dst\t! int & 32-bit mask -> long\n\t"
|
||||
"SET $mask,$tmp\n\t"
|
||||
"AND $dst,$tmp,$dst" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
Register Rtmp = $tmp$$Register;
|
||||
__ lduw($mem$$Address, Rdst);
|
||||
__ set($mask$$constant, Rtmp);
|
||||
__ and3(Rdst, Rtmp, Rdst);
|
||||
%}
|
||||
ins_pipe(iload_mem);
|
||||
%}
|
||||
|
||||
|
@ -1372,6 +1372,8 @@ void InterpreterMacroAssembler::profile_null_seen(Register mdp) {
|
||||
// If no method data exists, go to profile_continue.
|
||||
test_method_data_pointer(mdp, profile_continue);
|
||||
|
||||
set_mdp_flag_at(mdp, BitData::null_seen_byte_constant());
|
||||
|
||||
// The method data pointer needs to be updated.
|
||||
int mdp_delta = in_bytes(BitData::bit_data_size());
|
||||
if (TypeProfileCasts) {
|
||||
|
@ -1409,6 +1409,8 @@ void InterpreterMacroAssembler::profile_null_seen(Register mdp) {
|
||||
// If no method data exists, go to profile_continue.
|
||||
test_method_data_pointer(mdp, profile_continue);
|
||||
|
||||
set_mdp_flag_at(mdp, BitData::null_seen_byte_constant());
|
||||
|
||||
// The method data pointer needs to be updated.
|
||||
int mdp_delta = in_bytes(BitData::bit_data_size());
|
||||
if (TypeProfileCasts) {
|
||||
|
@ -6885,8 +6885,9 @@ instruct loadB(xRegI dst, memory mem) %{
|
||||
%}
|
||||
|
||||
// Load Byte (8bit signed) into Long Register
|
||||
instruct loadB2L(eRegL dst, memory mem) %{
|
||||
instruct loadB2L(eRegL dst, memory mem, eFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (LoadB mem)));
|
||||
effect(KILL cr);
|
||||
|
||||
ins_cost(375);
|
||||
format %{ "MOVSX8 $dst.lo,$mem\t# byte -> long\n\t"
|
||||
@ -6917,22 +6918,40 @@ instruct loadUB(xRegI dst, memory mem) %{
|
||||
%}
|
||||
|
||||
// Load Unsigned Byte (8 bit UNsigned) into Long Register
|
||||
instruct loadUB2L(eRegL dst, memory mem)
|
||||
%{
|
||||
instruct loadUB2L(eRegL dst, memory mem, eFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (LoadUB mem)));
|
||||
effect(KILL cr);
|
||||
|
||||
ins_cost(250);
|
||||
format %{ "MOVZX8 $dst.lo,$mem\t# ubyte -> long\n\t"
|
||||
"XOR $dst.hi,$dst.hi" %}
|
||||
|
||||
ins_encode %{
|
||||
__ movzbl($dst$$Register, $mem$$Address);
|
||||
__ xorl(HIGH_FROM_LOW($dst$$Register), HIGH_FROM_LOW($dst$$Register));
|
||||
Register Rdst = $dst$$Register;
|
||||
__ movzbl(Rdst, $mem$$Address);
|
||||
__ xorl(HIGH_FROM_LOW(Rdst), HIGH_FROM_LOW(Rdst));
|
||||
%}
|
||||
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Byte (8 bit UNsigned) with mask into Long Register
|
||||
instruct loadUB2L_immI8(eRegL dst, memory mem, immI8 mask, eFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadUB mem) mask)));
|
||||
effect(KILL cr);
|
||||
|
||||
format %{ "MOVZX8 $dst.lo,$mem\t# ubyte & 8-bit mask -> long\n\t"
|
||||
"XOR $dst.hi,$dst.hi\n\t"
|
||||
"AND $dst.lo,$mask" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
__ movzbl(Rdst, $mem$$Address);
|
||||
__ xorl(HIGH_FROM_LOW(Rdst), HIGH_FROM_LOW(Rdst));
|
||||
__ andl(Rdst, $mask$$constant);
|
||||
%}
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Short (16bit signed)
|
||||
instruct loadS(eRegI dst, memory mem) %{
|
||||
match(Set dst (LoadS mem));
|
||||
@ -6960,8 +6979,9 @@ instruct loadS2B(eRegI dst, memory mem, immI_24 twentyfour) %{
|
||||
%}
|
||||
|
||||
// Load Short (16bit signed) into Long Register
|
||||
instruct loadS2L(eRegL dst, memory mem) %{
|
||||
instruct loadS2L(eRegL dst, memory mem, eFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (LoadS mem)));
|
||||
effect(KILL cr);
|
||||
|
||||
ins_cost(375);
|
||||
format %{ "MOVSX $dst.lo,$mem\t# short -> long\n\t"
|
||||
@ -7004,8 +7024,9 @@ instruct loadUS2B(eRegI dst, memory mem, immI_24 twentyfour) %{
|
||||
%}
|
||||
|
||||
// Load Unsigned Short/Char (16 bit UNsigned) into Long Register
|
||||
instruct loadUS2L(eRegL dst, memory mem) %{
|
||||
instruct loadUS2L(eRegL dst, memory mem, eFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (LoadUS mem)));
|
||||
effect(KILL cr);
|
||||
|
||||
ins_cost(250);
|
||||
format %{ "MOVZX $dst.lo,$mem\t# ushort/char -> long\n\t"
|
||||
@ -7019,6 +7040,38 @@ instruct loadUS2L(eRegL dst, memory mem) %{
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Short/Char (16 bit UNsigned) with mask 0xFF into Long Register
|
||||
instruct loadUS2L_immI_255(eRegL dst, memory mem, immI_255 mask, eFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
|
||||
effect(KILL cr);
|
||||
|
||||
format %{ "MOVZX8 $dst.lo,$mem\t# ushort/char & 0xFF -> long\n\t"
|
||||
"XOR $dst.hi,$dst.hi" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
__ movzbl(Rdst, $mem$$Address);
|
||||
__ xorl(HIGH_FROM_LOW(Rdst), HIGH_FROM_LOW(Rdst));
|
||||
%}
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Short/Char (16 bit UNsigned) with a 16-bit mask into Long Register
|
||||
instruct loadUS2L_immI16(eRegL dst, memory mem, immI16 mask, eFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
|
||||
effect(KILL cr);
|
||||
|
||||
format %{ "MOVZX $dst.lo, $mem\t# ushort/char & 16-bit mask -> long\n\t"
|
||||
"XOR $dst.hi,$dst.hi\n\t"
|
||||
"AND $dst.lo,$mask" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
__ movzwl(Rdst, $mem$$Address);
|
||||
__ xorl(HIGH_FROM_LOW(Rdst), HIGH_FROM_LOW(Rdst));
|
||||
__ andl(Rdst, $mask$$constant);
|
||||
%}
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Integer
|
||||
instruct loadI(eRegI dst, memory mem) %{
|
||||
match(Set dst (LoadI mem));
|
||||
@ -7082,8 +7135,9 @@ instruct loadI2US(eRegI dst, memory mem, immI_65535 mask) %{
|
||||
%}
|
||||
|
||||
// Load Integer into Long Register
|
||||
instruct loadI2L(eRegL dst, memory mem) %{
|
||||
instruct loadI2L(eRegL dst, memory mem, eFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (LoadI mem)));
|
||||
effect(KILL cr);
|
||||
|
||||
ins_cost(375);
|
||||
format %{ "MOV $dst.lo,$mem\t# int -> long\n\t"
|
||||
@ -7099,9 +7153,57 @@ instruct loadI2L(eRegL dst, memory mem) %{
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Integer with mask 0xFF into Long Register
|
||||
instruct loadI2L_immI_255(eRegL dst, memory mem, immI_255 mask, eFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
|
||||
effect(KILL cr);
|
||||
|
||||
format %{ "MOVZX8 $dst.lo,$mem\t# int & 0xFF -> long\n\t"
|
||||
"XOR $dst.hi,$dst.hi" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
__ movzbl(Rdst, $mem$$Address);
|
||||
__ xorl(HIGH_FROM_LOW(Rdst), HIGH_FROM_LOW(Rdst));
|
||||
%}
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Integer with mask 0xFFFF into Long Register
|
||||
instruct loadI2L_immI_65535(eRegL dst, memory mem, immI_65535 mask, eFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
|
||||
effect(KILL cr);
|
||||
|
||||
format %{ "MOVZX $dst.lo,$mem\t# int & 0xFFFF -> long\n\t"
|
||||
"XOR $dst.hi,$dst.hi" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
__ movzwl(Rdst, $mem$$Address);
|
||||
__ xorl(HIGH_FROM_LOW(Rdst), HIGH_FROM_LOW(Rdst));
|
||||
%}
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Integer with 32-bit mask into Long Register
|
||||
instruct loadI2L_immI(eRegL dst, memory mem, immI mask, eFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
|
||||
effect(KILL cr);
|
||||
|
||||
format %{ "MOV $dst.lo,$mem\t# int & 32-bit mask -> long\n\t"
|
||||
"XOR $dst.hi,$dst.hi\n\t"
|
||||
"AND $dst.lo,$mask" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
__ movl(Rdst, $mem$$Address);
|
||||
__ xorl(HIGH_FROM_LOW(Rdst), HIGH_FROM_LOW(Rdst));
|
||||
__ andl(Rdst, $mask$$constant);
|
||||
%}
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Integer into Long Register
|
||||
instruct loadUI2L(eRegL dst, memory mem) %{
|
||||
instruct loadUI2L(eRegL dst, memory mem, eFlagsReg cr) %{
|
||||
match(Set dst (LoadUI2L mem));
|
||||
effect(KILL cr);
|
||||
|
||||
ins_cost(250);
|
||||
format %{ "MOV $dst.lo,$mem\t# uint -> long\n\t"
|
||||
@ -7695,6 +7797,17 @@ instruct storeL(long_memory mem, eRegL src) %{
|
||||
ins_pipe( ialu_mem_long_reg );
|
||||
%}
|
||||
|
||||
// Store Long to Integer
|
||||
instruct storeL2I(memory mem, eRegL src) %{
|
||||
match(Set mem (StoreI mem (ConvL2I src)));
|
||||
|
||||
format %{ "MOV $mem,$src.lo\t# long -> int" %}
|
||||
ins_encode %{
|
||||
__ movl($mem$$Address, $src$$Register);
|
||||
%}
|
||||
ins_pipe(ialu_mem_reg);
|
||||
%}
|
||||
|
||||
// Volatile Store Long. Must be atomic, so move it into
|
||||
// the FP TOS and then do a 64-bit FIST. Has to probe the
|
||||
// target address before the store (for null-ptr checks)
|
||||
|
@ -6444,6 +6444,21 @@ instruct loadUB2L(rRegL dst, memory mem)
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Byte (8 bit UNsigned) with a 8-bit mask into Long Register
|
||||
instruct loadUB2L_immI8(rRegL dst, memory mem, immI8 mask, rFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadUB mem) mask)));
|
||||
effect(KILL cr);
|
||||
|
||||
format %{ "movzbq $dst, $mem\t# ubyte & 8-bit mask -> long\n\t"
|
||||
"andl $dst, $mask" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
__ movzbq(Rdst, $mem$$Address);
|
||||
__ andl(Rdst, $mask$$constant);
|
||||
%}
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Short (16 bit signed)
|
||||
instruct loadS(rRegI dst, memory mem)
|
||||
%{
|
||||
@ -6528,6 +6543,32 @@ instruct loadUS2L(rRegL dst, memory mem)
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Short/Char (16 bit UNsigned) with mask 0xFF into Long Register
|
||||
instruct loadUS2L_immI_255(rRegL dst, memory mem, immI_255 mask) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
|
||||
|
||||
format %{ "movzbq $dst, $mem\t# ushort/char & 0xFF -> long" %}
|
||||
ins_encode %{
|
||||
__ movzbq($dst$$Register, $mem$$Address);
|
||||
%}
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Short/Char (16 bit UNsigned) with mask into Long Register
|
||||
instruct loadUS2L_immI16(rRegL dst, memory mem, immI16 mask, rFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadUS mem) mask)));
|
||||
effect(KILL cr);
|
||||
|
||||
format %{ "movzwq $dst, $mem\t# ushort/char & 16-bit mask -> long\n\t"
|
||||
"andl $dst, $mask" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
__ movzwq(Rdst, $mem$$Address);
|
||||
__ andl(Rdst, $mask$$constant);
|
||||
%}
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Integer
|
||||
instruct loadI(rRegI dst, memory mem)
|
||||
%{
|
||||
@ -6606,6 +6647,43 @@ instruct loadI2L(rRegL dst, memory mem)
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Integer with mask 0xFF into Long Register
|
||||
instruct loadI2L_immI_255(rRegL dst, memory mem, immI_255 mask) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
|
||||
|
||||
format %{ "movzbq $dst, $mem\t# int & 0xFF -> long" %}
|
||||
ins_encode %{
|
||||
__ movzbq($dst$$Register, $mem$$Address);
|
||||
%}
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Integer with mask 0xFFFF into Long Register
|
||||
instruct loadI2L_immI_65535(rRegL dst, memory mem, immI_65535 mask) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
|
||||
|
||||
format %{ "movzwq $dst, $mem\t# int & 0xFFFF -> long" %}
|
||||
ins_encode %{
|
||||
__ movzwq($dst$$Register, $mem$$Address);
|
||||
%}
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Integer with a 32-bit mask into Long Register
|
||||
instruct loadI2L_immI(rRegL dst, memory mem, immI mask, rFlagsReg cr) %{
|
||||
match(Set dst (ConvI2L (AndI (LoadI mem) mask)));
|
||||
effect(KILL cr);
|
||||
|
||||
format %{ "movl $dst, $mem\t# int & 32-bit mask -> long\n\t"
|
||||
"andl $dst, $mask" %}
|
||||
ins_encode %{
|
||||
Register Rdst = $dst$$Register;
|
||||
__ movl(Rdst, $mem$$Address);
|
||||
__ andl(Rdst, $mask$$constant);
|
||||
%}
|
||||
ins_pipe(ialu_reg_mem);
|
||||
%}
|
||||
|
||||
// Load Unsigned Integer into Long Register
|
||||
instruct loadUI2L(rRegL dst, memory mem)
|
||||
%{
|
||||
@ -11673,8 +11751,9 @@ instruct convI2L_reg_reg(rRegL dst, rRegI src)
|
||||
|
||||
ins_cost(125);
|
||||
format %{ "movslq $dst, $src\t# i2l" %}
|
||||
opcode(0x63); // needs REX.W
|
||||
ins_encode(REX_reg_reg_wide(dst, src), OpcP, reg_reg(dst,src));
|
||||
ins_encode %{
|
||||
__ movslq($dst$$Register, $src$$Register);
|
||||
%}
|
||||
ins_pipe(ialu_reg_reg);
|
||||
%}
|
||||
|
||||
|
@ -1367,11 +1367,11 @@ void ArchDesc::declareClasses(FILE *fp) {
|
||||
else if (!strcmp(oper->ideal_type(_globalNames), "ConN")) {
|
||||
// Access the locally stored constant
|
||||
fprintf(fp," virtual intptr_t constant() const {");
|
||||
fprintf(fp, " return _c0->make_oopptr()->get_con();");
|
||||
fprintf(fp, " return _c0->get_ptrtype()->get_con();");
|
||||
fprintf(fp, " }\n");
|
||||
// Generate query to determine if this pointer is an oop
|
||||
fprintf(fp," virtual bool constant_is_oop() const {");
|
||||
fprintf(fp, " return _c0->make_oopptr()->isa_oop_ptr();");
|
||||
fprintf(fp, " return _c0->get_ptrtype()->isa_oop_ptr();");
|
||||
fprintf(fp, " }\n");
|
||||
}
|
||||
else if (!strcmp(oper->ideal_type(_globalNames), "ConL")) {
|
||||
|
@ -1534,12 +1534,8 @@ void LIRGenerator::do_StoreField(StoreField* x) {
|
||||
}
|
||||
|
||||
if (is_oop) {
|
||||
#ifdef PRECISE_CARDMARK
|
||||
// Precise cardmarks don't work
|
||||
post_barrier(LIR_OprFact::address(address), value.result());
|
||||
#else
|
||||
// Store to object so mark the card of the header
|
||||
post_barrier(object.result(), value.result());
|
||||
#endif // PRECISE_CARDMARK
|
||||
}
|
||||
|
||||
if (is_volatile && os::is_MP()) {
|
||||
|
@ -104,7 +104,9 @@ void C2Compiler::compile_method(ciEnv* env,
|
||||
initialize();
|
||||
}
|
||||
bool subsume_loads = true;
|
||||
bool do_escape_analysis = DoEscapeAnalysis;
|
||||
bool do_escape_analysis = DoEscapeAnalysis &&
|
||||
!(env->jvmti_can_hotswap_or_post_breakpoint() ||
|
||||
env->jvmti_can_examine_or_deopt_anywhere());
|
||||
while (!env->failing()) {
|
||||
// Attempt to compile while subsuming loads into machine instructions.
|
||||
Compile C(env, this, target, entry_bci, subsume_loads, do_escape_analysis);
|
||||
|
@ -1378,7 +1378,7 @@ void GraphKit::pre_barrier(Node* ctl,
|
||||
Node* adr,
|
||||
uint adr_idx,
|
||||
Node *val,
|
||||
const Type* val_type,
|
||||
const TypeOopPtr* val_type,
|
||||
BasicType bt) {
|
||||
BarrierSet* bs = Universe::heap()->barrier_set();
|
||||
set_control(ctl);
|
||||
@ -1436,7 +1436,7 @@ Node* GraphKit::store_oop_to_object(Node* ctl,
|
||||
Node* adr,
|
||||
const TypePtr* adr_type,
|
||||
Node *val,
|
||||
const Type* val_type,
|
||||
const TypeOopPtr* val_type,
|
||||
BasicType bt) {
|
||||
uint adr_idx = C->get_alias_index(adr_type);
|
||||
Node* store;
|
||||
@ -1451,7 +1451,7 @@ Node* GraphKit::store_oop_to_array(Node* ctl,
|
||||
Node* adr,
|
||||
const TypePtr* adr_type,
|
||||
Node *val,
|
||||
const Type* val_type,
|
||||
const TypeOopPtr* val_type,
|
||||
BasicType bt) {
|
||||
uint adr_idx = C->get_alias_index(adr_type);
|
||||
Node* store;
|
||||
@ -1466,12 +1466,29 @@ Node* GraphKit::store_oop_to_unknown(Node* ctl,
|
||||
Node* adr,
|
||||
const TypePtr* adr_type,
|
||||
Node *val,
|
||||
const Type* val_type,
|
||||
BasicType bt) {
|
||||
uint adr_idx = C->get_alias_index(adr_type);
|
||||
Node* store;
|
||||
Compile::AliasType* at = C->alias_type(adr_type);
|
||||
const TypeOopPtr* val_type = NULL;
|
||||
if (adr_type->isa_instptr()) {
|
||||
if (at->field() != NULL) {
|
||||
// known field. This code is a copy of the do_put_xxx logic.
|
||||
ciField* field = at->field();
|
||||
if (!field->type()->is_loaded()) {
|
||||
val_type = TypeInstPtr::BOTTOM;
|
||||
} else {
|
||||
val_type = TypeOopPtr::make_from_klass(field->type()->as_klass());
|
||||
}
|
||||
}
|
||||
} else if (adr_type->isa_aryptr()) {
|
||||
val_type = adr_type->is_aryptr()->elem()->make_oopptr();
|
||||
}
|
||||
if (val_type == NULL) {
|
||||
val_type = TypeInstPtr::BOTTOM;
|
||||
}
|
||||
|
||||
uint adr_idx = at->index();
|
||||
pre_barrier(ctl, obj, adr, adr_idx, val, val_type, bt);
|
||||
store = store_to_memory(control(), adr, val, bt, adr_idx);
|
||||
Node* store = store_to_memory(control(), adr, val, bt, adr_idx);
|
||||
post_barrier(control(), store, obj, adr, adr_idx, val, bt, true);
|
||||
return store;
|
||||
}
|
||||
@ -3202,7 +3219,7 @@ void GraphKit::g1_write_barrier_pre(Node* obj,
|
||||
Node* adr,
|
||||
uint alias_idx,
|
||||
Node* val,
|
||||
const Type* val_type,
|
||||
const TypeOopPtr* val_type,
|
||||
BasicType bt) {
|
||||
IdealKit ideal(gvn(), control(), merged_memory(), true);
|
||||
#define __ ideal.
|
||||
|
@ -454,7 +454,7 @@ class GraphKit : public Phase {
|
||||
Node* adr, // actual adress to store val at
|
||||
const TypePtr* adr_type,
|
||||
Node* val,
|
||||
const Type* val_type,
|
||||
const TypeOopPtr* val_type,
|
||||
BasicType bt);
|
||||
|
||||
Node* store_oop_to_array(Node* ctl,
|
||||
@ -462,7 +462,7 @@ class GraphKit : public Phase {
|
||||
Node* adr, // actual adress to store val at
|
||||
const TypePtr* adr_type,
|
||||
Node* val,
|
||||
const Type* val_type,
|
||||
const TypeOopPtr* val_type,
|
||||
BasicType bt);
|
||||
|
||||
// Could be an array or object we don't know at compile time (unsafe ref.)
|
||||
@ -471,12 +471,11 @@ class GraphKit : public Phase {
|
||||
Node* adr, // actual adress to store val at
|
||||
const TypePtr* adr_type,
|
||||
Node* val,
|
||||
const Type* val_type,
|
||||
BasicType bt);
|
||||
|
||||
// For the few case where the barriers need special help
|
||||
void pre_barrier(Node* ctl, Node* obj, Node* adr, uint adr_idx,
|
||||
Node* val, const Type* val_type, BasicType bt);
|
||||
Node* val, const TypeOopPtr* val_type, BasicType bt);
|
||||
|
||||
void post_barrier(Node* ctl, Node* store, Node* obj, Node* adr, uint adr_idx,
|
||||
Node* val, BasicType bt, bool use_precise);
|
||||
@ -599,7 +598,7 @@ class GraphKit : public Phase {
|
||||
Node* adr,
|
||||
uint alias_idx,
|
||||
Node* val,
|
||||
const Type* val_type,
|
||||
const TypeOopPtr* val_type,
|
||||
BasicType bt);
|
||||
|
||||
void g1_write_barrier_post(Node* store,
|
||||
|
@ -2178,9 +2178,8 @@ bool LibraryCallKit::inline_unsafe_access(bool is_native_ptr, bool is_store, Bas
|
||||
// Possibly an oop being stored to Java heap or native memory
|
||||
if (!TypePtr::NULL_PTR->higher_equal(_gvn.type(heap_base_oop))) {
|
||||
// oop to Java heap.
|
||||
(void) store_oop_to_unknown(control(), heap_base_oop, adr, adr_type, val, val->bottom_type(), type);
|
||||
(void) store_oop_to_unknown(control(), heap_base_oop, adr, adr_type, val, type);
|
||||
} else {
|
||||
|
||||
// We can't tell at compile time if we are storing in the Java heap or outside
|
||||
// of it. So we need to emit code to conditionally do the proper type of
|
||||
// store.
|
||||
@ -2189,7 +2188,7 @@ bool LibraryCallKit::inline_unsafe_access(bool is_native_ptr, bool is_store, Bas
|
||||
kit.declares_done();
|
||||
// QQQ who knows what probability is here??
|
||||
kit.if_then(heap_base_oop, BoolTest::ne, null(), PROB_UNLIKELY(0.999)); {
|
||||
(void) store_oop_to_unknown(control(), heap_base_oop, adr, adr_type, val, val->bottom_type(), type);
|
||||
(void) store_oop_to_unknown(control(), heap_base_oop, adr, adr_type, val, type);
|
||||
} kit.else_(); {
|
||||
(void) store_to_memory(control(), adr, val, type, adr_type, is_volatile);
|
||||
} kit.end_if();
|
||||
@ -2394,7 +2393,7 @@ bool LibraryCallKit::inline_unsafe_CAS(BasicType type) {
|
||||
case T_OBJECT:
|
||||
// reference stores need a store barrier.
|
||||
// (They don't if CAS fails, but it isn't worth checking.)
|
||||
pre_barrier(control(), base, adr, alias_idx, newval, value_type, T_OBJECT);
|
||||
pre_barrier(control(), base, adr, alias_idx, newval, value_type->make_oopptr(), T_OBJECT);
|
||||
#ifdef _LP64
|
||||
if (adr->bottom_type()->is_ptr_to_narrowoop()) {
|
||||
Node *newval_enc = _gvn.transform(new (C, 2) EncodePNode(newval, newval->bottom_type()->make_narrowoop()));
|
||||
@ -2489,7 +2488,7 @@ bool LibraryCallKit::inline_unsafe_ordered_store(BasicType type) {
|
||||
bool require_atomic_access = true;
|
||||
Node* store;
|
||||
if (type == T_OBJECT) // reference stores need a store barrier.
|
||||
store = store_oop_to_unknown(control(), base, adr, adr_type, val, value_type, type);
|
||||
store = store_oop_to_unknown(control(), base, adr, adr_type, val, type);
|
||||
else {
|
||||
store = store_to_memory(control(), adr, val, type, adr_type, require_atomic_access);
|
||||
}
|
||||
|
@ -141,6 +141,10 @@ void Matcher::verify_new_nodes_only(Node* xroot) {
|
||||
|
||||
//---------------------------match---------------------------------------------
|
||||
void Matcher::match( ) {
|
||||
if( MaxLabelRootDepth < 100 ) { // Too small?
|
||||
assert(false, "invalid MaxLabelRootDepth, increase it to 100 minimum");
|
||||
MaxLabelRootDepth = 100;
|
||||
}
|
||||
// One-time initialization of some register masks.
|
||||
init_spill_mask( C->root()->in(1) );
|
||||
_return_addr_mask = return_addr();
|
||||
|
@ -430,31 +430,28 @@ Node *AndINode::Identity( PhaseTransform *phase ) {
|
||||
// x & x => x
|
||||
if (phase->eqv(in(1), in(2))) return in(1);
|
||||
|
||||
Node *load = in(1);
|
||||
const TypeInt *t2 = phase->type( in(2) )->isa_int();
|
||||
if( t2 && t2->is_con() ) {
|
||||
Node* in1 = in(1);
|
||||
uint op = in1->Opcode();
|
||||
const TypeInt* t2 = phase->type(in(2))->isa_int();
|
||||
if (t2 && t2->is_con()) {
|
||||
int con = t2->get_con();
|
||||
// Masking off high bits which are always zero is useless.
|
||||
const TypeInt* t1 = phase->type( in(1) )->isa_int();
|
||||
if (t1 != NULL && t1->_lo >= 0) {
|
||||
jint t1_support = ((jint)1 << (1 + log2_intptr(t1->_hi))) - 1;
|
||||
jint t1_support = right_n_bits(1 + log2_intptr(t1->_hi));
|
||||
if ((t1_support & con) == t1_support)
|
||||
return load;
|
||||
return in1;
|
||||
}
|
||||
uint lop = load->Opcode();
|
||||
if( lop == Op_LoadUS &&
|
||||
con == 0x0000FFFF ) // Already zero-extended
|
||||
return load;
|
||||
// Masking off the high bits of a unsigned-shift-right is not
|
||||
// needed either.
|
||||
if( lop == Op_URShiftI ) {
|
||||
const TypeInt *t12 = phase->type( load->in(2) )->isa_int();
|
||||
if( t12 && t12->is_con() ) { // Shift is by a constant
|
||||
if (op == Op_URShiftI) {
|
||||
const TypeInt* t12 = phase->type(in1->in(2))->isa_int();
|
||||
if (t12 && t12->is_con()) { // Shift is by a constant
|
||||
int shift = t12->get_con();
|
||||
shift &= BitsPerJavaInteger - 1; // semantics of Java shifts
|
||||
int mask = max_juint >> shift;
|
||||
if( (mask&con) == mask ) // If AND is useless, skip it
|
||||
return load;
|
||||
if ((mask & con) == mask) // If AND is useless, skip it
|
||||
return in1;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -476,26 +473,17 @@ Node *AndINode::Ideal(PhaseGVN *phase, bool can_reshape) {
|
||||
return new (phase->C, 3) AndINode(load,phase->intcon(mask&0xFFFF));
|
||||
|
||||
// Masking bits off of a Short? Loading a Character does some masking
|
||||
if( lop == Op_LoadS &&
|
||||
(mask & 0xFFFF0000) == 0 ) {
|
||||
if (lop == Op_LoadS && (mask & 0xFFFF0000) == 0 ) {
|
||||
Node *ldus = new (phase->C, 3) LoadUSNode(load->in(MemNode::Control),
|
||||
load->in(MemNode::Memory),
|
||||
load->in(MemNode::Address),
|
||||
load->adr_type());
|
||||
load->in(MemNode::Memory),
|
||||
load->in(MemNode::Address),
|
||||
load->adr_type());
|
||||
ldus = phase->transform(ldus);
|
||||
return new (phase->C, 3) AndINode(ldus, phase->intcon(mask&0xFFFF));
|
||||
return new (phase->C, 3) AndINode(ldus, phase->intcon(mask & 0xFFFF));
|
||||
}
|
||||
|
||||
// Masking sign bits off of a Byte? Do an unsigned byte load.
|
||||
if (lop == Op_LoadB && mask == 0x000000FF) {
|
||||
return new (phase->C, 3) LoadUBNode(load->in(MemNode::Control),
|
||||
load->in(MemNode::Memory),
|
||||
load->in(MemNode::Address),
|
||||
load->adr_type());
|
||||
}
|
||||
|
||||
// Masking sign bits off of a Byte plus additional lower bits? Do
|
||||
// an unsigned byte load plus an and.
|
||||
// Masking sign bits off of a Byte? Do an unsigned byte load plus
|
||||
// an and.
|
||||
if (lop == Op_LoadB && (mask & 0xFFFFFF00) == 0) {
|
||||
Node* ldub = new (phase->C, 3) LoadUBNode(load->in(MemNode::Control),
|
||||
load->in(MemNode::Memory),
|
||||
@ -605,8 +593,13 @@ Node *AndLNode::Ideal(PhaseGVN *phase, bool can_reshape) {
|
||||
Node* in1 = in(1);
|
||||
uint op = in1->Opcode();
|
||||
|
||||
// Masking sign bits off of an integer? Do an unsigned integer to long load.
|
||||
if (op == Op_ConvI2L && in1->in(1)->Opcode() == Op_LoadI && mask == 0x00000000FFFFFFFFL) {
|
||||
// Masking sign bits off of an integer? Do an unsigned integer to
|
||||
// long load.
|
||||
// NOTE: This check must be *before* we try to convert the AndLNode
|
||||
// to an AndINode and commute it with ConvI2LNode because
|
||||
// 0xFFFFFFFFL masks the whole integer and we get a sign extension,
|
||||
// which is wrong.
|
||||
if (op == Op_ConvI2L && in1->in(1)->Opcode() == Op_LoadI && mask == CONST64(0x00000000FFFFFFFF)) {
|
||||
Node* load = in1->in(1);
|
||||
return new (phase->C, 3) LoadUI2LNode(load->in(MemNode::Control),
|
||||
load->in(MemNode::Memory),
|
||||
@ -614,9 +607,22 @@ Node *AndLNode::Ideal(PhaseGVN *phase, bool can_reshape) {
|
||||
load->adr_type());
|
||||
}
|
||||
|
||||
// Are we masking a long that was converted from an int with a mask
|
||||
// that fits in 32-bits? Commute them and use an AndINode.
|
||||
if (op == Op_ConvI2L && (mask & CONST64(0xFFFFFFFF00000000)) == 0) {
|
||||
// If we are doing an UI2L conversion (i.e. the mask is
|
||||
// 0x00000000FFFFFFFF) we cannot convert the AndL to an AndI
|
||||
// because the AndI would be optimized away later in Identity.
|
||||
if (mask != CONST64(0x00000000FFFFFFFF)) {
|
||||
Node* andi = new (phase->C, 3) AndINode(in1->in(1), phase->intcon(mask));
|
||||
andi = phase->transform(andi);
|
||||
return new (phase->C, 2) ConvI2LNode(andi);
|
||||
}
|
||||
}
|
||||
|
||||
// Masking off sign bits? Dont make them!
|
||||
if (op == Op_RShiftL) {
|
||||
const TypeInt *t12 = phase->type(in1->in(2))->isa_int();
|
||||
const TypeInt* t12 = phase->type(in1->in(2))->isa_int();
|
||||
if( t12 && t12->is_con() ) { // Shift is by a constant
|
||||
int shift = t12->get_con();
|
||||
shift &= BitsPerJavaLong - 1; // semantics of Java shifts
|
||||
@ -626,7 +632,7 @@ Node *AndLNode::Ideal(PhaseGVN *phase, bool can_reshape) {
|
||||
if( (sign_bits_mask & mask) == 0 ) {
|
||||
// Use zero-fill shift instead
|
||||
Node *zshift = phase->transform(new (phase->C, 3) URShiftLNode(in1->in(1), in1->in(2)));
|
||||
return new (phase->C, 3) AndLNode( zshift, in(2) );
|
||||
return new (phase->C, 3) AndLNode(zshift, in(2));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1565,7 +1565,7 @@ void Parse::do_one_bytecode() {
|
||||
c = pop(); // Oop to store
|
||||
b = pop(); // index (already used)
|
||||
a = pop(); // the array itself
|
||||
const Type* elemtype = _gvn.type(a)->is_aryptr()->elem();
|
||||
const TypeOopPtr* elemtype = _gvn.type(a)->is_aryptr()->elem()->make_oopptr();
|
||||
const TypeAryPtr* adr_type = TypeAryPtr::OOPS;
|
||||
Node* store = store_oop_to_array(control(), a, d, adr_type, c, elemtype, T_OBJECT);
|
||||
break;
|
||||
|
@ -222,7 +222,7 @@ void Parse::do_put_xxx(const TypePtr* obj_type, Node* obj, ciField* field, bool
|
||||
// Store the value.
|
||||
Node* store;
|
||||
if (bt == T_OBJECT) {
|
||||
const TypePtr* field_type;
|
||||
const TypeOopPtr* field_type;
|
||||
if (!field->type()->is_loaded()) {
|
||||
field_type = TypeInstPtr::BOTTOM;
|
||||
} else {
|
||||
@ -361,7 +361,7 @@ Node* Parse::expand_multianewarray(ciArrayKlass* array_klass, Node* *lengths, in
|
||||
guarantee(length_con >= 0, "non-constant multianewarray");
|
||||
ciArrayKlass* array_klass_1 = array_klass->as_obj_array_klass()->element_klass()->as_array_klass();
|
||||
const TypePtr* adr_type = TypeAryPtr::OOPS;
|
||||
const Type* elemtype = _gvn.type(array)->is_aryptr()->elem();
|
||||
const TypeOopPtr* elemtype = _gvn.type(array)->is_aryptr()->elem()->make_oopptr();
|
||||
const intptr_t header = arrayOopDesc::base_offset_in_bytes(T_OBJECT);
|
||||
for (jint i = 0; i < length_con; i++) {
|
||||
Node* elem = expand_multianewarray(array_klass_1, &lengths[1], ndimensions-1, nargs);
|
||||
|
@ -487,6 +487,23 @@ bool Type::is_nan() const {
|
||||
return false;
|
||||
}
|
||||
|
||||
//----------------------interface_vs_oop---------------------------------------
|
||||
#ifdef ASSERT
|
||||
bool Type::interface_vs_oop(const Type *t) const {
|
||||
bool result = false;
|
||||
|
||||
const TypeInstPtr* this_inst = this->isa_instptr();
|
||||
const TypeInstPtr* t_inst = t->isa_instptr();
|
||||
if( this_inst && this_inst->is_loaded() && t_inst && t_inst->is_loaded() ) {
|
||||
bool this_interface = this_inst->klass()->is_interface();
|
||||
bool t_interface = t_inst->klass()->is_interface();
|
||||
result = this_interface ^ t_interface;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
#endif
|
||||
|
||||
//------------------------------meet-------------------------------------------
|
||||
// Compute the MEET of two types. NOT virtual. It enforces that meet is
|
||||
// commutative and the lattice is symmetric.
|
||||
@ -507,16 +524,8 @@ const Type *Type::meet( const Type *t ) const {
|
||||
// Interface meet Oop is Not Symmetric:
|
||||
// Interface:AnyNull meet Oop:AnyNull == Interface:AnyNull
|
||||
// Interface:NotNull meet Oop:NotNull == java/lang/Object:NotNull
|
||||
const TypeInstPtr* this_inst = this->isa_instptr();
|
||||
const TypeInstPtr* t_inst = t->isa_instptr();
|
||||
bool interface_vs_oop = false;
|
||||
if( this_inst && this_inst->is_loaded() && t_inst && t_inst->is_loaded() ) {
|
||||
bool this_interface = this_inst->klass()->is_interface();
|
||||
bool t_interface = t_inst->klass()->is_interface();
|
||||
interface_vs_oop = this_interface ^ t_interface;
|
||||
}
|
||||
|
||||
if( !interface_vs_oop && (t2t != t->_dual || t2this != _dual) ) {
|
||||
if( !interface_vs_oop(t) && (t2t != t->_dual || t2this != _dual) ) {
|
||||
tty->print_cr("=== Meet Not Symmetric ===");
|
||||
tty->print("t = "); t->dump(); tty->cr();
|
||||
tty->print("this= "); dump(); tty->cr();
|
||||
@ -1800,6 +1809,17 @@ int TypeAry::hash(void) const {
|
||||
return (intptr_t)_elem + (intptr_t)_size;
|
||||
}
|
||||
|
||||
//----------------------interface_vs_oop---------------------------------------
|
||||
#ifdef ASSERT
|
||||
bool TypeAry::interface_vs_oop(const Type *t) const {
|
||||
const TypeAry* t_ary = t->is_ary();
|
||||
if (t_ary) {
|
||||
return _elem->interface_vs_oop(t_ary->_elem);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
//------------------------------dump2------------------------------------------
|
||||
#ifndef PRODUCT
|
||||
void TypeAry::dump2( Dict &d, uint depth, outputStream *st ) const {
|
||||
@ -3389,6 +3409,17 @@ const Type *TypeAryPtr::xdual() const {
|
||||
return new TypeAryPtr( dual_ptr(), _const_oop, _ary->dual()->is_ary(),_klass, _klass_is_exact, dual_offset(), dual_instance_id() );
|
||||
}
|
||||
|
||||
//----------------------interface_vs_oop---------------------------------------
|
||||
#ifdef ASSERT
|
||||
bool TypeAryPtr::interface_vs_oop(const Type *t) const {
|
||||
const TypeAryPtr* t_aryptr = t->isa_aryptr();
|
||||
if (t_aryptr) {
|
||||
return _ary->interface_vs_oop(t_aryptr->_ary);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
//------------------------------dump2------------------------------------------
|
||||
#ifndef PRODUCT
|
||||
void TypeAryPtr::dump2( Dict &d, uint depth, outputStream *st ) const {
|
||||
@ -3453,27 +3484,27 @@ const TypeNarrowOop* TypeNarrowOop::make(const TypePtr* type) {
|
||||
//------------------------------hash-------------------------------------------
|
||||
// Type-specific hashing function.
|
||||
int TypeNarrowOop::hash(void) const {
|
||||
return _ooptype->hash() + 7;
|
||||
return _ptrtype->hash() + 7;
|
||||
}
|
||||
|
||||
|
||||
bool TypeNarrowOop::eq( const Type *t ) const {
|
||||
const TypeNarrowOop* tc = t->isa_narrowoop();
|
||||
if (tc != NULL) {
|
||||
if (_ooptype->base() != tc->_ooptype->base()) {
|
||||
if (_ptrtype->base() != tc->_ptrtype->base()) {
|
||||
return false;
|
||||
}
|
||||
return tc->_ooptype->eq(_ooptype);
|
||||
return tc->_ptrtype->eq(_ptrtype);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
bool TypeNarrowOop::singleton(void) const { // TRUE if type is a singleton
|
||||
return _ooptype->singleton();
|
||||
return _ptrtype->singleton();
|
||||
}
|
||||
|
||||
bool TypeNarrowOop::empty(void) const {
|
||||
return _ooptype->empty();
|
||||
return _ptrtype->empty();
|
||||
}
|
||||
|
||||
//------------------------------xmeet------------------------------------------
|
||||
@ -3507,7 +3538,7 @@ const Type *TypeNarrowOop::xmeet( const Type *t ) const {
|
||||
return this;
|
||||
|
||||
case NarrowOop: {
|
||||
const Type* result = _ooptype->xmeet(t->make_ptr());
|
||||
const Type* result = _ptrtype->xmeet(t->make_ptr());
|
||||
if (result->isa_ptr()) {
|
||||
return TypeNarrowOop::make(result->is_ptr());
|
||||
}
|
||||
@ -3523,13 +3554,13 @@ const Type *TypeNarrowOop::xmeet( const Type *t ) const {
|
||||
}
|
||||
|
||||
const Type *TypeNarrowOop::xdual() const { // Compute dual right now.
|
||||
const TypePtr* odual = _ooptype->dual()->is_ptr();
|
||||
const TypePtr* odual = _ptrtype->dual()->is_ptr();
|
||||
return new TypeNarrowOop(odual);
|
||||
}
|
||||
|
||||
const Type *TypeNarrowOop::filter( const Type *kills ) const {
|
||||
if (kills->isa_narrowoop()) {
|
||||
const Type* ft =_ooptype->filter(kills->is_narrowoop()->_ooptype);
|
||||
const Type* ft =_ptrtype->filter(kills->is_narrowoop()->_ptrtype);
|
||||
if (ft->empty())
|
||||
return Type::TOP; // Canonical empty value
|
||||
if (ft->isa_ptr()) {
|
||||
@ -3537,7 +3568,7 @@ const Type *TypeNarrowOop::filter( const Type *kills ) const {
|
||||
}
|
||||
return ft;
|
||||
} else if (kills->isa_ptr()) {
|
||||
const Type* ft = _ooptype->join(kills);
|
||||
const Type* ft = _ptrtype->join(kills);
|
||||
if (ft->empty())
|
||||
return Type::TOP; // Canonical empty value
|
||||
return ft;
|
||||
@ -3548,13 +3579,13 @@ const Type *TypeNarrowOop::filter( const Type *kills ) const {
|
||||
|
||||
|
||||
intptr_t TypeNarrowOop::get_con() const {
|
||||
return _ooptype->get_con();
|
||||
return _ptrtype->get_con();
|
||||
}
|
||||
|
||||
#ifndef PRODUCT
|
||||
void TypeNarrowOop::dump2( Dict & d, uint depth, outputStream *st ) const {
|
||||
st->print("narrowoop: ");
|
||||
_ooptype->dump2(d, depth, st);
|
||||
_ptrtype->dump2(d, depth, st);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -190,6 +190,11 @@ public:
|
||||
// Currently, it also works around limitations involving interface types.
|
||||
virtual const Type *filter( const Type *kills ) const;
|
||||
|
||||
#ifdef ASSERT
|
||||
// One type is interface, the other is oop
|
||||
virtual bool interface_vs_oop(const Type *t) const;
|
||||
#endif
|
||||
|
||||
// Returns true if this pointer points at memory which contains a
|
||||
// compressed oop references.
|
||||
bool is_ptr_to_narrowoop() const;
|
||||
@ -227,6 +232,11 @@ public:
|
||||
|
||||
// Returns this ptr type or the equivalent ptr type for this compressed pointer.
|
||||
const TypePtr* make_ptr() const;
|
||||
|
||||
// Returns this oopptr type or the equivalent oopptr type for this compressed pointer.
|
||||
// Asserts if the underlying type is not an oopptr or narrowoop.
|
||||
const TypeOopPtr* make_oopptr() const;
|
||||
|
||||
// Returns this compressed pointer or the equivalent compressed version
|
||||
// of this pointer type.
|
||||
const TypeNarrowOop* make_narrowoop() const;
|
||||
@ -546,6 +556,10 @@ public:
|
||||
virtual const Type *xmeet( const Type *t ) const;
|
||||
virtual const Type *xdual() const; // Compute dual right now.
|
||||
bool ary_must_be_exact() const; // true if arrays of such are never generic
|
||||
#ifdef ASSERT
|
||||
// One type is interface, the other is oop
|
||||
virtual bool interface_vs_oop(const Type *t) const;
|
||||
#endif
|
||||
#ifndef PRODUCT
|
||||
virtual void dump2( Dict &d, uint, outputStream *st ) const; // Specialized per-Type dumping
|
||||
#endif
|
||||
@ -867,6 +881,10 @@ public:
|
||||
}
|
||||
static const TypeAryPtr *_array_body_type[T_CONFLICT+1];
|
||||
// sharpen the type of an int which is used as an array size
|
||||
#ifdef ASSERT
|
||||
// One type is interface, the other is oop
|
||||
virtual bool interface_vs_oop(const Type *t) const;
|
||||
#endif
|
||||
#ifndef PRODUCT
|
||||
virtual void dump2( Dict &d, uint depth, outputStream *st ) const; // Specialized per-Type dumping
|
||||
#endif
|
||||
@ -919,13 +937,13 @@ public:
|
||||
// between the normal and the compressed form.
|
||||
class TypeNarrowOop : public Type {
|
||||
protected:
|
||||
const TypePtr* _ooptype; // Could be TypePtr::NULL_PTR
|
||||
const TypePtr* _ptrtype; // Could be TypePtr::NULL_PTR
|
||||
|
||||
TypeNarrowOop( const TypePtr* ooptype): Type(NarrowOop),
|
||||
_ooptype(ooptype) {
|
||||
assert(ooptype->offset() == 0 ||
|
||||
ooptype->offset() == OffsetBot ||
|
||||
ooptype->offset() == OffsetTop, "no real offsets");
|
||||
TypeNarrowOop( const TypePtr* ptrtype): Type(NarrowOop),
|
||||
_ptrtype(ptrtype) {
|
||||
assert(ptrtype->offset() == 0 ||
|
||||
ptrtype->offset() == OffsetBot ||
|
||||
ptrtype->offset() == OffsetTop, "no real offsets");
|
||||
}
|
||||
public:
|
||||
virtual bool eq( const Type *t ) const;
|
||||
@ -949,8 +967,8 @@ public:
|
||||
}
|
||||
|
||||
// returns the equivalent ptr type for this compressed pointer
|
||||
const TypePtr *make_oopptr() const {
|
||||
return _ooptype;
|
||||
const TypePtr *get_ptrtype() const {
|
||||
return _ptrtype;
|
||||
}
|
||||
|
||||
static const TypeNarrowOop *BOTTOM;
|
||||
@ -1137,10 +1155,14 @@ inline const TypeKlassPtr *Type::is_klassptr() const {
|
||||
}
|
||||
|
||||
inline const TypePtr* Type::make_ptr() const {
|
||||
return (_base == NarrowOop) ? is_narrowoop()->make_oopptr() :
|
||||
return (_base == NarrowOop) ? is_narrowoop()->get_ptrtype() :
|
||||
(isa_ptr() ? is_ptr() : NULL);
|
||||
}
|
||||
|
||||
inline const TypeOopPtr* Type::make_oopptr() const {
|
||||
return (_base == NarrowOop) ? is_narrowoop()->get_ptrtype()->is_oopptr() : is_oopptr();
|
||||
}
|
||||
|
||||
inline const TypeNarrowOop* Type::make_narrowoop() const {
|
||||
return (_base == NarrowOop) ? is_narrowoop() :
|
||||
(isa_ptr() ? TypeNarrowOop::make(is_ptr()) : NULL);
|
||||
|
@ -606,6 +606,7 @@ JvmtiEnvBase::count_locked_objects(JavaThread *java_thread, Handle hobj) {
|
||||
if (!mons->is_empty()) {
|
||||
for (int i = 0; i < mons->length(); i++) {
|
||||
MonitorInfo *mi = mons->at(i);
|
||||
if (mi->owner_is_scalar_replaced()) continue;
|
||||
|
||||
// see if owner of the monitor is our object
|
||||
if (mi->owner() != NULL && mi->owner() == hobj()) {
|
||||
@ -726,6 +727,8 @@ JvmtiEnvBase::get_locked_objects_in_frame(JavaThread* calling_thread, JavaThread
|
||||
for (int i = 0; i < mons->length(); i++) {
|
||||
MonitorInfo *mi = mons->at(i);
|
||||
|
||||
if (mi->owner_is_scalar_replaced()) continue;
|
||||
|
||||
oop obj = mi->owner();
|
||||
if (obj == NULL) {
|
||||
// this monitor doesn't have an owning object so skip it
|
||||
|
@ -121,6 +121,7 @@ static GrowableArray<MonitorInfo*>* get_or_compute_monitor_info(JavaThread* thre
|
||||
// Walk monitors youngest to oldest
|
||||
for (int i = len - 1; i >= 0; i--) {
|
||||
MonitorInfo* mon_info = monitors->at(i);
|
||||
if (mon_info->owner_is_scalar_replaced()) continue;
|
||||
oop owner = mon_info->owner();
|
||||
if (owner != NULL) {
|
||||
info->append(mon_info);
|
||||
@ -694,6 +695,7 @@ void BiasedLocking::preserve_marks() {
|
||||
// Walk monitors youngest to oldest
|
||||
for (int i = len - 1; i >= 0; i--) {
|
||||
MonitorInfo* mon_info = monitors->at(i);
|
||||
if (mon_info->owner_is_scalar_replaced()) continue;
|
||||
oop owner = mon_info->owner();
|
||||
if (owner != NULL) {
|
||||
markOop mark = owner->mark();
|
||||
|
@ -933,7 +933,7 @@ static void collect_monitors(compiledVFrame* cvf, GrowableArray<Handle>* objects
|
||||
GrowableArray<MonitorInfo*>* monitors = cvf->monitors();
|
||||
for (int i = 0; i < monitors->length(); i++) {
|
||||
MonitorInfo* mon_info = monitors->at(i);
|
||||
if (mon_info->owner() != NULL && !mon_info->eliminated()) {
|
||||
if (!mon_info->eliminated() && mon_info->owner() != NULL) {
|
||||
objects_to_revoke->append(Handle(mon_info->owner()));
|
||||
}
|
||||
}
|
||||
|
@ -146,8 +146,9 @@ StackValue* StackValue::create_stack_value(const frame* fr, const RegisterMap* r
|
||||
value.jl = ((ConstantLongValue *)sv)->value();
|
||||
return new StackValue(value.p);
|
||||
#endif
|
||||
} else if (sv->is_object()) {
|
||||
return new StackValue(((ObjectValue *)sv)->value());
|
||||
} else if (sv->is_object()) { // Scalar replaced object in compiled frame
|
||||
Handle ov = ((ObjectValue *)sv)->value();
|
||||
return new StackValue(ov, (ov.is_null()) ? 1 : 0);
|
||||
}
|
||||
|
||||
// Unknown ScopeValue type
|
||||
|
@ -34,9 +34,11 @@ class StackValue : public ResourceObj {
|
||||
_i = value;
|
||||
}
|
||||
|
||||
StackValue(Handle value) {
|
||||
StackValue(Handle value, intptr_t scalar_replaced = 0) {
|
||||
_type = T_OBJECT;
|
||||
_i = scalar_replaced;
|
||||
_o = value;
|
||||
assert(_i == 0 || _o.is_null(), "not null object should not be marked as scalar replaced");
|
||||
}
|
||||
|
||||
StackValue() {
|
||||
@ -56,6 +58,11 @@ class StackValue : public ResourceObj {
|
||||
return _o;
|
||||
}
|
||||
|
||||
bool obj_is_scalar_replaced() const {
|
||||
assert(type() == T_OBJECT, "type check");
|
||||
return _i != 0;
|
||||
}
|
||||
|
||||
void set_obj(Handle value) {
|
||||
assert(type() == T_OBJECT, "type check");
|
||||
_o = value;
|
||||
|
@ -106,6 +106,7 @@ GrowableArray<MonitorInfo*>* javaVFrame::locked_monitors() {
|
||||
|
||||
for (int index = (mons->length()-1); index >= 0; index--) {
|
||||
MonitorInfo* monitor = mons->at(index);
|
||||
if (monitor->eliminated() && is_compiled_frame()) continue; // skip eliminated monitor
|
||||
oop obj = monitor->owner();
|
||||
if (obj == NULL) continue; // skip unowned monitor
|
||||
//
|
||||
@ -162,6 +163,18 @@ void javaVFrame::print_lock_info_on(outputStream* st, int frame_count) {
|
||||
bool found_first_monitor = false;
|
||||
for (int index = (mons->length()-1); index >= 0; index--) {
|
||||
MonitorInfo* monitor = mons->at(index);
|
||||
if (monitor->eliminated() && is_compiled_frame()) { // Eliminated in compiled code
|
||||
if (monitor->owner_is_scalar_replaced()) {
|
||||
Klass* k = Klass::cast(monitor->owner_klass());
|
||||
st->print("\t- eliminated <owner is scalar replaced> (a %s)", k->external_name());
|
||||
} else {
|
||||
oop obj = monitor->owner();
|
||||
if (obj != NULL) {
|
||||
print_locked_object_class_name(st, obj, "eliminated");
|
||||
}
|
||||
}
|
||||
continue;
|
||||
}
|
||||
if (monitor->owner() != NULL) {
|
||||
|
||||
// First, assume we have the monitor locked. If we haven't found an
|
||||
@ -171,11 +184,11 @@ void javaVFrame::print_lock_info_on(outputStream* st, int frame_count) {
|
||||
|
||||
const char *lock_state = "locked"; // assume we have the monitor locked
|
||||
if (!found_first_monitor && frame_count == 0) {
|
||||
markOop mark = monitor->owner()->mark();
|
||||
if (mark->has_monitor() &&
|
||||
mark->monitor() == thread()->current_pending_monitor()) {
|
||||
markOop mark = monitor->owner()->mark();
|
||||
if (mark->has_monitor() &&
|
||||
mark->monitor() == thread()->current_pending_monitor()) {
|
||||
lock_state = "waiting to lock";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
found_first_monitor = true;
|
||||
@ -206,7 +219,7 @@ GrowableArray<MonitorInfo*>* interpretedVFrame::monitors() const {
|
||||
for (BasicObjectLock* current = (fr().previous_monitor_in_interpreter_frame(fr().interpreter_frame_monitor_begin()));
|
||||
current >= fr().interpreter_frame_monitor_end();
|
||||
current = fr().previous_monitor_in_interpreter_frame(current)) {
|
||||
result->push(new MonitorInfo(current->obj(), current->lock(), false));
|
||||
result->push(new MonitorInfo(current->obj(), current->lock(), false, false));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
@ -531,8 +544,18 @@ void javaVFrame::print() {
|
||||
tty->print_cr("\tmonitor list:");
|
||||
for (int index = (list->length()-1); index >= 0; index--) {
|
||||
MonitorInfo* monitor = list->at(index);
|
||||
tty->print("\t obj\t"); monitor->owner()->print_value();
|
||||
tty->print("(" INTPTR_FORMAT ")", (address)monitor->owner());
|
||||
tty->print("\t obj\t");
|
||||
if (monitor->owner_is_scalar_replaced()) {
|
||||
Klass* k = Klass::cast(monitor->owner_klass());
|
||||
tty->print("( is scalar replaced %s)", k->external_name());
|
||||
} else if (monitor->owner() == NULL) {
|
||||
tty->print("( null )");
|
||||
} else {
|
||||
monitor->owner()->print_value();
|
||||
tty->print("(" INTPTR_FORMAT ")", (address)monitor->owner());
|
||||
}
|
||||
if (monitor->eliminated() && is_compiled_frame())
|
||||
tty->print(" ( lock is eliminated )");
|
||||
tty->cr();
|
||||
tty->print("\t ");
|
||||
monitor->lock()->print_on(tty);
|
||||
|
@ -230,18 +230,36 @@ class MonitorInfo : public ResourceObj {
|
||||
private:
|
||||
oop _owner; // the object owning the monitor
|
||||
BasicLock* _lock;
|
||||
oop _owner_klass; // klass if owner was scalar replaced
|
||||
bool _eliminated;
|
||||
bool _owner_is_scalar_replaced;
|
||||
public:
|
||||
// Constructor
|
||||
MonitorInfo(oop owner, BasicLock* lock, bool eliminated) {
|
||||
_owner = owner;
|
||||
MonitorInfo(oop owner, BasicLock* lock, bool eliminated, bool owner_is_scalar_replaced) {
|
||||
if (!owner_is_scalar_replaced) {
|
||||
_owner = owner;
|
||||
_owner_klass = NULL;
|
||||
} else {
|
||||
assert(eliminated, "monitor should be eliminated for scalar replaced object");
|
||||
_owner = NULL;
|
||||
_owner_klass = owner;
|
||||
}
|
||||
_lock = lock;
|
||||
_eliminated = eliminated;
|
||||
_owner_is_scalar_replaced = owner_is_scalar_replaced;
|
||||
}
|
||||
// Accessors
|
||||
oop owner() const { return _owner; }
|
||||
oop owner() const {
|
||||
assert(!_owner_is_scalar_replaced, "should not be called for scalar replaced object");
|
||||
return _owner;
|
||||
}
|
||||
klassOop owner_klass() const {
|
||||
assert(_owner_is_scalar_replaced, "should not be called for not scalar replaced object");
|
||||
return (klassOop)_owner_klass;
|
||||
}
|
||||
BasicLock* lock() const { return _lock; }
|
||||
bool eliminated() const { return _eliminated; }
|
||||
bool owner_is_scalar_replaced() const { return _owner_is_scalar_replaced; }
|
||||
};
|
||||
|
||||
class vframeStreamCommon : StackObj {
|
||||
|
@ -61,6 +61,7 @@ void vframeArrayElement::fill_in(compiledVFrame* vf) {
|
||||
// Migrate the BasicLocks from the stack to the monitor chunk
|
||||
for (index = 0; index < list->length(); index++) {
|
||||
MonitorInfo* monitor = list->at(index);
|
||||
assert(!monitor->owner_is_scalar_replaced(), "object should be reallocated already");
|
||||
assert(monitor->owner() == NULL || (!monitor->owner()->is_unlocked() && !monitor->owner()->has_bias_pattern()), "object must be null or locked, and unbiased");
|
||||
BasicObjectLock* dest = _monitors->at(index);
|
||||
dest->set_obj(monitor->owner());
|
||||
@ -89,6 +90,7 @@ void vframeArrayElement::fill_in(compiledVFrame* vf) {
|
||||
StackValue* value = locs->at(index);
|
||||
switch(value->type()) {
|
||||
case T_OBJECT:
|
||||
assert(!value->obj_is_scalar_replaced(), "object should be reallocated already");
|
||||
// preserve object type
|
||||
_locals->add( new StackValue((intptr_t) (value->get_obj()()), T_OBJECT ));
|
||||
break;
|
||||
@ -113,6 +115,7 @@ void vframeArrayElement::fill_in(compiledVFrame* vf) {
|
||||
StackValue* value = exprs->at(index);
|
||||
switch(value->type()) {
|
||||
case T_OBJECT:
|
||||
assert(!value->obj_is_scalar_replaced(), "object should be reallocated already");
|
||||
// preserve object type
|
||||
_expressions->add( new StackValue((intptr_t) (value->get_obj()()), T_OBJECT ));
|
||||
break;
|
||||
|
@ -190,7 +190,7 @@ GrowableArray<MonitorInfo*>* compiledVFrame::monitors() const {
|
||||
// Casting away const
|
||||
frame& fr = (frame&) _fr;
|
||||
MonitorInfo* info = new MonitorInfo(fr.compiled_synchronized_native_monitor_owner(nm),
|
||||
fr.compiled_synchronized_native_monitor(nm), false);
|
||||
fr.compiled_synchronized_native_monitor(nm), false, false);
|
||||
monitors->push(info);
|
||||
return monitors;
|
||||
}
|
||||
@ -201,8 +201,20 @@ GrowableArray<MonitorInfo*>* compiledVFrame::monitors() const {
|
||||
GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(monitors->length());
|
||||
for (int index = 0; index < monitors->length(); index++) {
|
||||
MonitorValue* mv = monitors->at(index);
|
||||
StackValue *owner_sv = create_stack_value(mv->owner()); // it is an oop
|
||||
result->push(new MonitorInfo(owner_sv->get_obj()(), resolve_monitor_lock(mv->basic_lock()), mv->eliminated()));
|
||||
ScopeValue* ov = mv->owner();
|
||||
StackValue *owner_sv = create_stack_value(ov); // it is an oop
|
||||
if (ov->is_object() && owner_sv->obj_is_scalar_replaced()) { // The owner object was scalar replaced
|
||||
assert(mv->eliminated(), "monitor should be eliminated for scalar replaced object");
|
||||
// Put klass for scalar replaced object.
|
||||
ScopeValue* kv = ((ObjectValue *)ov)->klass();
|
||||
assert(kv->is_constant_oop(), "klass should be oop constant for scalar replaced object");
|
||||
KlassHandle k(((ConstantOopReadValue*)kv)->value()());
|
||||
result->push(new MonitorInfo(k->as_klassOop(), resolve_monitor_lock(mv->basic_lock()),
|
||||
mv->eliminated(), true));
|
||||
} else {
|
||||
result->push(new MonitorInfo(owner_sv->get_obj()(), resolve_monitor_lock(mv->basic_lock()),
|
||||
mv->eliminated(), false));
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
140
hotspot/test/compiler/5057225/Test5057225.java
Normal file
140
hotspot/test/compiler/5057225/Test5057225.java
Normal file
@ -0,0 +1,140 @@
|
||||
/*
|
||||
* Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
||||
* CA 95054 USA or visit www.sun.com if you need additional information or
|
||||
* have any questions.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @test
|
||||
* @bug 5057225
|
||||
* @summary Remove useless I2L conversions
|
||||
*
|
||||
* @run main/othervm -Xcomp -XX:CompileOnly=Test5057225.doload Test5057225
|
||||
*/
|
||||
|
||||
import java.net.URLClassLoader;
|
||||
|
||||
public class Test5057225 {
|
||||
static byte[] ba = new byte[] { -1 };
|
||||
static short[] sa = new short[] { -1 };
|
||||
static int[] ia = new int[] { -1 };
|
||||
|
||||
static final long[] BYTE_MASKS = {
|
||||
0x0FL,
|
||||
0x7FL, // 7-bit
|
||||
0xFFL,
|
||||
};
|
||||
|
||||
static final long[] SHORT_MASKS = {
|
||||
0x000FL,
|
||||
0x007FL, // 7-bit
|
||||
0x00FFL,
|
||||
0x0FFFL,
|
||||
0x3FFFL, // 14-bit
|
||||
0x7FFFL, // 15-bit
|
||||
0xFFFFL,
|
||||
};
|
||||
|
||||
static final long[] INT_MASKS = {
|
||||
0x0000000FL,
|
||||
0x0000007FL, // 7-bit
|
||||
0x000000FFL,
|
||||
0x00000FFFL,
|
||||
0x00003FFFL, // 14-bit
|
||||
0x00007FFFL, // 15-bit
|
||||
0x0000FFFFL,
|
||||
0x00FFFFFFL,
|
||||
0x7FFFFFFFL, // 31-bit
|
||||
0xFFFFFFFFL,
|
||||
};
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
for (int i = 0; i < BYTE_MASKS.length; i++) {
|
||||
System.setProperty("value", "" + BYTE_MASKS[i]);
|
||||
loadAndRunClass("Test5057225$loadUB2L");
|
||||
}
|
||||
|
||||
for (int i = 0; i < SHORT_MASKS.length; i++) {
|
||||
System.setProperty("value", "" + SHORT_MASKS[i]);
|
||||
loadAndRunClass("Test5057225$loadUS2L");
|
||||
}
|
||||
|
||||
for (int i = 0; i < INT_MASKS.length; i++) {
|
||||
System.setProperty("value", "" + INT_MASKS[i]);
|
||||
loadAndRunClass("Test5057225$loadUI2L");
|
||||
}
|
||||
}
|
||||
|
||||
static void check(long result, long expected) {
|
||||
if (result != expected)
|
||||
throw new InternalError(result + " != " + expected);
|
||||
}
|
||||
|
||||
static void loadAndRunClass(String classname) throws Exception {
|
||||
Class cl = Class.forName(classname);
|
||||
URLClassLoader apploader = (URLClassLoader) cl.getClassLoader();
|
||||
ClassLoader loader = new URLClassLoader(apploader.getURLs(), apploader.getParent());
|
||||
Class c = loader.loadClass(classname);
|
||||
Runnable r = (Runnable) c.newInstance();
|
||||
r.run();
|
||||
}
|
||||
|
||||
public static class loadUB2L implements Runnable {
|
||||
static final long MASK;
|
||||
static {
|
||||
long value = 0;
|
||||
try {
|
||||
value = Long.decode(System.getProperty("value"));
|
||||
} catch (Throwable e) {}
|
||||
MASK = value;
|
||||
}
|
||||
|
||||
public void run() { check(doload(ba), MASK); }
|
||||
static long doload(byte[] ba) { return ba[0] & MASK; }
|
||||
}
|
||||
|
||||
public static class loadUS2L implements Runnable {
|
||||
static final long MASK;
|
||||
static {
|
||||
long value = 0;
|
||||
try {
|
||||
value = Long.decode(System.getProperty("value"));
|
||||
} catch (Throwable e) {}
|
||||
MASK = value;
|
||||
}
|
||||
|
||||
public void run() { check(doload(sa), MASK); }
|
||||
static long doload(short[] sa) { return sa[0] & MASK; }
|
||||
}
|
||||
|
||||
public static class loadUI2L implements Runnable {
|
||||
static final long MASK;
|
||||
static {
|
||||
long value = 0;
|
||||
try {
|
||||
value = Long.decode(System.getProperty("value"));
|
||||
} catch (Throwable e) {}
|
||||
MASK = value;
|
||||
}
|
||||
|
||||
public void run() { check(doload(ia), MASK); }
|
||||
static long doload(int[] ia) { return ia[0] & MASK; }
|
||||
}
|
||||
}
|
94
hotspot/test/compiler/6837094/Test.java
Normal file
94
hotspot/test/compiler/6837094/Test.java
Normal file
@ -0,0 +1,94 @@
|
||||
/*
|
||||
* Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
||||
* CA 95054 USA or visit www.sun.com if you need additional information or
|
||||
* have any questions.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @test
|
||||
* @bug 6837094
|
||||
* @summary False positive for "meet not symmetric" failure
|
||||
*
|
||||
* @run main/othervm -Xbatch -XX:CompileOnly=Test.collectIs,Test$Factory$1.getArray,Test$Factory$2.getArray Test
|
||||
*/
|
||||
|
||||
import java.util.Set;
|
||||
import java.util.HashSet;
|
||||
|
||||
public class Test {
|
||||
|
||||
private interface Factory<M extends Interface> {
|
||||
Factory<Child0> Zero = new Factory<Child0>() {
|
||||
public Child0[] getArray() { return new Child0[1]; }
|
||||
};
|
||||
|
||||
Factory<Child1> One = new Factory<Child1>() {
|
||||
public Child1[] getArray() { return new Child1[1]; }
|
||||
};
|
||||
|
||||
M[] getArray();
|
||||
}
|
||||
|
||||
/**
|
||||
* C2 asserts when compiling this method. Bimorphic inlining happens at
|
||||
* getArray call site. A Phi in the catch block tries to join the meet type
|
||||
* from he inline site (Parent[]) with the type expected by CI (Interface[]).
|
||||
*
|
||||
* C2 throws an assert when it doesn't need to.
|
||||
*/
|
||||
private static <I extends Interface> void collectIs(
|
||||
Factory<I> factory, Set<Interface> s) {
|
||||
for (I i : factory.getArray()) {
|
||||
try {
|
||||
s.add(i);
|
||||
} catch (Exception e) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static public void main(String argv[]) {
|
||||
Set<Interface> s = new HashSet();
|
||||
|
||||
for (int i = 0; i < 25000; i++) {
|
||||
collectIs(Factory.Zero, s);
|
||||
collectIs(Factory.One, s);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Establish necessary class hierarchy
|
||||
*/
|
||||
|
||||
interface Interface {
|
||||
}
|
||||
|
||||
class Parent {
|
||||
}
|
||||
|
||||
class Child0 extends Parent implements Interface {
|
||||
}
|
||||
|
||||
class Child1 extends Parent implements Interface {
|
||||
}
|
||||
|
||||
class Child2 extends Parent implements Interface {
|
||||
}
|
44
hotspot/test/compiler/6849574/Test.java
Normal file
44
hotspot/test/compiler/6849574/Test.java
Normal file
@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
||||
* CA 95054 USA or visit www.sun.com if you need additional information or
|
||||
* have any questions.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @test
|
||||
* @bug 6849574
|
||||
* @summary VM crash using NonBlockingHashMap (high_scale_lib)
|
||||
*
|
||||
* @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:+VerifyBeforeGC Test
|
||||
*/
|
||||
|
||||
import java.util.concurrent.atomic.*;
|
||||
|
||||
public class Test extends Thread {
|
||||
|
||||
public static void main(String[] args) {
|
||||
AtomicReferenceArray a = new AtomicReferenceArray(10000);
|
||||
for (int i = 0; i < 100000; i++) {
|
||||
a.getAndSet(9999, new Object());
|
||||
if (i > 99990) System.gc();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user