hotspot/src/share/vm/ci/ciFlags.hpp
author stefank
Tue, 12 Apr 2016 09:53:43 +0200
changeset 37466 287c4ebd11b0
parent 22234 da823d78ad65
child 39421 a9652c919db8
permissions -rw-r--r--
8153967: Remove top.hpp Reviewed-by: coleenp, jwilhelm
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
22234
da823d78ad65 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 19770
diff changeset
     2
 * Copyright (c) 1999, 2013, 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
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "ci/ciClassList.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "prims/jvm.h"
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.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class ciFlags VALUE_OBJ_CLASS_SPEC {
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  bool is_public      () const         { return (_flags & JVM_ACC_PUBLIC      ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  bool is_private     () const         { return (_flags & JVM_ACC_PRIVATE     ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  bool is_protected   () const         { return (_flags & JVM_ACC_PROTECTED   ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  bool is_static      () const         { return (_flags & JVM_ACC_STATIC      ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  bool is_final       () const         { return (_flags & JVM_ACC_FINAL       ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  bool is_synchronized() const         { return (_flags & JVM_ACC_SYNCHRONIZED) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  bool is_super       () const         { return (_flags & JVM_ACC_SUPER       ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  bool is_volatile    () const         { return (_flags & JVM_ACC_VOLATILE    ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  bool is_transient   () const         { return (_flags & JVM_ACC_TRANSIENT   ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  bool is_native      () const         { return (_flags & JVM_ACC_NATIVE      ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  bool is_interface   () const         { return (_flags & JVM_ACC_INTERFACE   ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  bool is_abstract    () const         { return (_flags & JVM_ACC_ABSTRACT    ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  bool is_strict      () const         { return (_flags & JVM_ACC_STRICT      ) != 0; }
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 7397
diff changeset
    63
  bool is_stable      () const         { return (_flags & JVM_ACC_FIELD_STABLE) != 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // Conversion
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  jint   as_int()                      { return _flags; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  void print_klass_flags(outputStream* st = tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  void print_member_flags(outputStream* st = tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  void print(outputStream* st = tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    72
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    73
#endif // SHARE_VM_CI_CIFLAGS_HPP