/external/capstone/bindings/ocaml/ |
D | capstone.ml | 101 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);;
|
D | test_detail.ml | 46 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/ |
D | ccapstone.pyx | 17 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/ |
D | test_detail.py | 61 if len(insn.regs_read) > 0: 63 for m in insn.regs_read:
|
/external/mesa3d/src/intel/compiler/ |
D | brw_schedule_instructions.cpp | 735 for (unsigned j = 0; j < regs_read(inst, i); j++) in count_reads_remaining() 819 for (unsigned off = 0; off < regs_read(inst, i); off++) in update_register_pressure() 848 for (unsigned off = 0; off < regs_read(inst, i); off++) { in get_register_pressure_benefit() 1116 for (unsigned r = 0; r < regs_read(inst, i); r++) in calculate_deps() 1119 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() 1242 for (unsigned r = 0; r < regs_read(inst, i); r++) in calculate_deps() 1245 for (unsigned r = 0; r < regs_read(inst, i); r++) { in calculate_deps() 1252 for (unsigned r = 0; r < regs_read(inst, i); r++) in calculate_deps() 1376 for (unsigned j = 0; j < regs_read(inst, i); ++j) in calculate_deps() [all …]
|
D | brw_fs_validate.cpp | 53 fsv_assert(inst->src[i].offset / REG_SIZE + regs_read(inst, i) <= in validate()
|
D | brw_fs_dead_code_eliminate.cpp | 132 for (unsigned j = 0; j < regs_read(inst, i); j++) { in dead_code_eliminate()
|
D | brw_fs_live_variables.cpp | 123 for (unsigned j = 0; j < regs_read(inst, i); j++) { in setup_def_use() 353 inst->src[i], regs_read(inst, i))) in validate()
|
D | brw_ir_performance.cpp | 1282 for (unsigned j = 0; j < regs_read(inst, i); j++) in issue_fs_inst() 1346 for (unsigned j = 0; j < regs_read(inst, i); j++) in issue_fs_inst() 1403 for (unsigned j = 0; j < regs_read(inst, i); j++) in issue_vec4_instruction() 1452 for (unsigned j = 0; j < regs_read(inst, i); j++) in issue_vec4_instruction()
|
D | brw_fs_reg_allocate.cpp | 380 for (unsigned j = 0; j < regs_read(inst, i); j++) { in calculate_payload_ranges() 997 spill_costs[inst->src[i].nr] += regs_read(inst, i) * block_scale; in set_spill_costs() 1183 int count = regs_read(inst, i); in spill_reg()
|
D | brw_vec4_live_variables.cpp | 282 regs_read(inst, i))) in validate()
|
D | brw_fs_scoreboard.cpp | 810 for (unsigned j = 0; j < regs_read(inst, i); j++) in update_inst_scoreboard() 917 for (unsigned j = 0; j < regs_read(inst, i); j++) in gather_inst_dependencies()
|
D | brw_eu_validate.c | 1344 int regs_read = 0; in registers_read() local 1350 regs_read = 1; in registers_read() 1354 return regs_read; in registers_read()
|
/external/capstone/bindings/vb6/ |
D | CInstDetails.cls | 97 regRead.Add cd.regs_read(i - 1)
|
D | Module1.bas | 91 regs_read(0 To 11) As Byte ' list of implicit registers read by this insn UNSIGNED
|
/external/capstone/suite/fuzz/ |
D | fuzz_harness.c | 179 printf("%s ", cs_reg_name(handle, detail->regs_read[n])); in main()
|
/external/capstone/tests/ |
D | test_skipdata.c | 161 printf("@regs_read: %lu\n", offsetof(cs_insn, regs_read)); in main()
|
D | test_iter.c | 226 printf("%s ", cs_reg_name(handle, detail->regs_read[n])); in test()
|
D | test_basic.c | 285 printf("@regs_read: %lu\n", offsetof(cs_insn, regs_read)); in main()
|
D | test_detail.c | 254 printf("%s ", cs_reg_name(handle, detail->regs_read[n])); in test()
|
/external/capstone/bindings/powershell/Capstone/ |
D | Capstone.psm1 | 405 $NamePointer = [Capstone]::cs_reg_name($DisAsmHandle, $DetailCast.regs_read[$r]) in Get-CapstoneDisassembly()
|
/external/capstone/bindings/java/capstone/ |
D | Capstone.java | 78 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/python/capstone/ |
D | __init__.py | 499 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/ |
D | capstone.h | 226 uint8_t regs_read[12]; // list of implicit registers read by this insn member
|
/external/mesa3d/docs/relnotes/ |
D | 10.6.4.rst | 75 - i965/fs: Fix fs_inst::regs_read() for sources in the ATTR file.
|