/* * Copyright (c) 2011, 2011, 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.graph; import java.util.Arrays; import java.util.ConcurrentModificationException; import java.util.Iterator; import java.util.NoSuchElementException; import org.graalvm.compiler.graph.iterators.NodeIterable; public final class NodeBitMap extends NodeIdAccessor implements NodeIterable { private static final int SHIFT = 6; private long[] bits; private int nodeCount; private int counter; public NodeBitMap(Graph graph) { super(graph); this.nodeCount = graph.nodeIdCount(); this.bits = new long[sizeForNodeCount(nodeCount)]; } private static int sizeForNodeCount(int nodeCount) { return (nodeCount + Long.SIZE - 1) >> SHIFT; } public int getCounter() { return counter; } private NodeBitMap(NodeBitMap other) { super(other.graph); this.bits = other.bits.clone(); this.nodeCount = other.nodeCount; } public Graph graph() { return graph; } public boolean isNew(Node node) { return getNodeId(node) >= nodeCount; } public boolean isMarked(Node node) { assert check(node, false); return isMarked(getNodeId(node)); } public boolean checkAndMarkInc(Node node) { if (!isMarked(node)) { this.counter++; this.mark(node); return true; } else { return false; } } public boolean isMarked(int id) { return (bits[id >> SHIFT] & (1L << id)) != 0; } public boolean isMarkedAndGrow(Node node) { assert check(node, true); int id = getNodeId(node); checkGrow(id); return isMarked(id); } public void mark(Node node) { assert check(node, false); int id = getNodeId(node); bits[id >> SHIFT] |= (1L << id); } public void markAndGrow(Node node) { assert check(node, true); int id = getNodeId(node); checkGrow(id); bits[id >> SHIFT] |= (1L << id); } public void clear(Node node) { assert check(node, false); int id = getNodeId(node); bits[id >> SHIFT] &= ~(1L << id); } public void clearAndGrow(Node node) { assert check(node, true); int id = getNodeId(node); checkGrow(id); bits[id >> SHIFT] &= ~(1L << id); } private void checkGrow(int id) { if (id >= nodeCount) { if ((id >> SHIFT) >= bits.length) { grow(); } else { nodeCount = id + 1; } } } public void clearAll() { Arrays.fill(bits, 0); } public void intersect(NodeBitMap other) { assert graph() == other.graph(); int commonLength = Math.min(bits.length, other.bits.length); for (int i = commonLength; i < bits.length; i++) { bits[i] = 0; } for (int i = 0; i < commonLength; i++) { bits[i] &= other.bits[i]; } } public void subtract(NodeBitMap other) { assert graph() == other.graph(); int commonLength = Math.min(bits.length, other.bits.length); for (int i = 0; i < commonLength; i++) { bits[i] &= ~other.bits[i]; } } public void union(NodeBitMap other) { assert graph() == other.graph(); grow(); if (bits.length < other.bits.length) { bits = Arrays.copyOf(bits, other.bits.length); } for (int i = 0; i < Math.min(bits.length, other.bits.length); i++) { bits[i] |= other.bits[i]; } } public void grow() { nodeCount = Math.max(nodeCount, graph().nodeIdCount()); int newLength = sizeForNodeCount(nodeCount); if (newLength > bits.length) { newLength = Math.max(newLength, (bits.length * 3 / 2) + 1); bits = Arrays.copyOf(bits, newLength); } } private boolean check(Node node, boolean grow) { assert node.graph() == graph() : "this node is not part of the graph: " + node; assert grow || !isNew(node) : "node was added to the graph after creating the node bitmap: " + node; assert node.isAlive() : "node is deleted!" + node; return true; } public void markAll(Iterable nodes) { for (Node node : nodes) { mark(node); } } protected Node nextMarkedNode(int fromNodeId) { assert fromNodeId >= 0; int wordIndex = fromNodeId >> SHIFT; int wordsInUse = bits.length; if (wordIndex < wordsInUse) { long word = getPartOfWord(bits[wordIndex], fromNodeId); while (true) { while (word != 0) { int bitIndex = Long.numberOfTrailingZeros(word); int nodeId = wordIndex * Long.SIZE + bitIndex; Node result = graph.getNode(nodeId); if (result == null) { // node was deleted -> clear the bit and continue searching bits[wordIndex] = bits[wordIndex] & ~(1L << bitIndex); int nextNodeId = nodeId + 1; if ((nextNodeId & (Long.SIZE - 1)) == 0) { // we reached the end of this word break; } else { word = getPartOfWord(word, nextNodeId); } } else { return result; } } if (++wordIndex == wordsInUse) { break; } word = bits[wordIndex]; } } return null; } private static long getPartOfWord(long word, int firstNodeIdToInclude) { return word & (0xFFFFFFFFFFFFFFFFL << firstNodeIdToInclude); } /** * This iterator only returns nodes that are marked in the {@link NodeBitMap} and are alive in * the corresponding {@link Graph}. */ private class MarkedNodeIterator implements Iterator { private int currentNodeId; private Node currentNode; MarkedNodeIterator() { currentNodeId = -1; forward(); } private void forward() { assert currentNode == null; currentNode = NodeBitMap.this.nextMarkedNode(currentNodeId + 1); if (currentNode != null) { assert currentNode.isAlive(); currentNodeId = getNodeId(currentNode); } else { currentNodeId = -1; } } @Override public boolean hasNext() { if (currentNode == null && currentNodeId >= 0) { forward(); } return currentNodeId >= 0; } @Override public Node next() { if (!hasNext()) { throw new NoSuchElementException(); } if (!currentNode.isAlive()) { throw new ConcurrentModificationException("NodeBitMap was modified between the calls to hasNext() and next()"); } Node result = currentNode; currentNode = null; return result; } @Override public void remove() { throw new UnsupportedOperationException(); } } @Override public Iterator iterator() { return new MarkedNodeIterator(); } public NodeBitMap copy() { return new NodeBitMap(this); } @Override public int count() { int count = 0; for (long l : bits) { count += Long.bitCount(l); } return count; } @Override public boolean contains(Node node) { return isMarked(node); } @Override public String toString() { return snapshot().toString(); } }