/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
#include "precompiled.hpp"
#include "ci/ciConstant.hpp"
#include "ci/ciField.hpp"
#include "ci/ciInstance.hpp"
#include "ci/ciInstanceKlass.hpp"
#include "ci/ciUtilities.hpp"
#include "classfile/systemDictionary.hpp"
#include "oops/oop.inline.hpp"
// ciInstance
//
// This class represents an instanceOop in the HotSpot virtual
// machine.
// ------------------------------------------------------------------
// ciObject::java_mirror_type
// Return NULL if it is not java.lang.Class.
return NULL;
}
// Return either a primitive type or a klass.
if (java_lang_Class::is_primitive(m)) {
} else {
}
}
// ------------------------------------------------------------------
// ciInstance::field_value
//
// Constant value of a field.
"invalid access");
switch(field_btype) {
case T_BYTE:
break;
case T_CHAR:
break;
case T_SHORT:
break;
case T_BOOLEAN:
break;
case T_INT:
break;
case T_FLOAT:
break;
case T_DOUBLE:
break;
case T_LONG:
break;
case T_OBJECT:
case T_ARRAY:
{
// A field will be "constant" if it is known always to be
// a non-null reference to an instance of a particular class,
// or to a particular array. This can happen even if the instance
// or array is not perm. In such a case, an "unloaded" ciArray
// or ciInstance is created. The compiler may be able to use
// information about the object's class (which is exact) or length.
if (o == NULL) {
} else {
}
}
}
// to shut up the compiler
return ciConstant();
}
// ------------------------------------------------------------------
// ciInstance::field_value_by_offset
//
// Constant value of a field at the specified offset.
return field_value(field);
}
// ------------------------------------------------------------------
// ciInstance::print_impl
//
// Implementation of the print method.
}
}