< prev index next >

src/hotspot/share/ci/ciArray.cpp

Print this page




  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 #include "precompiled.hpp"
  26 #include "ci/ciArray.hpp"
  27 #include "ci/ciArrayKlass.hpp"
  28 #include "ci/ciConstant.hpp"
  29 #include "ci/ciKlass.hpp"
  30 #include "ci/ciUtilities.hpp"
  31 #include "oops/objArrayOop.inline.hpp"
  32 #include "oops/oop.inline.hpp"
  33 #include "oops/typeArrayOop.inline.hpp"
  34 
  35 // ciArray
  36 //
  37 // This class represents an arrayOop in the HotSpot virtual
  38 // machine.
  39 static BasicType fixup_element_type(BasicType bt) {
  40   if (bt == T_ARRAY)    return T_OBJECT;
  41   if (bt == T_BOOLEAN)  return T_BYTE;
  42   return bt;
  43 }
  44 
  45 ciConstant ciArray::element_value_impl(BasicType elembt,
  46                                        arrayOop ary,
  47                                        int index) {
  48   if (ary == NULL)
  49     return ciConstant();
  50   assert(ary->is_array(), "");




  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 #include "precompiled.hpp"
  26 #include "ci/ciArray.hpp"
  27 #include "ci/ciArrayKlass.hpp"
  28 #include "ci/ciConstant.hpp"
  29 #include "ci/ciKlass.hpp"
  30 #include "ci/ciUtilities.inline.hpp"
  31 #include "oops/objArrayOop.inline.hpp"
  32 #include "oops/oop.inline.hpp"
  33 #include "oops/typeArrayOop.inline.hpp"
  34 
  35 // ciArray
  36 //
  37 // This class represents an arrayOop in the HotSpot virtual
  38 // machine.
  39 static BasicType fixup_element_type(BasicType bt) {
  40   if (bt == T_ARRAY)    return T_OBJECT;
  41   if (bt == T_BOOLEAN)  return T_BYTE;
  42   return bt;
  43 }
  44 
  45 ciConstant ciArray::element_value_impl(BasicType elembt,
  46                                        arrayOop ary,
  47                                        int index) {
  48   if (ary == NULL)
  49     return ciConstant();
  50   assert(ary->is_array(), "");


< prev index next >