use of com.oracle.truffle.dsl.processor.expression.DSLExpression.Binary in project graal by oracle.
the class FlatNodeGenFactory method accessesCachedState.
private static boolean accessesCachedState(List<SpecializationData> specializations) {
final AtomicBoolean needsState = new AtomicBoolean(false);
for (final SpecializationData specialization : specializations) {
if (!specialization.getAssumptionExpressions().isEmpty()) {
needsState.set(true);
break;
}
for (GuardExpression expression : specialization.getGuards()) {
expression.getExpression().accept(new DSLExpressionVisitor() {
public void visitVariable(Variable binary) {
if (!needsState.get() && isVariableAccessMember(binary)) {
needsState.set(true);
}
}
private boolean isVariableAccessMember(Variable variable) {
if (variable.getName().equals("null") && variable.getReceiver() == null) {
return false;
}
Parameter p = specialization.findByVariable(variable.getResolvedVariable());
if (p == null && !variable.getResolvedVariable().getModifiers().contains(STATIC)) {
DSLExpression receiver = variable.getReceiver();
if (receiver instanceof Variable) {
return isVariableAccessMember((Variable) receiver);
} else if (receiver instanceof Call) {
return isMethodAccessMember((Call) receiver);
}
return true;
} else if (p != null && p.getSpecification().isCached()) {
return true;
}
return false;
}
public void visitBooleanLiteral(BooleanLiteral binary) {
}
public void visitNegate(Negate negate) {
}
public void visitIntLiteral(IntLiteral binary) {
}
private boolean isMethodAccessMember(Call call) {
if (!call.getResolvedMethod().getModifiers().contains(STATIC)) {
DSLExpression receiver = call.getReceiver();
if (receiver instanceof Variable) {
return isVariableAccessMember((Variable) receiver);
} else if (receiver instanceof Call) {
return isMethodAccessMember((Call) receiver);
}
return true;
}
return false;
}
public void visitCall(Call call) {
if (!needsState.get() && isMethodAccessMember(call)) {
needsState.set(true);
}
}
public void visitBinary(Binary binary) {
}
});
}
}
boolean needsStat = needsState.get();
return needsStat;
}
use of com.oracle.truffle.dsl.processor.expression.DSLExpression.Binary in project graal by oracle.
the class FatalError method LogicFactor.
DSLExpression LogicFactor() {
DSLExpression result;
result = ComparisonFactor();
if (la.kind == 3) {
Get();
Token op = t;
DSLExpression right = ComparisonFactor();
result = new Binary(op.val, result, right);
}
return result;
}
use of com.oracle.truffle.dsl.processor.expression.DSLExpression.Binary in project graal by oracle.
the class GuardExpression method isConstantTrueInSlowPath.
public boolean isConstantTrueInSlowPath(ProcessorContext context) {
DSLExpression reducedExpression = getExpression().reduce(new AbstractDSLExpressionReducer() {
@Override
public DSLExpression visitVariable(Variable binary) {
// on the slow path we can assume all cache expressions inlined.
for (CacheExpression cache : source.getCaches()) {
if (ElementUtils.variableEquals(cache.getParameter().getVariableElement(), binary.getResolvedVariable())) {
return cache.getExpression();
}
}
return super.visitVariable(binary);
}
@Override
public DSLExpression visitCall(Call binary) {
ExecutableElement method = binary.getResolvedMethod();
if (!method.getSimpleName().toString().equals("equals")) {
return binary;
}
if (method.getModifiers().contains(Modifier.STATIC)) {
return binary;
}
if (!ElementUtils.typeEquals(method.getReturnType(), context.getType(boolean.class))) {
return binary;
}
if (method.getParameters().size() != 1) {
return binary;
}
// signature: receiver.equals(receiver) can be folded to true
DSLExpression receiver = binary.getReceiver();
DSLExpression firstArg = binary.getParameters().get(0);
if (receiver instanceof Variable && firstArg instanceof Variable) {
if (receiver.equals(firstArg)) {
return new BooleanLiteral(true);
}
}
return super.visitCall(binary);
}
@Override
public DSLExpression visitBinary(Binary binary) {
// signature: value == value can be folded to true
if (IDENTITY_FOLD_OPERATORS.contains(binary.getOperator())) {
if (binary.getLeft() instanceof Variable && binary.getRight() instanceof Variable) {
Variable leftVar = ((Variable) binary.getLeft());
Variable rightVar = ((Variable) binary.getRight());
if (leftVar.equals(rightVar)) {
// double and float cannot be folded as NaN is never identity equal
if (!ElementUtils.typeEquals(leftVar.getResolvedType(), context.getType(float.class)) && !ElementUtils.typeEquals(leftVar.getResolvedType(), context.getType(double.class))) {
return new BooleanLiteral(true);
}
}
}
}
return super.visitBinary(binary);
}
});
Object o = reducedExpression.resolveConstant();
if (o instanceof Boolean) {
if (((Boolean) o).booleanValue()) {
return true;
}
}
return false;
}
use of com.oracle.truffle.dsl.processor.expression.DSLExpression.Binary in project graal by oracle.
the class FatalError method ComparisonFactor.
DSLExpression ComparisonFactor() {
DSLExpression result;
result = NegateFactor();
if (StartOf(1)) {
switch(la.kind) {
case 4:
{
Get();
break;
}
case 5:
{
Get();
break;
}
case 6:
{
Get();
break;
}
case 7:
{
Get();
break;
}
case 8:
{
Get();
break;
}
case 9:
{
Get();
break;
}
}
Token op = t;
DSLExpression right = NegateFactor();
result = new Binary(op.val, result, right);
}
return result;
}
Aggregations