view graal/com.oracle.graal.compiler.hsail.test/src/com/oracle/graal/compiler/hsail/test/IntLongConvertTest.java @ 15032:c9bf91560c82

BciBlock: make entryState abstract.
author Josef Eisl <josef.eisl@jku.at>
date Mon, 07 Apr 2014 20:19:01 +0200
parents 64dcb92ee75a
children
line wrap: on
line source

/*
 * Copyright (c) 2009, 2013, 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.compiler.hsail.test;

import java.util.*;

import org.junit.*;

import com.oracle.graal.compiler.hsail.test.infra.*;

/**
 * Tests integer to long conversion.
 */
public class IntLongConvertTest extends GraalKernelTester {

    static final int size = 128;
    static final int[] inputInt = new int[size];
    static final long[] inputLong = new long[size];
    @Result static final int[] outputInt = new int[size];
    @Result static final long[] outputLong = new long[size];
    static int[] seedInt = new int[size];
    {
        for (int i = 0; i < seedInt.length; i++) {
            seedInt[i] = (int) Math.random();
        }
    }
    static long[] seedLong = new long[size];
    {
        for (int i = 0; i < seedLong.length; i++) {
            seedLong[i] = (long) Math.random();
        }
    }

    public static void run(int[] inInt, long[] inLong, int[] outInt, long[] outLong, int gid) {
        outInt[gid] = (int) inLong[gid];
        outLong[gid] = inInt[gid];
    }

    @Override
    public void runTest() {
        System.arraycopy(seedLong, 0, inputLong, 0, seedLong.length);
        Arrays.fill(outputLong, 0);
        System.arraycopy(seedInt, 0, inputInt, 0, seedInt.length);
        Arrays.fill(outputInt, 0);
        dispatchMethodKernel(64, inputInt, inputLong, outputInt, outputLong);
    }

    @Test
    public void test() {
        testGeneratedHsail();
    }
}