hotspot/src/share/vm/ci/ciInstanceKlass.hpp
changeset 46329 53ccc37bda19
parent 41669 2091069b6851
child 46458 3c12af929e7d
equal deleted inserted replaced
46328:6061df52d610 46329:53ccc37bda19
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    75 
    75 
    76   void compute_injected_fields();
    76   void compute_injected_fields();
    77   bool compute_injected_fields_helper();
    77   bool compute_injected_fields_helper();
    78 
    78 
    79 protected:
    79 protected:
    80   ciInstanceKlass(KlassHandle h_k);
    80   ciInstanceKlass(Klass* k);
    81   ciInstanceKlass(ciSymbol* name, jobject loader, jobject protection_domain);
    81   ciInstanceKlass(ciSymbol* name, jobject loader, jobject protection_domain);
    82 
    82 
    83   InstanceKlass* get_instanceKlass() const {
    83   InstanceKlass* get_instanceKlass() const {
    84     return InstanceKlass::cast(get_Klass());
    84     return InstanceKlass::cast(get_Klass());
    85   }
    85   }