Lines Matching refs:info
540 GENX(pan_emit_tls)(const struct pan_tls_info *info,
544 if (info->tls.size) {
546 panfrost_get_stack_shift(info->tls.size);
557 assert((info->tls.ptr & 4095) == 0);
558 cfg.tls_base_pointer = info->tls.ptr >> 8;
560 cfg.tls_base_pointer = info->tls.ptr;
564 if (info->wls.size) {
565 assert(!(info->wls.ptr & 4095));
566 assert((info->wls.ptr & 0xffffffff00000000ULL) == ((info->wls.ptr + info->wls.size - 1) & 0xffffffff00000000ULL));
567 cfg.wls_base_pointer = info->wls.ptr;
568 unsigned wls_size = pan_wls_adjust_size(info->wls.size);
569 cfg.wls_instances = pan_wls_instances(&info->wls.dim);