# HG changeset patch # User Josef Eisl # Date 1437728117 -7200 # Node ID be74f2362eb65e0c90045dec22eedb575fbd1ac6 # Parent bfa79679dc41cab424d0add89297ff046d0fd8d6 Rename c.o.g.lir.utils -> c.o.g.lir.util. diff -r bfa79679dc41 -r be74f2362eb6 graal/com.oracle.graal.lir.test/src/com/oracle/graal/lir/test/GenericValueMapTest.java --- a/graal/com.oracle.graal.lir.test/src/com/oracle/graal/lir/test/GenericValueMapTest.java Fri Jul 24 10:53:27 2015 +0200 +++ b/graal/com.oracle.graal.lir.test/src/com/oracle/graal/lir/test/GenericValueMapTest.java Fri Jul 24 10:55:17 2015 +0200 @@ -30,7 +30,7 @@ import org.junit.*; import com.oracle.graal.lir.*; -import com.oracle.graal.lir.utils.*; +import com.oracle.graal.lir.util.*; public class GenericValueMapTest { diff -r bfa79679dc41 -r be74f2362eb6 graal/com.oracle.graal.lir/src/com/oracle/graal/lir/util/GenericValueMap.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/util/GenericValueMap.java Fri Jul 24 10:55:17 2015 +0200 @@ -0,0 +1,54 @@ +/* + * Copyright (c) 2015, 2015, 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 com.oracle.graal.lir.util; + +import java.util.*; + +import jdk.internal.jvmci.meta.*; + +import com.oracle.graal.compiler.common.*; + +public final class GenericValueMap extends ValueMap { + + private final Map data; + + public GenericValueMap() { + data = CollectionsFactory.newMap(); + } + + @Override + public T get(Value value) { + return data.get(value); + } + + @Override + public void remove(Value value) { + data.remove(value); + } + + @Override + public void put(Value value, T object) { + data.put(value, object); + } + +} diff -r bfa79679dc41 -r be74f2362eb6 graal/com.oracle.graal.lir/src/com/oracle/graal/lir/util/ValueMap.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/util/ValueMap.java Fri Jul 24 10:55:17 2015 +0200 @@ -0,0 +1,46 @@ +/* + * Copyright (c) 2015, 2015, 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 com.oracle.graal.lir.util; + +import jdk.internal.jvmci.meta.*; + +/** + * A map interface to map {@link Value}s to other objects. + */ +public abstract class ValueMap { + + /** + * Gets the object associated with {@code value} or {@code null} if there is no such mapping. + */ + public abstract T get(K value); + + /** + * Removes the object associated with {@code value} from the map. + */ + public abstract void remove(K value); + + /** + * Associates {@code object} with {@code value}. + */ + public abstract void put(K value, T object); +} diff -r bfa79679dc41 -r be74f2362eb6 graal/com.oracle.graal.lir/src/com/oracle/graal/lir/utils/GenericValueMap.java --- a/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/utils/GenericValueMap.java Fri Jul 24 10:53:27 2015 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,54 +0,0 @@ -/* - * Copyright (c) 2015, 2015, 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 com.oracle.graal.lir.utils; - -import java.util.*; - -import jdk.internal.jvmci.meta.*; - -import com.oracle.graal.compiler.common.*; - -public final class GenericValueMap extends ValueMap { - - private final Map data; - - public GenericValueMap() { - data = CollectionsFactory.newMap(); - } - - @Override - public T get(Value value) { - return data.get(value); - } - - @Override - public void remove(Value value) { - data.remove(value); - } - - @Override - public void put(Value value, T object) { - data.put(value, object); - } - -} diff -r bfa79679dc41 -r be74f2362eb6 graal/com.oracle.graal.lir/src/com/oracle/graal/lir/utils/ValueMap.java --- a/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/utils/ValueMap.java Fri Jul 24 10:53:27 2015 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -/* - * Copyright (c) 2015, 2015, 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 com.oracle.graal.lir.utils; - -import jdk.internal.jvmci.meta.*; - -/** - * A map interface to map {@link Value}s to other objects. - */ -public abstract class ValueMap { - - /** - * Gets the object associated with {@code value} or {@code null} if there is no such mapping. - */ - public abstract T get(K value); - - /** - * Removes the object associated with {@code value} from the map. - */ - public abstract void remove(K value); - - /** - * Associates {@code object} with {@code value}. - */ - public abstract void put(K value, T object); -}