< prev index next >

test/compiler/intrinsics/bmi/Expr.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke


   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  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 /**
  26  * Expression that should be replaced by particular instrinsic
  27  * or intruction during compilation.
  28  */
  29 
  30 public abstract class Expr {
  31 
  32     public static class MemI {
  33         public MemI(int i) {
  34             this.value = i;
  35         }
  36 
  37         public int value;
  38     }
  39 
  40     public static class MemL {
  41         public MemL(long l) {
  42             this.value = l;
  43         }
  44 
  45         public long value;
  46     }
  47 
  48     public boolean isUnaryArgumentSupported() {
  49         return false;




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  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 package compiler.intrinsics.bmi;
  26 
  27 /**
  28  * Expression that should be replaced by particular instrinsic
  29  * or intruction during compilation.
  30  */

  31 public abstract class Expr {
  32 
  33     public static class MemI {
  34         public MemI(int i) {
  35             this.value = i;
  36         }
  37 
  38         public int value;
  39     }
  40 
  41     public static class MemL {
  42         public MemL(long l) {
  43             this.value = l;
  44         }
  45 
  46         public long value;
  47     }
  48 
  49     public boolean isUnaryArgumentSupported() {
  50         return false;


< prev index next >