Skip to content

Commit

Permalink
jvmci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rwestrel committed Dec 12, 2023
1 parent 4e57a4b commit 9d5191e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ static final class VMState {
new VirtualCallTypeData(this, config.dataLayoutVirtualCallTypeDataTag),
new UnknownProfileData(this, config.dataLayoutParametersTypeDataTag),
new UnknownProfileData(this, config.dataLayoutSpeculativeTrapDataTag),
new UnknownProfileData(this, config.dataLayoutArrayLoadStoreDataTag),
new UnknownProfileData(this, config.dataLayoutArrayLoadDataTag),
new UnknownProfileData(this, config.dataLayoutArrayStoreDataTag),
new UnknownProfileData(this, config.dataLayoutACmpDataTag),
};
// @formatter:on
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,8 @@ final int baseVtableLength() {
final int dataLayoutVirtualCallTypeDataTag = getConstant("DataLayout::virtual_call_type_data_tag", Integer.class);
final int dataLayoutParametersTypeDataTag = getConstant("DataLayout::parameters_type_data_tag", Integer.class);
final int dataLayoutSpeculativeTrapDataTag = getConstant("DataLayout::speculative_trap_data_tag", Integer.class);
final int dataLayoutArrayLoadStoreDataTag = getConstant("DataLayout::array_load_store_data_tag", Integer.class);
final int dataLayoutArrayLoadDataTag = getConstant("DataLayout::array_load_data_tag", Integer.class);
final int dataLayoutArrayStoreDataTag = getConstant("DataLayout::array_store_data_tag", Integer.class);
final int dataLayoutACmpDataTag = getConstant("DataLayout::acmp_data_tag", Integer.class);

final int bciProfileWidth = getFlag("BciProfileWidth", Integer.class);
Expand Down

0 comments on commit 9d5191e

Please sign in to comment.