You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also the Preload attribute has the following format:
Preload_attribute {
u2 attribute_name_index;
u4 attribute_length;
u2 number_of_classes;
u2 classes[number_of_classes];
}
The LoadableDescriptors attribute has the following format:
LoadableDescriptors_attribute {
u2 attribute_name_index;
u4 attribute_length;
u2 number_of_descriptors;
u2 descriptors[number_of_descriptors];
}
Each entry in the descriptors array must be a valid index into the constant_pool table. The constant_pool entry at that index must be a CONSTANT_Utf8_info structure representing a valid field descriptor.
Instead of CONSTANT_Class_info used in Preload, LoadableDescriptors uses field descriptor.
The text was updated successfully, but these errors were encountered:
See the latest spec;
The Preload attribute (eclipse-openj9/openj9#17233) is now renamed to LoadableDescriptors.
Also the Preload attribute has the following format:
Preload_attribute {
u2 attribute_name_index;
u4 attribute_length;
u2 number_of_classes;
u2 classes[number_of_classes];
}
The LoadableDescriptors attribute has the following format:
LoadableDescriptors_attribute {
u2 attribute_name_index;
u4 attribute_length;
u2 number_of_descriptors;
u2 descriptors[number_of_descriptors];
}
Each entry in the descriptors array must be a valid index into the constant_pool table. The constant_pool entry at that index must be a CONSTANT_Utf8_info structure representing a valid field descriptor.
Instead of CONSTANT_Class_info used in Preload, LoadableDescriptors uses field descriptor.
The text was updated successfully, but these errors were encountered: