view ports/hotspot/src/share/vm/shark/sharkIntrinsics.cpp @ 1757:96d1de001c8d

2009-03-13 Gary Benson <gbenson@redhat.com> * ports/hotspot/src/share/vm/shark/sharkValue.hpp (SharkValue::create_generic): Make zero_checked argument mandatory. (SharkValue::create_jint): Fixups for the above. (SharkValue::create_jlong): Likewise. (SharkValue::create_jfloat): Likewise. (SharkValue::create_jdouble): Likewise. (SharkValue::create_jobject): Likewise. (SharkValue::jint_constant): Likewise. (SharkValue::jlong_constant): Likewise. (SharkValue::null): Likewise. * ports/hotspot/src/share/vm/shark/sharkState.cpp (SharkState::merge): Likewise. (SharkState::cache_after_Java_call): Likewise. (SharkEntryState::SharkEntryState): Likewise. (SharkPHIState::SharkPHIState): Likewise. * ports/hotspot/src/share/vm/shark/sharkBlock.hpp (SharkBlock::do_ldc): Likewise. * ports/hotspot/src/share/vm/shark/sharkBlock.cpp (SharkBlock::parse_bytecode): Likewise. (SharkBlock::do_div_or_rem): Likewise. (SharkBlock::do_field_access): Likewise. (SharkBlock::do_lcmp): Likewise. (SharkBlock::do_fcmp): Likewise. * ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp (SharkTopLevelBlock::handle_exception): Likewise. (SharkTopLevelBlock::do_arraylength): Likewise. (SharkTopLevelBlock::do_aload): Likewise. (SharkTopLevelBlock::do_instance_check): Likewise. (SharkTopLevelBlock::do_new): Likewise. (SharkTopLevelBlock::do_newarray): Likewise. (SharkTopLevelBlock::do_anewarray): Likewise. (SharkTopLevelBlock::do_multianewarray): Likewise. * ports/hotspot/src/share/vm/shark/sharkCacheDecache.cpp (SharkCacher::process_stack_slot): Likewise. (SharkCacher::process_local_slot): Likewise. * ports/hotspot/src/share/vm/shark/sharkIntrinsics.cpp (SharkIntrinsics::do_Math_minmax): Likewise. (SharkIntrinsics::do_Object_getClass): Likewise. (SharkIntrinsics::do_System_currentTimeMillis): Likewise. (SharkIntrinsics::do_Thread_currentThread): Likewise. (SharkIntrinsics::do_Unsafe_compareAndSwapInt): Likewise.
author Gary Benson <gbenson@redhat.com>
date Fri, 13 Mar 2009 09:55:22 -0400
parents 1eeb14582f5a
children
line wrap: on
line source

/*
 * Copyright 1999-2007 Sun Microsystems, Inc.  All Rights Reserved.
 * Copyright 2009 Red Hat, Inc.
 * 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
 * CA 95054 USA or visit www.sun.com if you need additional information or
 * have any questions.
 *
 */

#include "incls/_precompiled.incl"
#include "incls/_sharkIntrinsics.cpp.incl"

using namespace llvm;

bool SharkIntrinsics::is_intrinsic(ciMethod *target)
{
  switch (target->intrinsic_id()) {
  case vmIntrinsics::_none:
    return false;

    // java.lang.Math
  case vmIntrinsics::_min:
  case vmIntrinsics::_max:
  case vmIntrinsics::_dabs:
  case vmIntrinsics::_dsin:
  case vmIntrinsics::_dcos:
  case vmIntrinsics::_dtan:
  case vmIntrinsics::_datan2:
  case vmIntrinsics::_dsqrt:
  case vmIntrinsics::_dlog:
  case vmIntrinsics::_dlog10:
  case vmIntrinsics::_dpow:
  case vmIntrinsics::_dexp:
    return true;

    // java.lang.Object
  case vmIntrinsics::_getClass:
    return true;

    // java.lang.System
  case vmIntrinsics::_currentTimeMillis:
    return true;

    // java.lang.Thread
  case vmIntrinsics::_currentThread:
    return true;

    // sun.misc.Unsafe
  case vmIntrinsics::_compareAndSwapInt:
    return true;

  default:
    if (SharkPerformanceWarnings) {
      warning(
        "unhandled intrinsic vmIntrinsic::%s",
        vmIntrinsics::name_at(target->intrinsic_id()));
    }
  }
  return false;
}

void SharkIntrinsics::inline_intrinsic(ciMethod*   target,
                                       SharkState* state,
                                       Value*      thread)
{
  switch (target->intrinsic_id()) {
    // java.lang.Math
  case vmIntrinsics::_min:
    do_Math_minmax(state, llvm::ICmpInst::ICMP_SLE);
    break;
  case vmIntrinsics::_max:
    do_Math_minmax(state, llvm::ICmpInst::ICMP_SGE);
    break;
  case vmIntrinsics::_dabs:
    do_Math_1to1(state, SharkRuntime::fabs());
    break;
  case vmIntrinsics::_dsin:
    do_Math_1to1(state, state->builder()->llvm_sin_fn());
    break;
  case vmIntrinsics::_dcos:
    do_Math_1to1(state, state->builder()->llvm_cos_fn());
    break;
  case vmIntrinsics::_dtan:
    do_Math_1to1(state, SharkRuntime::tan());
    break;
  case vmIntrinsics::_datan2:
    do_Math_2to1(state, SharkRuntime::atan2());
    break;
  case vmIntrinsics::_dsqrt:
    do_Math_1to1(state, state->builder()->llvm_sqrt_fn());
    break;
  case vmIntrinsics::_dlog:
    do_Math_1to1(state, state->builder()->llvm_log_fn());
    break;
  case vmIntrinsics::_dlog10:
    do_Math_1to1(state, state->builder()->llvm_log10_fn());
    break;
  case vmIntrinsics::_dpow:
    do_Math_2to1(state, state->builder()->llvm_pow_fn());
    break;
  case vmIntrinsics::_dexp:
    do_Math_1to1(state, state->builder()->llvm_exp_fn());
    break;

    // java.lang.Object
  case vmIntrinsics::_getClass:
    do_Object_getClass(state);
    break;

    // java.lang.System
  case vmIntrinsics::_currentTimeMillis:
    do_System_currentTimeMillis(state);
    break;

    // java.lang.Thread
  case vmIntrinsics::_currentThread:
    do_Thread_currentThread(state, thread);
    break;
    
    // sun.misc.Unsafe
  case vmIntrinsics::_compareAndSwapInt:
    do_Unsafe_compareAndSwapInt(state);
    break;

  default:
    ShouldNotReachHere();
  }
}

