/*
 * Copyright (c) 2016, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */


package org.graalvm.compiler.core.common.alloc;

import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.BitSet;
import java.util.Collection;
import java.util.Deque;

import org.graalvm.compiler.core.common.alloc.TraceBuilderResult.TrivialTracePredicate;
import org.graalvm.compiler.core.common.cfg.AbstractBlockBase;
import org.graalvm.compiler.debug.DebugContext;
import org.graalvm.compiler.debug.Indent;

Computes traces by selecting the unhandled block with the highest execution frequency and going in both directions, up and down, as long as possible.
/** * Computes traces by selecting the unhandled block with the highest execution frequency and going * in both directions, up and down, as long as possible. */
public final class BiDirectionalTraceBuilder { public static TraceBuilderResult computeTraces(DebugContext debug, AbstractBlockBase<?> startBlock, AbstractBlockBase<?>[] blocks, TrivialTracePredicate pred) { return new BiDirectionalTraceBuilder(blocks).build(debug, startBlock, blocks, pred); } private final Deque<AbstractBlockBase<?>> worklist; private final BitSet processed; private final Trace[] blockToTrace; private BiDirectionalTraceBuilder(AbstractBlockBase<?>[] blocks) { processed = new BitSet(blocks.length); worklist = createQueue(blocks); blockToTrace = new Trace[blocks.length]; } private static Deque<AbstractBlockBase<?>> createQueue(AbstractBlockBase<?>[] blocks) { ArrayList<AbstractBlockBase<?>> queue = new ArrayList<>(Arrays.asList(blocks)); queue.sort(BiDirectionalTraceBuilder::compare); return new ArrayDeque<>(queue); } private static int compare(AbstractBlockBase<?> a, AbstractBlockBase<?> b) { return Double.compare(b.probability(), a.probability()); } private boolean processed(AbstractBlockBase<?> b) { return processed.get(b.getId()); } @SuppressWarnings("try") private TraceBuilderResult build(DebugContext debug, AbstractBlockBase<?> startBlock, AbstractBlockBase<?>[] blocks, TrivialTracePredicate pred) { try (Indent indent = debug.logAndIndent("BiDirectionalTraceBuilder: start trace building")) { ArrayList<Trace> traces = buildTraces(debug); assert traces.get(0).getBlocks()[0].equals(startBlock) : "The first traces always contains the start block"; return TraceBuilderResult.create(debug, blocks, traces, blockToTrace, pred); } } protected ArrayList<Trace> buildTraces(DebugContext debug) { ArrayList<Trace> traces = new ArrayList<>(); // process worklist while (!worklist.isEmpty()) { AbstractBlockBase<?> block = worklist.pollFirst(); assert block != null; if (!processed(block)) { Trace trace = new Trace(findTrace(debug, block)); for (AbstractBlockBase<?> traceBlock : trace.getBlocks()) { blockToTrace[traceBlock.getId()] = trace; } trace.setId(traces.size()); traces.add(trace); } } return traces; }
Build a new trace starting at block.
Params:
  • debug –
/** * Build a new trace starting at {@code block}. * * @param debug */
@SuppressWarnings("try") private Collection<AbstractBlockBase<?>> findTrace(DebugContext debug, AbstractBlockBase<?> initBlock) { ArrayDeque<AbstractBlockBase<?>> trace = new ArrayDeque<>(); try (Indent i = debug.logAndIndent("StartTrace: %s", initBlock)) { try (Indent indentFront = debug.logAndIndent("Head:")) { for (AbstractBlockBase<?> block = initBlock; block != null; block = selectPredecessor(block)) { addBlockToTrace(debug, block); trace.addFirst(block); } } /* Number head blocks. Can not do this in the loop as we go backwards. */ int blockNr = 0; for (AbstractBlockBase<?> b : trace) { b.setLinearScanNumber(blockNr++); } try (Indent indentBack = debug.logAndIndent("Tail:")) { for (AbstractBlockBase<?> block = selectSuccessor(initBlock); block != null; block = selectSuccessor(block)) { addBlockToTrace(debug, block); trace.addLast(block); /* This time we can number the blocks immediately as we go forwards. */ block.setLinearScanNumber(blockNr++); } } } debug.log("Trace: %s", trace); return trace; } private void addBlockToTrace(DebugContext debug, AbstractBlockBase<?> block) { debug.log("add %s (prob: %f)", block, block.probability()); processed.set(block.getId()); }
Returns:The unprocessed predecessor with the highest probability, or null.
/** * @return The unprocessed predecessor with the highest probability, or {@code null}. */
private AbstractBlockBase<?> selectPredecessor(AbstractBlockBase<?> block) { AbstractBlockBase<?> next = null; for (AbstractBlockBase<?> pred : block.getPredecessors()) { if (!processed(pred) && !isBackEdge(pred, block) && (next == null || pred.probability() > next.probability())) { next = pred; } } return next; } private static boolean isBackEdge(AbstractBlockBase<?> from, AbstractBlockBase<?> to) { assert Arrays.asList(from.getSuccessors()).contains(to) : "No edge from " + from + " to " + to; return from.isLoopEnd() && to.isLoopHeader() && from.getLoop().equals(to.getLoop()); }
Returns:The unprocessed successor with the highest probability, or null.
/** * @return The unprocessed successor with the highest probability, or {@code null}. */
private AbstractBlockBase<?> selectSuccessor(AbstractBlockBase<?> block) { AbstractBlockBase<?> next = null; for (AbstractBlockBase<?> succ : block.getSuccessors()) { if (!processed(succ) && (next == null || succ.probability() > next.probability())) { next = succ; } } return next; } }