rt/flow/src/main/java/org/apidesign/bck2brwsr/flow/GraalFlowAnalyzer.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 11 Sep 2015 14:51:09 +0200
branchflow
changeset 1842 dd4dabfead82
parent 1841 e38cdcd3c997
permissions -rw-r--r--
Giving the flow analyzer chance to generate the whole function body
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012-2015 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.flow;
    19 
    20 import java.io.IOException;
    21 import org.apidesign.vm4brwsr.Bck2Brwsr;
    22 
    23 /** Poweful flow analyzer. Based on internals used by Graal JVM
    24  * compiler.
    25  *
    26  * @author Jaroslav Tulach
    27  */
    28 public final class GraalFlowAnalyzer {
    29     private GraalFlowAnalyzer() {
    30     }
    31     
    32     public static Bck2Brwsr.Flow.Analyzer getDefault() {
    33         return Impl.DEFAULT;
    34     }
    35 
    36     private static class Impl implements Bck2Brwsr.Flow.Analyzer {
    37         static Impl DEFAULT = new Impl();
    38         
    39         private Impl() {
    40         }
    41 
    42         @Override
    43         public boolean analyze(final Bck2Brwsr.Flow result) throws IOException {
    44             // Use Graal to generate optimal function, David.
    45             double x = com.oracle.graal.api.directives.GraalDirectives.FASTPATH_PROBABILITY;
    46             result.emit("function() { return 922869; }");
    47             return true;
    48         }
    49     }
    50 }