Home
last modified time | relevance | path

Searched refs:inst_size (Results 1 – 10 of 10) sorted by relevance

/third_party/pcre2/pcre2/src/sljit/
DsljitNativeX86_64.c72 sljit_uw inst_size; in emit_x86_instruction() local
89 inst_size = size; in emit_x86_instruction()
97 inst_size++; in emit_x86_instruction()
99 inst_size++; in emit_x86_instruction()
102 inst_size += 1; /* mod r/m byte. */ in emit_x86_instruction()
114 inst_size += 1 + sizeof(sljit_s32); /* SIB byte required to avoid RIP based addressing. */ in emit_x86_instruction()
119 inst_size += sizeof(sljit_s8); in emit_x86_instruction()
121 inst_size += sizeof(sljit_s32); in emit_x86_instruction()
128 inst_size += sizeof(sljit_s8); in emit_x86_instruction()
138 inst_size += 1; /* SIB byte. */ in emit_x86_instruction()
[all …]
DsljitNativeX86_32.c56 sljit_uw inst_size; in emit_x86_instruction() local
71 inst_size = size; in emit_x86_instruction()
74 inst_size++; in emit_x86_instruction()
76 inst_size++; in emit_x86_instruction()
79 inst_size += 1; /* mod r/m byte. */ in emit_x86_instruction()
82 inst_size += sizeof(sljit_sw); in emit_x86_instruction()
87 inst_size += sizeof(sljit_s8); in emit_x86_instruction()
89 inst_size += sizeof(sljit_sw); in emit_x86_instruction()
96 inst_size += sizeof(sljit_s8); in emit_x86_instruction()
103 inst_size += 1; /* SIB byte. */ in emit_x86_instruction()
[all …]
/third_party/mesa3d/src/intel/compiler/
Dbrw_disasm_info.c173 unsigned inst_size, const char *error) in disasm_insert_error() argument
186 if (offset + inst_size != next->offset) { in disasm_insert_error()
194 new->offset = offset + inst_size; in disasm_insert_error()
Dbrw_disasm_info.h84 unsigned inst_size, const char *error);
Dbrw_eu_validate.c2295 unsigned inst_size, in brw_validate_instruction() argument
2321 disasm_insert_error(disasm, offset, inst_size, error_msg.str); in brw_validate_instruction()
2339 unsigned inst_size = is_compact ? sizeof(brw_compact_inst) in brw_validate_instructions() local
2350 inst_size, disasm); in brw_validate_instructions()
2353 src_offset += inst_size; in brw_validate_instructions()
Dbrw_eu.h1885 unsigned inst_size,
/third_party/mesa3d/src/panfrost/midgard/
Dmidgard_emit.c205 unsigned inst_size = max_bitsize_for_alu(ins); in mir_pack_mask_alu() local
206 signed upper_shift = mir_upper_override(ins, inst_size); in mir_pack_mask_alu()
217 if (inst_size == 32) in mir_pack_mask_alu()
219 else if (inst_size == 64) in mir_pack_mask_alu()
Dmir.c239 mir_upper_override(midgard_instruction *ins, unsigned inst_size) in mir_upper_override() argument
250 if (type_size == inst_size) in mir_upper_override()
Dcompiler.h505 signed mir_upper_override(midgard_instruction *ins, unsigned inst_size);
/third_party/node/deps/v8/src/codegen/arm64/
Dassembler-arm64.cc4021 int inst_size = static_cast<int>(kInstrSizeLog2); in IsImmLLiteral() local
4023 (static_cast<int64_t>(static_cast<uint64_t>(offset >> inst_size) in IsImmLLiteral()
4024 << inst_size) == offset); in IsImmLLiteral()