blob: e969de5478adc56760dca2eaf5ee98a0845b99a7 [file] [log] [blame]
/*
* Copyright (c) 2018, 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.lir.alloc.trace;
import org.graalvm.compiler.core.common.alloc.Trace;
import org.graalvm.compiler.core.common.cfg.AbstractBlockBase;
/**
* A collection of assertions that are assumed to hold in various places of the Trace Register
* Allocation framework.
*
* The main goal is to document pieces of code that rely on specific properties of traces. In case
* an assumption is no longer valid, this makes it easy (assumed they are used correctly) to find
* places that need changes.
*/
final class TraceAssertions {
/**
* Asserts that variable indices are properly sorted.
*/
public static boolean liveSetsAreSorted(GlobalLivenessInfo livenessInfo, AbstractBlockBase<?> block) {
return isSorted(livenessInfo.getBlockIn(block)) && isSorted(livenessInfo.getBlockOut(block));
}
private static boolean isSorted(int[] live) {
if (live.length == 0) {
return true;
}
int current = live[0];
for (int i = 1; i < live.length; i++) {
int last = current;
current = live[i];
if (current <= last) {
return false;
}
}
return true;
}
/**
* Asserts that a trace head has only a single predecessor.
*
* This is not true for every trace-building algorithm (for example
* {@link TraceBuilderPhase.TraceBuilder#SingleBlock}).
*/
public static boolean singleHeadPredecessor(Trace trace) {
return trace.getBlocks()[0].getPredecessorCount() == 1;
}
}