src/share/vm/shark/sharkType.hpp

changeset 0
f90c822e73f8
child 6876
710a3c8b516e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/vm/shark/sharkType.hpp	Wed Apr 27 01:25:04 2016 +0800
     1.3 @@ -0,0 +1,126 @@
     1.4 +/*
     1.5 + * Copyright (c) 1999, 2012, 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 +#ifndef SHARE_VM_SHARK_SHARKTYPE_HPP
    1.30 +#define SHARE_VM_SHARK_SHARKTYPE_HPP
    1.31 +
    1.32 +#include "ci/ciType.hpp"
    1.33 +#include "memory/allocation.hpp"
    1.34 +#include "shark/llvmHeaders.hpp"
    1.35 +#include "shark/sharkContext.hpp"
    1.36 +#include "utilities/globalDefinitions.hpp"
    1.37 +
    1.38 +class SharkType : public AllStatic {
    1.39 + private:
    1.40 +  static SharkContext& context() {
    1.41 +    return SharkContext::current();
    1.42 +  }
    1.43 +
    1.44 +  // Basic types
    1.45 + public:
    1.46 +  static llvm::Type* void_type() {
    1.47 +    return context().void_type();
    1.48 +  }
    1.49 +  static llvm::IntegerType* bit_type() {
    1.50 +    return context().bit_type();
    1.51 +  }
    1.52 +  static llvm::IntegerType* jbyte_type() {
    1.53 +    return context().jbyte_type();
    1.54 +  }
    1.55 +  static llvm::IntegerType* jshort_type() {
    1.56 +    return context().jshort_type();
    1.57 +  }
    1.58 +  static llvm::IntegerType* jint_type() {
    1.59 +    return context().jint_type();
    1.60 +  }
    1.61 +  static llvm::IntegerType* jlong_type() {
    1.62 +    return context().jlong_type();
    1.63 +  }
    1.64 +  static llvm::Type* jfloat_type() {
    1.65 +    return context().jfloat_type();
    1.66 +  }
    1.67 +  static llvm::Type* jdouble_type() {
    1.68 +    return context().jdouble_type();
    1.69 +  }
    1.70 +  static llvm::IntegerType* intptr_type() {
    1.71 +    return context().intptr_type();
    1.72 +  }
    1.73 +
    1.74 +  // Compound types
    1.75 + public:
    1.76 +  static llvm::PointerType* itableOffsetEntry_type() {
    1.77 +    return context().itableOffsetEntry_type();
    1.78 +  }
    1.79 +  static llvm::PointerType* jniEnv_type() {
    1.80 +    return context().jniEnv_type();
    1.81 +  }
    1.82 +  static llvm::PointerType* jniHandleBlock_type() {
    1.83 +    return context().jniHandleBlock_type();
    1.84 +  }
    1.85 +  static llvm::PointerType* Metadata_type() {
    1.86 +    return context().Metadata_type();
    1.87 +  }
    1.88 +  static llvm::PointerType* klass_type() {
    1.89 +    return context().klass_type();
    1.90 +  }
    1.91 +  static llvm::PointerType* Method_type() {
    1.92 +    return context().Method_type();
    1.93 +  }
    1.94 +  static llvm::ArrayType* monitor_type() {
    1.95 +    return context().monitor_type();
    1.96 +  }
    1.97 +  static llvm::PointerType* oop_type() {
    1.98 +    return context().oop_type();
    1.99 +  }
   1.100 +  static llvm::PointerType* thread_type() {
   1.101 +    return context().thread_type();
   1.102 +  }
   1.103 +  static llvm::PointerType* zeroStack_type() {
   1.104 +    return context().zeroStack_type();
   1.105 +  }
   1.106 +  static llvm::FunctionType* entry_point_type() {
   1.107 +    return context().entry_point_type();
   1.108 +  }
   1.109 +  static llvm::FunctionType* osr_entry_point_type() {
   1.110 +    return context().osr_entry_point_type();
   1.111 +  }
   1.112 +
   1.113 +  // Mappings
   1.114 + public:
   1.115 +  static llvm::Type* to_stackType(BasicType type) {
   1.116 +    return context().to_stackType(type);
   1.117 +  }
   1.118 +  static llvm::Type* to_stackType(ciType* type) {
   1.119 +    return to_stackType(type->basic_type());
   1.120 +  }
   1.121 +  static llvm::Type* to_arrayType(BasicType type) {
   1.122 +    return context().to_arrayType(type);
   1.123 +  }
   1.124 +  static llvm::Type* to_arrayType(ciType* type) {
   1.125 +    return to_arrayType(type->basic_type());
   1.126 +  }
   1.127 +};
   1.128 +
   1.129 +#endif // SHARE_VM_SHARK_SHARKTYPE_HPP

mercurial