src/share/vm/shark/sharkType.hpp

changeset 2047
d2ede61b7a12
child 2314
f95d63e2154a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/vm/shark/sharkType.hpp	Wed Aug 11 05:51:21 2010 -0700
     1.3 @@ -0,0 +1,112 @@
     1.4 +/*
     1.5 + * Copyright (c) 1999, 2007, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright 2008, 2009 Red Hat, Inc.
     1.7 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8 + *
     1.9 + * This code is free software; you can redistribute it and/or modify it
    1.10 + * under the terms of the GNU General Public License version 2 only, as
    1.11 + * published by the Free Software Foundation.
    1.12 + *
    1.13 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.14 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.15 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.16 + * version 2 for more details (a copy is included in the LICENSE file that
    1.17 + * accompanied this code).
    1.18 + *
    1.19 + * You should have received a copy of the GNU General Public License version
    1.20 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.21 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.22 + *
    1.23 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.24 + * or visit www.oracle.com if you need additional information or have any
    1.25 + * questions.
    1.26 + *
    1.27 + */
    1.28 +
    1.29 +class SharkType : public AllStatic {
    1.30 + private:
    1.31 +  static SharkContext& context() {
    1.32 +    return SharkContext::current();
    1.33 +  }
    1.34 +
    1.35 +  // Basic types
    1.36 + public:
    1.37 +  static const llvm::Type* void_type() {
    1.38 +    return context().void_type();
    1.39 +  }
    1.40 +  static const llvm::IntegerType* bit_type() {
    1.41 +    return context().bit_type();
    1.42 +  }
    1.43 +  static const llvm::IntegerType* jbyte_type() {
    1.44 +    return context().jbyte_type();
    1.45 +  }
    1.46 +  static const llvm::IntegerType* jshort_type() {
    1.47 +    return context().jshort_type();
    1.48 +  }
    1.49 +  static const llvm::IntegerType* jint_type() {
    1.50 +    return context().jint_type();
    1.51 +  }
    1.52 +  static const llvm::IntegerType* jlong_type() {
    1.53 +    return context().jlong_type();
    1.54 +  }
    1.55 +  static const llvm::Type* jfloat_type() {
    1.56 +    return context().jfloat_type();
    1.57 +  }
    1.58 +  static const llvm::Type* jdouble_type() {
    1.59 +    return context().jdouble_type();
    1.60 +  }
    1.61 +  static const llvm::IntegerType* intptr_type() {
    1.62 +    return context().intptr_type();
    1.63 +  }
    1.64 +
    1.65 +  // Compound types
    1.66 + public:
    1.67 +  static const llvm::PointerType* itableOffsetEntry_type() {
    1.68 +    return context().itableOffsetEntry_type();
    1.69 +  }
    1.70 +  static const llvm::PointerType* jniEnv_type() {
    1.71 +    return context().jniEnv_type();
    1.72 +  }
    1.73 +  static const llvm::PointerType* jniHandleBlock_type() {
    1.74 +    return context().jniHandleBlock_type();
    1.75 +  }
    1.76 +  static const llvm::PointerType* klass_type() {
    1.77 +    return context().klass_type();
    1.78 +  }
    1.79 +  static const llvm::PointerType* methodOop_type() {
    1.80 +    return context().methodOop_type();
    1.81 +  }
    1.82 +  static const llvm::ArrayType* monitor_type() {
    1.83 +    return context().monitor_type();
    1.84 +  }
    1.85 +  static const llvm::PointerType* oop_type() {
    1.86 +    return context().oop_type();
    1.87 +  }
    1.88 +  static const llvm::PointerType* thread_type() {
    1.89 +    return context().thread_type();
    1.90 +  }
    1.91 +  static const llvm::PointerType* zeroStack_type() {
    1.92 +    return context().zeroStack_type();
    1.93 +  }
    1.94 +  static const llvm::FunctionType* entry_point_type() {
    1.95 +    return context().entry_point_type();
    1.96 +  }
    1.97 +  static const llvm::FunctionType* osr_entry_point_type() {
    1.98 +    return context().osr_entry_point_type();
    1.99 +  }
   1.100 +
   1.101 +  // Mappings
   1.102 + public:
   1.103 +  static const llvm::Type* to_stackType(BasicType type) {
   1.104 +    return context().to_stackType(type);
   1.105 +  }
   1.106 +  static const llvm::Type* to_stackType(ciType* type) {
   1.107 +    return to_stackType(type->basic_type());
   1.108 +  }
   1.109 +  static const llvm::Type* to_arrayType(BasicType type) {
   1.110 +    return context().to_arrayType(type);
   1.111 +  }
   1.112 +  static const llvm::Type* to_arrayType(ciType* type) {
   1.113 +    return to_arrayType(type->basic_type());
   1.114 +  }
   1.115 +};

mercurial