Lines Matching refs:data

459         result->d.data = 0u;  in AnalyseMethodCode()
534 InlineReturnArgData* data = &result->d.return_data; in AnalyseReturnMethod() local
535 data->arg = reg - arg_start; in AnalyseReturnMethod()
536 data->is_wide = (return_opcode == Instruction::RETURN_WIDE) ? 1u : 0u; in AnalyseReturnMethod()
537 data->is_object = (return_opcode == Instruction::RETURN_OBJECT) ? 1u : 0u; in AnalyseReturnMethod()
538 data->reserved = 0u; in AnalyseReturnMethod()
539 data->reserved2 = 0u; in AnalyseReturnMethod()
570 result->d.data = static_cast<uint64_t>(const_value); in AnalyseConstMethod()
625 InlineIGetIPutData* data = &result->d.ifield_data; in AnalyseIGetMethod() local
626 if (!ComputeSpecialAccessorInfo(method, field_idx, false, data)) { in AnalyseIGetMethod()
630 data->op_variant = IGetVariant(opcode); in AnalyseIGetMethod()
631 data->method_is_static = is_static ? 1u : 0u; in AnalyseIGetMethod()
632 data->object_arg = object_arg; // Allow IGET on any register, not just "this". in AnalyseIGetMethod()
633 data->src_arg = 0u; in AnalyseIGetMethod()
634 data->return_arg_plus1 = 0u; in AnalyseIGetMethod()
693 InlineIGetIPutData* data = &result->d.ifield_data; in AnalyseIPutMethod() local
694 if (!ComputeSpecialAccessorInfo(method, field_idx, true, data)) { in AnalyseIPutMethod()
698 data->op_variant = IPutVariant(opcode); in AnalyseIPutMethod()
699 data->method_is_static = is_static ? 1u : 0u; in AnalyseIPutMethod()
700 data->object_arg = object_arg; // Allow IPUT on any register, not just "this". in AnalyseIPutMethod()
701 data->src_arg = src_arg; in AnalyseIPutMethod()
702 data->return_arg_plus1 = return_arg_plus1; in AnalyseIPutMethod()