void SharkIntrinsics::do_Math_minmax(SharkState *state, ICmpInst::Predicate p)
{
  SharkBuilder *builder = state->builder();

  // Pop the arguments
  SharkValue *sb = state->pop();
  SharkValue *sa = state->pop();
  Value *a = sa->jint_value();
  Value *b = sb->jint_value();  

  // Perform the test
  BasicBlock *ip       = builder->GetBlockInsertionPoint();
  BasicBlock *return_a = builder->CreateBlock(ip, "return_a");
  BasicBlock *return_b = builder->CreateBlock(ip, "return_b");
  BasicBlock *done     = builder->CreateBlock(ip, "done");

  builder->CreateCondBr(builder->CreateICmp(p, a, b), return_a, return_b);

  builder->SetInsertPoint(return_a);
  builder->CreateBr(done);

  builder->SetInsertPoint(return_b);
  builder->CreateBr(done);

  builder->SetInsertPoint(done);
  PHINode *phi = builder->CreatePHI(a->getType(), "result");
  phi->addIncoming(a, return_a);
  phi->addIncoming(b, return_b);

  // Push the result
  state->push(
    SharkValue::create_jint(
      phi,
      sa->zero_checked() && sb->zero_checked()));
}

void SharkIntrinsics::do_Math_1to1(SharkState *state, Constant *function)
{
  SharkValue *empty = state->pop();
  assert(empty == NULL, "should be");
  state->push(
    SharkValue::create_jdouble(
      state->builder()->CreateCall(function, state->pop()->jdouble_value())));
  state->push(NULL);
}

void SharkIntrinsics::do_Math_2to1(SharkState *state, Constant *function)
{
  SharkValue *empty = state->pop();
  assert(empty == NULL, "should be");
  Value *y = state->pop()->jdouble_value();
  empty = state->pop();
  assert(empty == NULL, "should be");
  Value *x = state->pop()->jdouble_value();

  state->push(
    SharkValue::create_jdouble(state->builder()->CreateCall2(function, x, y)));
  state->push(NULL);
}

void SharkIntrinsics::do_Object_getClass(SharkState *state)
{
  SharkBuilder *builder = state->builder();

  Value *klass = builder->CreateValueOfStructEntry(
    state->pop()->jobject_value(),
    in_ByteSize(oopDesc::klass_offset_in_bytes()),
    SharkType::jobject_type(),
    "klass");

  Value *klass_part = builder->CreateAddressOfStructEntry(
    klass,
    in_ByteSize(klassOopDesc::klass_part_offset_in_bytes()),
    SharkType::klass_type(),
    "klass_part");

  state->push(
    SharkValue::create_jobject(
      builder->CreateValueOfStructEntry(
        klass_part,
        in_ByteSize(Klass::java_mirror_offset_in_bytes()),
        SharkType::oop_type(),
        "java_mirror"),
      true));
}

void SharkIntrinsics::do_System_currentTimeMillis(SharkState *state)
{
  state->push(
    SharkValue::create_jlong(
      state->builder()->CreateCall(SharkRuntime::current_time_millis()),
      false));
  state->push(NULL);
}

void SharkIntrinsics::do_Thread_currentThread(SharkState *state, Value *thread)
{
  state->push(
    SharkValue::create_jobject(
      state->builder()->CreateValueOfStructEntry(
        thread, JavaThread::threadObj_offset(),
        SharkType::jobject_type(),
        "threadObj"),
      true));
}

void SharkIntrinsics::do_Unsafe_compareAndSwapInt(SharkState *state)
{
  SharkBuilder *builder = state->builder();

  // Pop the arguments
  Value *x      = state->pop()->jint_value();
  Value *e      = state->pop()->jint_value();
  SharkValue *empty = state->pop();
  assert(empty == NULL, "should be");
  Value *offset = state->pop()->jlong_value();
  Value *object = state->pop()->jobject_value();
  Value *unsafe = state->pop()->jobject_value();

  // Convert the offset
  offset = builder->CreateCall(
    SharkRuntime::unsafe_field_offset_to_byte_offset(),
    offset);

  // Locate the field
  Value *addr = builder->CreateIntToPtr(
    builder->CreateAdd(
      builder->CreatePtrToInt(object, SharkType::intptr_type()),
      builder->CreateIntCast(offset, SharkType::intptr_type(), true)),
    PointerType::getUnqual(SharkType::jint_type()),
    "addr");

  // Perform the operation
  Value *result = builder->CreateCmpxchgInt(x, addr, e);

  // Push the result
  state->push(
    SharkValue::create_jint(
      builder->CreateIntCast(
        builder->CreateICmpEQ(result, e), SharkType::jint_type(), true),
      false));
}