< prev index next >

src/share/vm/opto/chaitin.cpp

Print this page


   1 /*
   2  * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   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  *


 830           //         RegL  RegI  RegFlags   RegF RegD    INTPRESSURE  FLOATPRESSURE
 831           // IA32     2     1     1          1    1          6           6
 832           // IA64     1     1     1          1    1         50          41
 833           // SPARC    2     2     2          2    2         48 (24)     52 (26)
 834           // SPARCV9  2     2     2          2    2         48 (24)     52 (26)
 835           // AMD64    1     1     1          1    1         14          15
 836           // -----------------------------------------------------
 837 #if defined(SPARC)
 838           lrg.set_reg_pressure(2);  // use for v9 as well
 839 #else
 840           lrg.set_reg_pressure(1);  // normally one value per register
 841 #endif
 842           if( n_type->isa_oop_ptr() ) {
 843             lrg._is_oop = 1;
 844           }
 845           break;
 846         case Op_RegL:           // Check for long or double
 847         case Op_RegD:
 848           lrg.set_num_regs(2);
 849           // Define platform specific register pressure
 850 #if defined(SPARC) || defined(ARM)
 851           lrg.set_reg_pressure(2);
 852 #elif defined(IA32)
 853           if( ireg == Op_RegL ) {
 854             lrg.set_reg_pressure(2);
 855           } else {
 856             lrg.set_reg_pressure(1);
 857           }
 858 #else
 859           lrg.set_reg_pressure(1);  // normally one value per register
 860 #endif
 861           // If this def of a double forces a mis-aligned double,
 862           // flag as '_fat_proj' - really flag as allowing misalignment
 863           // AND changes how we count interferences.  A mis-aligned
 864           // double can interfere with TWO aligned pairs, or effectively
 865           // FOUR registers!
 866           if (rm.is_misaligned_pair()) {
 867             lrg._fat_proj = 1;
 868             lrg._is_bound = 1;
 869           }
 870           break;


   1 /*
   2  * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   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  *


 830           //         RegL  RegI  RegFlags   RegF RegD    INTPRESSURE  FLOATPRESSURE
 831           // IA32     2     1     1          1    1          6           6
 832           // IA64     1     1     1          1    1         50          41
 833           // SPARC    2     2     2          2    2         48 (24)     52 (26)
 834           // SPARCV9  2     2     2          2    2         48 (24)     52 (26)
 835           // AMD64    1     1     1          1    1         14          15
 836           // -----------------------------------------------------
 837 #if defined(SPARC)
 838           lrg.set_reg_pressure(2);  // use for v9 as well
 839 #else
 840           lrg.set_reg_pressure(1);  // normally one value per register
 841 #endif
 842           if( n_type->isa_oop_ptr() ) {
 843             lrg._is_oop = 1;
 844           }
 845           break;
 846         case Op_RegL:           // Check for long or double
 847         case Op_RegD:
 848           lrg.set_num_regs(2);
 849           // Define platform specific register pressure
 850 #if defined(SPARC) || defined(ARM32)
 851           lrg.set_reg_pressure(2);
 852 #elif defined(IA32)
 853           if( ireg == Op_RegL ) {
 854             lrg.set_reg_pressure(2);
 855           } else {
 856             lrg.set_reg_pressure(1);
 857           }
 858 #else
 859           lrg.set_reg_pressure(1);  // normally one value per register
 860 #endif
 861           // If this def of a double forces a mis-aligned double,
 862           // flag as '_fat_proj' - really flag as allowing misalignment
 863           // AND changes how we count interferences.  A mis-aligned
 864           // double can interfere with TWO aligned pairs, or effectively
 865           // FOUR registers!
 866           if (rm.is_misaligned_pair()) {
 867             lrg._fat_proj = 1;
 868             lrg._is_bound = 1;
 869           }
 870           break;


< prev index next >