src/hotspot/share/ci/ciFlags.hpp
author coleenp
Fri, 09 Mar 2018 20:01:38 -0500
changeset 49373 47b5652f2928
parent 47765 b7c7428eaab9
child 49621 5ef28d560b6f
permissions -rw-r--r--
8199283: Remove ValueObj class for allocation subclassing for compiler code Reviewed-by: stefank, tschatzl
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49373
47b5652f2928 8199283: Remove ValueObj class for allocation subclassing for compiler code
coleenp
parents: 47765
diff changeset
     2
 * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_CI_CIFLAGS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_CI_CIFLAGS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47216
diff changeset
    28
#include "jvm.h"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "ci/ciClassList.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "utilities/accessFlags.hpp"
37466
287c4ebd11b0 8153967: Remove top.hpp
stefank
parents: 22234
diff changeset
    32
#include "utilities/ostream.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// ciFlags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// This class represents klass or method flags.
49373
47b5652f2928 8199283: Remove ValueObj class for allocation subclassing for compiler code
coleenp
parents: 47765
diff changeset
    37
class ciFlags {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  friend class ciInstanceKlass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  friend class ciField;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  friend class ciMethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  jint _flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  ciFlags()                  { _flags = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  ciFlags(AccessFlags flags) { _flags = flags.as_int(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // Java access flags
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    50
  bool is_public               () const { return (_flags & JVM_ACC_PUBLIC                    ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    51
  bool is_private              () const { return (_flags & JVM_ACC_PRIVATE                   ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    52
  bool is_protected            () const { return (_flags & JVM_ACC_PROTECTED                 ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    53
  bool is_static               () const { return (_flags & JVM_ACC_STATIC                    ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    54
  bool is_final                () const { return (_flags & JVM_ACC_FINAL                     ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    55
  bool is_synchronized         () const { return (_flags & JVM_ACC_SYNCHRONIZED              ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    56
  bool is_super                () const { return (_flags & JVM_ACC_SUPER                     ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    57
  bool is_volatile             () const { return (_flags & JVM_ACC_VOLATILE                  ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    58
  bool is_transient            () const { return (_flags & JVM_ACC_TRANSIENT                 ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    59
  bool is_native               () const { return (_flags & JVM_ACC_NATIVE                    ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    60
  bool is_interface            () const { return (_flags & JVM_ACC_INTERFACE                 ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    61
  bool is_abstract             () const { return (_flags & JVM_ACC_ABSTRACT                  ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    62
  bool is_strict               () const { return (_flags & JVM_ACC_STRICT                    ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    63
  bool is_stable               () const { return (_flags & JVM_ACC_FIELD_STABLE              ) != 0; }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    64
  // In case the current object represents a field, return true if
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    65
  // the field is modified outside of instance initializer methods
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    66
  // (or class/initializer methods if the field is static) and false
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    67
  // otherwise.
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    68
  bool has_initialized_final_update() const { return (_flags & JVM_ACC_FIELD_INITIALIZED_FINAL_UPDATE) != 0; };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // Conversion
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  jint   as_int()                      { return _flags; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  void print_klass_flags(outputStream* st = tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  void print_member_flags(outputStream* st = tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  void print(outputStream* st = tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    77
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    78
#endif // SHARE_VM_CI_CIFLAGS_HPP