< prev index next >

src/hotspot/cpu/s390/interp_masm_s390.cpp

Print this page

1805         Address mdo_arg_addr(mdp, in_bytes(TypeEntriesAtCall::argument_type_offset(i))-off_to_args);
1806         profile_obj_type(tmp, mdo_arg_addr, tmp, /*ltg did compare to 0*/ true);
1807 
1808         int to_add = in_bytes(TypeStackSlotEntries::per_arg_size());
1809         add2reg(mdp, to_add);
1810         off_to_args += to_add;
1811       }
1812 
1813       if (MethodData::profile_return()) {
1814         z_lg(tmp, in_bytes(TypeEntriesAtCall::cell_count_offset())-off_to_args, mdp);
1815         add2reg(tmp, -TypeProfileArgsLimit*TypeStackSlotEntries::per_arg_count());
1816       }
1817 
1818       bind(done);
1819 
1820       if (MethodData::profile_return()) {
1821         // We're right after the type profile for the last
1822         // argument. Tmp is the number of cells left in the
1823         // CallTypeData/VirtualCallTypeData to reach its end. Non null
1824         // if there's a return to profile.
1825         assert(ReturnTypeEntry::static_cell_count() < TypeStackSlotEntries::per_arg_count(), "can't move past ret type");
1826         z_sllg(tmp, tmp, exact_log2(DataLayout::cell_size));
1827         z_agr(mdp, tmp);
1828       }
1829       z_stg(mdp, _z_ijava_state_neg(mdx), Z_fp);
1830     } else {
1831       assert(MethodData::profile_return(), "either profile call args or call ret");
1832       update_mdp_by_constant(mdp, in_bytes(TypeEntriesAtCall::return_only_size()));
1833     }
1834 
1835     // Mdp points right after the end of the
1836     // CallTypeData/VirtualCallTypeData, right after the cells for the
1837     // return value type if there's one.
1838     bind(profile_continue);
1839   }
1840 }
1841 
1842 void InterpreterMacroAssembler::profile_return_type(Register mdp, Register ret, Register tmp) {
1843   assert_different_registers(mdp, ret, tmp);
1844   if (ProfileInterpreter && MethodData::profile_return()) {
1845     Label profile_continue;

1854       // length.
1855       NearLabel do_profile;
1856       Address bc(Z_bcp);
1857       z_lb(tmp, bc);
1858       compare32_and_branch(tmp, Bytecodes::_invokedynamic, Assembler::bcondEqual, do_profile);
1859       compare32_and_branch(tmp, Bytecodes::_invokehandle, Assembler::bcondEqual, do_profile);
1860       get_method(tmp);
1861       // Supplement to 8139891: _intrinsic_id exceeded 1-byte size limit.
1862       if (Method::intrinsic_id_size_in_bytes() == 1) {
1863         z_cli(in_bytes(Method::intrinsic_id_offset()), tmp, static_cast<int>(vmIntrinsics::_compiledLambdaForm));
1864       } else {
1865         assert(Method::intrinsic_id_size_in_bytes() == 2, "size error: check Method::_intrinsic_id");
1866         z_lh(tmp, in_bytes(Method::intrinsic_id_offset()), Z_R0, tmp);
1867         z_chi(tmp, static_cast<int>(vmIntrinsics::_compiledLambdaForm));
1868       }
1869       z_brne(profile_continue);
1870 
1871       bind(do_profile);
1872     }
1873 
1874     Address mdo_ret_addr(mdp, -in_bytes(ReturnTypeEntry::size()));
1875     profile_obj_type(ret, mdo_ret_addr, tmp);
1876 
1877     bind(profile_continue);
1878   }
1879 }
1880 
1881 void InterpreterMacroAssembler::profile_parameters_type(Register mdp, Register tmp1, Register tmp2) {
1882   if (ProfileInterpreter && MethodData::profile_parameters()) {
1883     Label profile_continue, done;
1884 
1885     test_method_data_pointer(mdp, profile_continue);
1886 
1887     // Load the offset of the area within the MDO used for
1888     // parameters. If it's negative we're not profiling any parameters.
1889     Address parm_di_addr(mdp, in_bytes(MethodData::parameters_type_data_di_offset()) - in_bytes(MethodData::data_offset()));
1890     load_and_test_int2long(tmp1, parm_di_addr);
1891     z_brl(profile_continue);
1892 
1893     // Compute a pointer to the area for parameters from the offset
1894     // and move the pointer to the slot for the last

1805         Address mdo_arg_addr(mdp, in_bytes(TypeEntriesAtCall::argument_type_offset(i))-off_to_args);
1806         profile_obj_type(tmp, mdo_arg_addr, tmp, /*ltg did compare to 0*/ true);
1807 
1808         int to_add = in_bytes(TypeStackSlotEntries::per_arg_size());
1809         add2reg(mdp, to_add);
1810         off_to_args += to_add;
1811       }
1812 
1813       if (MethodData::profile_return()) {
1814         z_lg(tmp, in_bytes(TypeEntriesAtCall::cell_count_offset())-off_to_args, mdp);
1815         add2reg(tmp, -TypeProfileArgsLimit*TypeStackSlotEntries::per_arg_count());
1816       }
1817 
1818       bind(done);
1819 
1820       if (MethodData::profile_return()) {
1821         // We're right after the type profile for the last
1822         // argument. Tmp is the number of cells left in the
1823         // CallTypeData/VirtualCallTypeData to reach its end. Non null
1824         // if there's a return to profile.
1825         assert(SingleTypeEntry::static_cell_count() < TypeStackSlotEntries::per_arg_count(), "can't move past ret type");
1826         z_sllg(tmp, tmp, exact_log2(DataLayout::cell_size));
1827         z_agr(mdp, tmp);
1828       }
1829       z_stg(mdp, _z_ijava_state_neg(mdx), Z_fp);
1830     } else {
1831       assert(MethodData::profile_return(), "either profile call args or call ret");
1832       update_mdp_by_constant(mdp, in_bytes(TypeEntriesAtCall::return_only_size()));
1833     }
1834 
1835     // Mdp points right after the end of the
1836     // CallTypeData/VirtualCallTypeData, right after the cells for the
1837     // return value type if there's one.
1838     bind(profile_continue);
1839   }
1840 }
1841 
1842 void InterpreterMacroAssembler::profile_return_type(Register mdp, Register ret, Register tmp) {
1843   assert_different_registers(mdp, ret, tmp);
1844   if (ProfileInterpreter && MethodData::profile_return()) {
1845     Label profile_continue;

1854       // length.
1855       NearLabel do_profile;
1856       Address bc(Z_bcp);
1857       z_lb(tmp, bc);
1858       compare32_and_branch(tmp, Bytecodes::_invokedynamic, Assembler::bcondEqual, do_profile);
1859       compare32_and_branch(tmp, Bytecodes::_invokehandle, Assembler::bcondEqual, do_profile);
1860       get_method(tmp);
1861       // Supplement to 8139891: _intrinsic_id exceeded 1-byte size limit.
1862       if (Method::intrinsic_id_size_in_bytes() == 1) {
1863         z_cli(in_bytes(Method::intrinsic_id_offset()), tmp, static_cast<int>(vmIntrinsics::_compiledLambdaForm));
1864       } else {
1865         assert(Method::intrinsic_id_size_in_bytes() == 2, "size error: check Method::_intrinsic_id");
1866         z_lh(tmp, in_bytes(Method::intrinsic_id_offset()), Z_R0, tmp);
1867         z_chi(tmp, static_cast<int>(vmIntrinsics::_compiledLambdaForm));
1868       }
1869       z_brne(profile_continue);
1870 
1871       bind(do_profile);
1872     }
1873 
1874     Address mdo_ret_addr(mdp, -in_bytes(SingleTypeEntry::size()));
1875     profile_obj_type(ret, mdo_ret_addr, tmp);
1876 
1877     bind(profile_continue);
1878   }
1879 }
1880 
1881 void InterpreterMacroAssembler::profile_parameters_type(Register mdp, Register tmp1, Register tmp2) {
1882   if (ProfileInterpreter && MethodData::profile_parameters()) {
1883     Label profile_continue, done;
1884 
1885     test_method_data_pointer(mdp, profile_continue);
1886 
1887     // Load the offset of the area within the MDO used for
1888     // parameters. If it's negative we're not profiling any parameters.
1889     Address parm_di_addr(mdp, in_bytes(MethodData::parameters_type_data_di_offset()) - in_bytes(MethodData::data_offset()));
1890     load_and_test_int2long(tmp1, parm_di_addr);
1891     z_brl(profile_continue);
1892 
1893     // Compute a pointer to the area for parameters from the offset
1894     // and move the pointer to the slot for the last
< prev index next >