Java Code Examples for jdk.nashorn.internal.ir.Block#isTerminal()

The following examples show how to use jdk.nashorn.internal.ir.Block#isTerminal() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CodeGenerator.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Node leaveBlock(final Block block) {
    method.label(block.getBreakLabel());
    symbolInfo(block);

    if (block.needsScope() && !block.isTerminal()) {
        popBlockScope(block);
    }
    return block;
}
 
Example 2
Source File: CodeGenerator.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
private void enterFor(final ForNode forNode) {
    final Expression init   = forNode.getInit();
    final Expression test   = forNode.getTest();
    final Block      body   = forNode.getBody();
    final Expression modify = forNode.getModify();

    if (init != null) {
        init.accept(this);
    }

    final Label loopLabel = new Label("loop");
    final Label testLabel = new Label("test");

    method._goto(testLabel);
    method.label(loopLabel);
    body.accept(this);
    method.label(forNode.getContinueLabel());

    if (!body.isTerminal() && modify != null) {
        load(modify);
    }

    method.label(testLabel);
    if (test != null) {
        new BranchOptimizer(this, method).execute(test, loopLabel, true);
    } else {
        method._goto(loopLabel);
    }

    method.label(forNode.getBreakLabel());
}
 
Example 3
Source File: CodeGenerator.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
@Override
public boolean enterIfNode(final IfNode ifNode) {
    lineNumber(ifNode);

    final Expression test = ifNode.getTest();
    final Block pass = ifNode.getPass();
    final Block fail = ifNode.getFail();

    final Label failLabel  = new Label("if_fail");
    final Label afterLabel = fail == null ? failLabel : new Label("if_done");

    new BranchOptimizer(this, method).execute(test, failLabel, false);

    boolean passTerminal = false;
    boolean failTerminal = false;

    pass.accept(this);
    if (!pass.hasTerminalFlags()) {
        method._goto(afterLabel); //don't fallthru to fail block
    } else {
        passTerminal = pass.isTerminal();
    }

    if (fail != null) {
        method.label(failLabel);
        fail.accept(this);
        failTerminal = fail.isTerminal();
    }

    //if if terminates, put the after label there
    if (!passTerminal || !failTerminal) {
        method.label(afterLabel);
    }

    return false;
}
 
Example 4
Source File: CodeGenerator.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Node leaveBlock(final Block block) {
    method.label(block.getBreakLabel());
    symbolInfo(block);

    if (block.needsScope() && !block.isTerminal()) {
        popBlockScope(block);
    }
    return block;
}
 
Example 5
Source File: CodeGenerator.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private void enterFor(final ForNode forNode) {
    final Expression init   = forNode.getInit();
    final Expression test   = forNode.getTest();
    final Block      body   = forNode.getBody();
    final Expression modify = forNode.getModify();

    if (init != null) {
        init.accept(this);
    }

    final Label loopLabel = new Label("loop");
    final Label testLabel = new Label("test");

    method._goto(testLabel);
    method.label(loopLabel);
    body.accept(this);
    method.label(forNode.getContinueLabel());

    if (!body.isTerminal() && modify != null) {
        load(modify);
    }

    method.label(testLabel);
    if (test != null) {
        new BranchOptimizer(this, method).execute(test, loopLabel, true);
    } else {
        method._goto(loopLabel);
    }

    method.label(forNode.getBreakLabel());
}
 
Example 6
Source File: CodeGenerator.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public boolean enterIfNode(final IfNode ifNode) {
    lineNumber(ifNode);

    final Expression test = ifNode.getTest();
    final Block pass = ifNode.getPass();
    final Block fail = ifNode.getFail();

    final Label failLabel  = new Label("if_fail");
    final Label afterLabel = fail == null ? failLabel : new Label("if_done");

    new BranchOptimizer(this, method).execute(test, failLabel, false);

    boolean passTerminal = false;
    boolean failTerminal = false;

    pass.accept(this);
    if (!pass.hasTerminalFlags()) {
        method._goto(afterLabel); //don't fallthru to fail block
    } else {
        passTerminal = pass.isTerminal();
    }

    if (fail != null) {
        method.label(failLabel);
        fail.accept(this);
        failTerminal = fail.isTerminal();
    }

    //if if terminates, put the after label there
    if (!passTerminal || !failTerminal) {
        method.label(afterLabel);
    }

    return false;
}
 
Example 7
Source File: CodeGenerator.java    From nashorn with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Node leaveBlock(final Block block) {
    method.label(block.getBreakLabel());
    symbolInfo(block);

    if (block.needsScope() && !block.isTerminal()) {
        popBlockScope(block);
    }
    return block;
}
 
Example 8
Source File: CodeGenerator.java    From nashorn with GNU General Public License v2.0 5 votes vote down vote up
private void enterFor(final ForNode forNode) {
    final Expression init   = forNode.getInit();
    final Expression test   = forNode.getTest();
    final Block      body   = forNode.getBody();
    final Expression modify = forNode.getModify();

    if (init != null) {
        init.accept(this);
    }

    final Label loopLabel = new Label("loop");
    final Label testLabel = new Label("test");

    method._goto(testLabel);
    method.label(loopLabel);
    body.accept(this);
    method.label(forNode.getContinueLabel());

    if (!body.isTerminal() && modify != null) {
        load(modify);
    }

    method.label(testLabel);
    if (test != null) {
        new BranchOptimizer(this, method).execute(test, loopLabel, true);
    } else {
        method._goto(loopLabel);
    }

    method.label(forNode.getBreakLabel());
}
 
Example 9
Source File: CodeGenerator.java    From nashorn with GNU General Public License v2.0 5 votes vote down vote up
@Override
public boolean enterIfNode(final IfNode ifNode) {
    lineNumber(ifNode);

    final Expression test = ifNode.getTest();
    final Block pass = ifNode.getPass();
    final Block fail = ifNode.getFail();

    final Label failLabel  = new Label("if_fail");
    final Label afterLabel = fail == null ? failLabel : new Label("if_done");

    new BranchOptimizer(this, method).execute(test, failLabel, false);

    boolean passTerminal = false;
    boolean failTerminal = false;

    pass.accept(this);
    if (!pass.hasTerminalFlags()) {
        method._goto(afterLabel); //don't fallthru to fail block
    } else {
        passTerminal = pass.isTerminal();
    }

    if (fail != null) {
        method.label(failLabel);
        fail.accept(this);
        failTerminal = fail.isTerminal();
    }

    //if if terminates, put the after label there
    if (!passTerminal || !failTerminal) {
        method.label(afterLabel);
    }

    return false;
}