Home
last modified time | relevance | path

Searched refs:regs_read (Results 1 – 25 of 38) sorted by relevance

12

/external/capstone/bindings/ocaml/
Dcapstone.ml101 regs_read: int array; RecordField
152 let (id, address, size, bytes, mnemonic, op_str, regs_read,
155 a.regs_read, a.regs_write, a.groups, a.arch) in
163 method regs_read = regs_read; method
176 List.exists (fun g -> g == reg_id) (Array.to_list insn.regs_read);;
Dtest_detail.ml46 if (Array.length insn.regs_read) > 0 then begin
48 Array.iter (fun x -> printf "%s "(cs_reg_name handle x)) insn.regs_read;
/external/capstone/bindings/python/pyx/
Dccapstone.pyx17 self.regs_read = detail.regs_read
111 def regs_read(self): member in CsInsn
116 # Diet engine cannot provide @regs_read
121 return detail.regs_read[:detail.regs_read_count]
205 # Diet engine cannot provide @regs_read
208 return reg_id in self.regs_read
/external/capstone/bindings/python/
Dtest_detail.py61 if len(insn.regs_read) > 0:
63 for m in insn.regs_read:
/external/mesa3d/src/intel/compiler/
Dbrw_schedule_instructions.cpp619 for (unsigned j = 0; j < regs_read(inst, i); j++) in count_reads_remaining()
701 for (unsigned off = 0; off < regs_read(inst, i); off++) in update_register_pressure()
730 for (unsigned off = 0; off < regs_read(inst, i); off++) { in get_register_pressure_benefit()
1000 for (unsigned r = 0; r < regs_read(inst, i); r++) in calculate_deps()
1003 for (unsigned r = 0; r < regs_read(inst, i); r++) { in calculate_deps()
1010 for (unsigned r = 0; r < regs_read(inst, i); r++) in calculate_deps()
1126 for (unsigned r = 0; r < regs_read(inst, i); r++) in calculate_deps()
1129 for (unsigned r = 0; r < regs_read(inst, i); r++) { in calculate_deps()
1136 for (unsigned r = 0; r < regs_read(inst, i); r++) in calculate_deps()
1258 for (unsigned j = 0; j < regs_read(inst, i); ++j) in calculate_deps()
[all …]
Dbrw_fs_validate.cpp52 fsv_assert(inst->src[i].offset / REG_SIZE + regs_read(inst, i) <= in validate()
Dbrw_fs_dead_code_eliminate.cpp131 for (unsigned j = 0; j < regs_read(inst, i); j++) { in dead_code_eliminate()
Dbrw_fs_reg_allocate.cpp365 for (unsigned j = 0; j < regs_read(inst, i); j++) { in calculate_payload_ranges()
825 spill_costs[inst->src[i].nr] += regs_read(inst, i) * block_scale; in choose_spill_reg()
915 int count = regs_read(inst, i); in spill_reg()
Dbrw_eu_validate.c697 int regs_read = 0; in registers_read() local
703 regs_read = 1; in registers_read()
707 return regs_read; in registers_read()
Dbrw_fs_live_variables.cpp123 for (unsigned j = 0; j < regs_read(inst, i); j++) { in setup_def_use()
Dbrw_ir_vec4.h427 regs_read(const vec4_instruction *inst, unsigned i) in regs_read() function
Dbrw_ir_fs.h439 regs_read(const fs_inst *inst, unsigned i) in regs_read() function
Dbrw_fs_bank_conflicts.cpp520 p.require_contiguous(reg_of(inst->src[i]), regs_read(inst, i)); in shader_reg_partitioning()
/external/capstone/bindings/vb6/
DCInstDetails.cls97 regRead.Add cd.regs_read(i - 1)
DModule1.bas91 regs_read(0 To 11) As Byte ' list of implicit registers read by this insn UNSIGNED
/external/capstone/suite/fuzz/
Dfuzz_harness.c179 printf("%s ", cs_reg_name(handle, detail->regs_read[n])); in main()
/external/capstone/tests/
Dtest_skipdata.c161 printf("@regs_read: %lu\n", offsetof(cs_insn, regs_read)); in main()
Dtest_iter.c226 printf("%s ", cs_reg_name(handle, detail->regs_read[n])); in test()
Dtest_basic.c285 printf("@regs_read: %lu\n", offsetof(cs_insn, regs_read)); in main()
Dtest_detail.c254 printf("%s ", cs_reg_name(handle, detail->regs_read[n])); in test()
/external/capstone/bindings/java/capstone/
DCapstone.java78 public byte[] regs_read = new byte[12]; field in Capstone._cs_detail
142 regsRead[i] = insn.cs_detail.regs_read[i]; in CsInsn()
/external/capstone/bindings/powershell/Capstone/
DCapstone.psm1405 $NamePointer = [Capstone]::cs_reg_name($DisAsmHandle, $DetailCast.regs_read[$r]) in Get-CapstoneDisassembly()
/external/capstone/bindings/python/capstone/
D__init__.py499 def regs_read(self): member in CsInsn
508 return self._detail.regs_read[:self._detail.regs_read_count]
646 return reg_id in self.regs_read
/external/capstone/include/
Dcapstone.h226 uint8_t regs_read[12]; // list of implicit registers read by this insn member
/external/capstone/arch/XCore/
DXCoreMapping.c1380 memcpy(insn->detail->regs_read, insns[i].regs_use, sizeof(insns[i].regs_use)); in XCore_get_insn_id()

12