Searched refs:FieldType (Results 1 - 21 of 21) sorted by relevance

/openjdk10/hotspot/src/share/vm/runtime/
H A DfieldType.cpp34 void FieldType::skip_optional_size(Symbol* signature, int* index) {
42 BasicType FieldType::basic_type(Symbol* signature) {
47 bool FieldType::is_valid_array_signature(Symbol* sig) {
77 BasicType FieldType::get_array_info(Symbol* signature, FieldArrayInfo& fd, TRAPS) {
H A DfieldType.hpp31 // Note: FieldType should be based on the SignatureIterator (or vice versa).
34 // A FieldType is used to determine the type of a field from a signature string.
39 friend class FieldType; // field type can set these fields.
52 class FieldType: public AllStatic { class in inherits:AllStatic
H A DorderAccess.hpp320 template<typename FieldType, ScopedFenceType FenceType>
321 static void ordered_store(volatile FieldType* p, FieldType v);
323 template<typename FieldType, ScopedFenceType FenceType>
324 static FieldType ordered_load(const volatile FieldType* p);
H A DorderAccess.inline.hpp43 template <typename FieldType, ScopedFenceType FenceType>
44 inline void OrderAccess::ordered_store(volatile FieldType* p, FieldType v) {
49 template <typename FieldType, ScopedFenceType FenceType>
50 inline FieldType OrderAccess::ordered_load(const volatile FieldType* p) {
H A DfieldDescriptor.hpp91 BasicType field_type() const { return FieldType::basic_type(signature()); }
H A Ddeoptimization.cpp982 field._type = FieldType::basic_type(fs.signature());
/openjdk10/langtools/test/tools/jdeprscan/usage/jdk/deprusage/
H A DUseEnum.java37 static class FieldType { class in class:UseEnum
H A DUseClass.java36 static class FieldType { class in class:UseClass
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DFieldType.java31 public class FieldType { class
36 public FieldType(Symbol signature) { method in class:FieldType
H A DField.java54 fieldType = new FieldType(signature);
65 private FieldType fieldType;
106 public FieldType getFieldType() { return fieldType; }
H A DInstanceKlass.java653 FieldType type = new FieldType(getFieldSignature(index));
695 FieldType type = new FieldType(getFieldSignature(index));
953 private void visitField(OopVisitor visitor, FieldType type, int index) {
995 FieldType type = new FieldType(getFieldSignature(index));
/openjdk10/jdk/test/java/io/Serializable/subclass/
H A DXObjectOutputStream.java119 Class FieldType = fields[i].getType();
120 if (FieldType.isPrimitive()) {
122 " has primitive type " + FieldType.toString());
125 " is an Object of type " + FieldType.toString());
128 if (FieldType.isArray()) {
130 Class componentType = FieldType.getComponentType();
/openjdk10/hotspot/src/share/vm/classfile/
H A DsystemDictionary.cpp242 if (FieldType::is_array(class_name)) {
244 } else if (FieldType::is_obj(class_name)) {
265 assert(FieldType::is_array(class_name), "must be array");
270 BasicType t = FieldType::get_array_info(class_name, fd, CHECK_NULL);
650 assert(name != NULL && !FieldType::is_array(name) &&
651 !FieldType::is_obj(name), "invalid class name");
971 if (FieldType::is_array(class_name)) {
976 BasicType t = FieldType::get_array_info(class_name, fd, CHECK_(NULL));
2327 if (FieldType::is_array(class_name)) {
2331 BasicType t = FieldType
[all...]
H A DclassFileParser.cpp1644 const BasicType type = FieldType::basic_type(injected[n].signature());
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaInstanceKlass.java254 FieldType fd = fld.getFieldType();
282 FieldType fd = fld.getFieldType();
/openjdk10/hotspot/src/share/vm/ci/
H A DciField.cpp89 BasicType field_type = FieldType::basic_type(signature);
H A DciObjectFactory.cpp519 BasicType element_type = FieldType::get_array_info(name->get_symbol(),
/openjdk10/hotspot/src/share/vm/prims/
H A DjniCheck.cpp1184 #define WRAPPER_GetField(ReturnType,Result,FieldType) \
1191 checkInstanceFieldID(thr, fieldID, obj, FieldType); \
1208 #define WRAPPER_SetField(ValueType,Result,FieldType) \
1216 checkInstanceFieldID(thr, fieldID, obj, FieldType); \
1380 #define WRAPPER_GetStaticField(ReturnType,Result,FieldType) \
1388 checkStaticFieldID(thr, fieldID, clazz, FieldType); \
1407 #define WRAPPER_SetStaticField(ValueType,Result,FieldType) \
1416 checkStaticFieldID(thr, fieldID, clazz, FieldType); \
H A DmethodHandles.cpp616 BasicType bt = FieldType::basic_type(s);
/openjdk10/hotspot/src/share/vm/jvmci/
H A DjvmciCompilerToVM.cpp803 } else if (FieldType::is_array(class_name)) {
807 BasicType t = FieldType::get_array_info(class_name, fd, CHECK_0);
/openjdk10/hotspot/src/share/vm/oops/
H A DconstantPool.cpp703 return FieldType::basic_type(symbol_at(which));

Completed in 298 milliseconds