< prev index next >

test/compiler/jvmci/errors/TestInvalidOopMap.java

Print this page




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @requires vm.jvmci
  27  * @modules jdk.internal.vm.ci/jdk.vm.ci.hotspot
  28  *          jdk.internal.vm.ci/jdk.vm.ci.code
  29  *          jdk.internal.vm.ci/jdk.vm.ci.code.site
  30  *          jdk.internal.vm.ci/jdk.vm.ci.meta
  31  *          jdk.internal.vm.ci/jdk.vm.ci.runtime
  32  *          jdk.internal.vm.ci/jdk.vm.ci.common
  33  * @compile CodeInstallerTest.java
  34  * @run junit/othervm -da:jdk.vm.ci... -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI compiler.jvmci.errors.TestInvalidOopMap

  35  */
  36 
  37 package compiler.jvmci.errors;
  38 
  39 import jdk.vm.ci.code.BytecodePosition;
  40 import jdk.vm.ci.code.DebugInfo;
  41 import jdk.vm.ci.code.Location;
  42 import jdk.vm.ci.code.ReferenceMap;
  43 import jdk.vm.ci.code.Register;
  44 import jdk.vm.ci.code.StackSlot;
  45 import jdk.vm.ci.code.site.DataPatch;
  46 import jdk.vm.ci.code.site.Infopoint;
  47 import jdk.vm.ci.code.site.InfopointReason;
  48 import jdk.vm.ci.code.site.Site;
  49 import jdk.vm.ci.common.JVMCIError;
  50 import jdk.vm.ci.hotspot.HotSpotCompiledCode.Comment;
  51 import jdk.vm.ci.hotspot.HotSpotReferenceMap;
  52 import jdk.vm.ci.meta.Assumptions.Assumption;
  53 import jdk.vm.ci.meta.JavaKind;
  54 import jdk.vm.ci.meta.PlatformKind;




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @requires vm.jvmci
  27  * @modules jdk.internal.vm.ci/jdk.vm.ci.hotspot
  28  *          jdk.internal.vm.ci/jdk.vm.ci.code
  29  *          jdk.internal.vm.ci/jdk.vm.ci.code.site
  30  *          jdk.internal.vm.ci/jdk.vm.ci.meta
  31  *          jdk.internal.vm.ci/jdk.vm.ci.runtime
  32  *          jdk.internal.vm.ci/jdk.vm.ci.common
  33  * @compile CodeInstallerTest.java
  34  * @run junit/othervm -da:jdk.vm.ci... -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
  35  *             -Djvmci.Compiler=null compiler.jvmci.errors.TestInvalidOopMap
  36  */
  37 
  38 package compiler.jvmci.errors;
  39 
  40 import jdk.vm.ci.code.BytecodePosition;
  41 import jdk.vm.ci.code.DebugInfo;
  42 import jdk.vm.ci.code.Location;
  43 import jdk.vm.ci.code.ReferenceMap;
  44 import jdk.vm.ci.code.Register;
  45 import jdk.vm.ci.code.StackSlot;
  46 import jdk.vm.ci.code.site.DataPatch;
  47 import jdk.vm.ci.code.site.Infopoint;
  48 import jdk.vm.ci.code.site.InfopointReason;
  49 import jdk.vm.ci.code.site.Site;
  50 import jdk.vm.ci.common.JVMCIError;
  51 import jdk.vm.ci.hotspot.HotSpotCompiledCode.Comment;
  52 import jdk.vm.ci.hotspot.HotSpotReferenceMap;
  53 import jdk.vm.ci.meta.Assumptions.Assumption;
  54 import jdk.vm.ci.meta.JavaKind;
  55 import jdk.vm.ci.meta.PlatformKind;


< prev index next >