Home
last modified time | relevance | path

Searched refs:next_instr (Results 1 – 6 of 6) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
Dliveness.c204 ppir_instr *next_instr; in ppir_liveness_compute_live_sets() local
218 next_instr = list_first_entry(&succ->instr_list, ppir_instr, list); in ppir_liveness_compute_live_sets()
219 assert(next_instr); in ppir_liveness_compute_live_sets()
222 instr->live_set, next_instr->live_set, in ppir_liveness_compute_live_sets()
223 instr->live_mask, next_instr->live_mask); in ppir_liveness_compute_live_sets()
227 ppir_instr *next_instr = LIST_ENTRY(ppir_instr, instr->list.next, list); in ppir_liveness_compute_live_sets() local
229 instr->live_set, next_instr->live_set, in ppir_liveness_compute_live_sets()
230 instr->live_mask, next_instr->live_mask); in ppir_liveness_compute_live_sets()
/third_party/mesa3d/src/mesa/state_tracker/tests/
Dst_tests_common.cpp406 glsl_to_tgsi_instruction *next_instr = new(mem_ctx) glsl_to_tgsi_instruction(); in get_codeline() local
407 next_instr->op = op; in get_codeline()
408 next_instr->info = tgsi_get_opcode_info(op); in get_codeline()
410 assert(src.size() == num_inst_src_regs(next_instr)); in get_codeline()
411 assert(dst.size() == num_inst_dst_regs(next_instr)); in get_codeline()
414 copy(src.begin(), src.end(), next_instr->src); in get_codeline()
415 copy(dst.begin(), dst.end(), next_instr->dst); in get_codeline()
417 next_instr->tex_offset_num_offset = tex_offsets.size(); in get_codeline()
419 if (next_instr->tex_offset_num_offset > 0) { in get_codeline()
420 next_instr->tex_offsets = ralloc_array(mem_ctx, st_src_reg, tex_offsets.size()); in get_codeline()
[all …]
/third_party/mesa3d/src/freedreno/afuc/
Dasm.h63 struct asm_instruction *next_instr(int tok);
Dparser.y58 instr = next_instr(tok); in new_instr()
Dasm.c52 next_instr(int tok) in next_instr() function
/third_party/python/Python/
Dceval.c1332 #define INSTR_OFFSET() ((int)(next_instr - first_instr))
1334 _Py_CODEUNIT word = *next_instr; \
1337 next_instr++; \
1339 #define JUMPTO(x) (next_instr = first_instr + (x))
1340 #define JUMPBY(x) (next_instr += (x))
1375 _Py_CODEUNIT word = *next_instr; \
1379 next_instr++; \
1483 co->co_opcache_map[next_instr - first_instr]; \
1497 co->co_opcache_map[next_instr - first_instr]; \
1590 const _Py_CODEUNIT *next_instr; in _PyEval_EvalFrameDefault() local
[all …]