Searched refs:next_instr (Results 1 – 8 of 8) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
D | liveness.c | 213 ppir_instr *next_instr; in ppir_liveness_compute_live_sets() local 227 next_instr = list_first_entry(&succ->instr_list, ppir_instr, list); in ppir_liveness_compute_live_sets() 228 assert(next_instr); in ppir_liveness_compute_live_sets() 231 instr->live_set, next_instr->live_set, in ppir_liveness_compute_live_sets() 232 instr->live_mask, next_instr->live_mask); in ppir_liveness_compute_live_sets() 236 ppir_instr *next_instr = list_entry(instr->list.next, ppir_instr, list); in ppir_liveness_compute_live_sets() local 238 instr->live_set, next_instr->live_set, in ppir_liveness_compute_live_sets() 239 instr->live_mask, next_instr->live_mask); in ppir_liveness_compute_live_sets()
|
/third_party/node/deps/v8/src/diagnostics/ppc/ |
D | disasm-ppc.cc | 474 Instruction* next_instr = in DecodeExtP() local 476 switch (next_instr->OpcodeBase()) { in DecodeExtP() 479 if (next_instr->RAValue() == 0) { in DecodeExtP() 482 Format(next_instr, " 'rt, "); in DecodeExtP() 485 Format(next_instr, " 'rt, 'ra, "); in DecodeExtP() 487 Format(next_instr, "'int34"); in DecodeExtP() 492 Format(next_instr, "plbz 'rt, 'int34('ra)"); in DecodeExtP() 497 Format(next_instr, "plhz 'rt, 'int34('ra)"); in DecodeExtP() 502 Format(next_instr, "plha 'rt, 'int34('ra)"); in DecodeExtP() 507 Format(next_instr, "plwz 'rt, 'int34('ra)"); in DecodeExtP() [all …]
|
/third_party/mesa3d/src/freedreno/afuc/ |
D | asm.h | 63 struct asm_instruction *next_instr(int tok);
|
D | parser.y | 58 instr = next_instr(tok); in new_instr()
|
D | asm.c | 52 next_instr(int tok) in next_instr() function
|
/third_party/node/deps/v8/src/execution/ppc/ |
D | simulator-ppc.cc | 1553 Instruction* next_instr = bit_cast<Instruction*>(get_pc() + kInstrSize); in ExecuteGeneric() local 1554 uint16_t suffix_value = next_instr->Bits(15, 0); in ExecuteGeneric() 1556 switch (next_instr->OpcodeBase()) { in ExecuteGeneric() 1559 int rt = next_instr->RTValue(); in ExecuteGeneric() 1560 int ra = next_instr->RAValue(); in ExecuteGeneric() 1573 int ra = next_instr->RAValue(); in ExecuteGeneric() 1574 int rt = next_instr->RTValue(); in ExecuteGeneric() 1581 int ra = next_instr->RAValue(); in ExecuteGeneric() 1582 int rt = next_instr->RTValue(); in ExecuteGeneric() 1590 int ra = next_instr->RAValue(); in ExecuteGeneric() [all …]
|
/third_party/python/Python/ |
D | ceval.c | 1332 #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 …]
|
/third_party/node/deps/v8/src/execution/riscv64/ |
D | simulator-riscv64.cc | 1459 Instruction* next_instr = reinterpret_cast<Instruction*>(cur + kInstrSize); in get_ebreak_code() local 1460 if (next_instr->BaseOpcodeFieldRaw() == RO_LUI) in get_ebreak_code() 1461 return (next_instr->Imm20UValue()); in get_ebreak_code()
|