Searched refs:reg_num (Results 1 - 19 of 19) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/ir/pp/
H A Dliveness.c34 for (int i = 0; i < BITSET_WORDS(comp->reg_num); i++)
37 for (int i = 0; i < reg_mask_size(comp->reg_num); i++)
47 for (int i = 0; i < BITSET_WORDS(comp->reg_num); i++)
51 for (int i = 0; i < reg_mask_size(comp->reg_num); i++)
183 uint8_t temp_live_mask[reg_mask_size(comp->reg_num)];
184 BITSET_DECLARE(temp_live_set, comp->reg_num);
H A Dregalloc.c98 comp->reg_num++;
245 comp->reg_num++;
408 float spill_costs[comp->reg_num];
464 for (int i = 0; i < comp->reg_num; i++)
500 reg_mask_size(comp->reg_num));
504 instr->live_set = rzalloc_array(comp, BITSET_WORD, comp->reg_num);
508 instr->live_internal = rzalloc_array(comp, BITSET_WORD, comp->reg_num);
517 BITSET_FOREACH_SET(i, liveness, comp->reg_num) {
518 BITSET_FOREACH_SET(j, liveness, comp->reg_num) {
532 comp->ra, comp->reg_num);
[all...]
H A Dnir.c781 comp->reg_num = 0;
941 comp->reg_num++;
H A Dppir.h367 int reg_num; member in struct:ppir_compiler
/xsrc/external/mit/libpciaccess/dist/src/
H A Dx86_pci.c603 /* Read BAR `reg_num' in `dev' and map the data if any */
605 pci_device_x86_region_probe (struct pci_device *dev, int reg_num) argument
611 offset = PCI_BAR_ADDR_0 + 0x4 * reg_num;
631 dev->regions[reg_num].is_IO = 1;
633 dev->regions[reg_num].is_64 = 1;
635 dev->regions[reg_num].is_prefetchable = 1;
638 dev->regions[reg_num].size = get_test_val_size (testval);
641 dev->regions[reg_num].base_addr = get_map_base (addr);
643 if (dev->regions[reg_num].is_64)
649 dev->regions[reg_num]
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/freedreno/ir3/
H A Dir3_print.c134 printf("c%u.%c", reg_num(reg), "xyzw"[reg_comp(reg)]);
136 printf("\x1b[0;31mr%u.%c\x1b[0m", reg_num(reg), "xyzw"[reg_comp(reg)]);
H A Dir3.h587 static inline uint32_t reg_num(struct ir3_register *reg) function in typeref:typename:uint32_t
761 return reg_num(dst) == REG_A0;
770 return reg_num(dst) == REG_P0;
795 if ((reg_num(r) == REG_A0) || (reg_num(r) == REG_P0))
/xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
H A Dir3_ra.h90 return reg_num(reg) != REG_A0 && reg_num(reg) != REG_P0;
H A Dir3_print.c223 mesa_log_stream_printf(stream, "(" SYN_REG("r%u.%c") ")", reg_num(reg),
285 mesa_log_stream_printf(stream, SYN_CONST("c%u.%c"), reg_num(reg),
288 mesa_log_stream_printf(stream, SYN_REG("r%u.%c"), reg_num(reg),
H A Dir3.h749 reg_num(const struct ir3_register *reg) function in typeref:typename:uint32_t
834 if (reg_num(dst) == REG_A0)
1094 if ((reg_num(dst) == REG_A0) || (dst->num == regid(REG_P0, 0)))
1135 return reg_num(dst) == REG_P0;
1148 return (reg->flags & IR3_REG_SHARED) || (reg_num(reg) == REG_A0) ||
1149 (reg_num(reg) == REG_P0);
1182 if ((reg_num(r) == REG_A0) || (reg_num(r) == REG_P0))
H A Dir3.c568 debug_assert(reg_num(addr->dsts[0]) == REG_A0);
/xsrc/external/mit/MesaLib/dist/src/broadcom/cle/
H A Dgen_pack_header.py466 self.reg_num = num_from_str(attrs["num"])
508 self.reg_num = None
580 if not self.reg_num == None:
582 (self.gen_prefix(name + "_num"), self.reg_num))
/xsrc/external/mit/MesaLib.old/dist/src/broadcom/cle/
H A Dgen_pack_header.py470 self.reg_num = num_from_str(attrs["num"])
512 self.reg_num = None
584 if not self.reg_num == None:
586 (self.gen_prefix(name + "_num"), self.reg_num))
/xsrc/external/mit/MesaLib.old/dist/src/intel/genxml/
H A Dgen_pack_header.py561 self.reg_num = num_from_str(attrs["num"])
602 self.reg_num = None
667 if not self.reg_num is None:
669 (self.gen_prefix(name + "_num"), self.reg_num))
/xsrc/external/mit/MesaLib/dist/src/intel/genxml/
H A Dgen_pack_header.py543 self.reg_num = num_from_str(attrs["num"])
584 self.reg_num = None
655 if not self.reg_num is None:
657 (self.gen_prefix(name + "_num"), self.reg_num))
/xsrc/external/mit/xf86-video-intel/dist/src/sna/brw/
H A Dbrw_disasm.c575 unsigned reg_num, unsigned sub_reg_num, unsigned __abs, unsigned _negate)
580 if (reg(file, _reg_file, reg_num))
573 src_da1(FILE * file,unsigned type,unsigned _reg_file,unsigned _vert_stride,unsigned _width,unsigned _horiz_stride,unsigned reg_num,unsigned sub_reg_num,unsigned __abs,unsigned _negate) argument
/xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/brw/
H A Dbrw_disasm.c575 unsigned reg_num, unsigned sub_reg_num, unsigned __abs, unsigned _negate)
580 if (reg(file, _reg_file, reg_num))
573 src_da1(FILE * file,unsigned type,unsigned _reg_file,unsigned _vert_stride,unsigned _width,unsigned _horiz_stride,unsigned reg_num,unsigned sub_reg_num,unsigned __abs,unsigned _negate) argument
/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_disasm.c872 unsigned reg_num, unsigned sub_reg_num, unsigned __abs,
884 err |= reg(file, _reg_file, reg_num);
867 src_da1(FILE * file,const struct gen_device_info * devinfo,unsigned opcode,enum brw_reg_type type,unsigned _reg_file,unsigned _vert_stride,unsigned _width,unsigned _horiz_stride,unsigned reg_num,unsigned sub_reg_num,unsigned __abs,unsigned _negate) argument
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_disasm.c1040 unsigned reg_num, unsigned sub_reg_num, unsigned __abs,
1052 err |= reg(file, _reg_file, reg_num);
1035 src_da1(FILE * file,const struct intel_device_info * devinfo,unsigned opcode,enum brw_reg_type type,unsigned _reg_file,unsigned _vert_stride,unsigned _width,unsigned _horiz_stride,unsigned reg_num,unsigned sub_reg_num,unsigned __abs,unsigned _negate) argument

Completed in 29 milliseconds