Package joust.optimisers.translators

Examples of joust.optimisers.translators.ConstFoldTranslator


/**
* Loop unrolling.
*/
public class Unroll extends OptimisationRunnable.OneTwo {
    public Unroll() {
        super(new UnrollTranslator(), new ConstFoldTranslator());
    }
View Full Code Here


@Log
@ExtensionMethod({Logger.class, LogUtils.LogExtensions.class})
public class ShortFunc extends OptimisationRunnable.OneTwo {
    public ShortFunc() {
        super(new ShortFuncTranslator(), new ConstFoldTranslator());
    }
View Full Code Here

/**
* Constant folding.
*/
public class ConstFold extends OptimisationRunnable.BluntForce {
    public ConstFold() {
        super(new ConstFoldTranslator());
    }
View Full Code Here

TOP

Related Classes of joust.optimisers.translators.ConstFoldTranslator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.