Home
last modified time | relevance | path

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

/external/pcre/dist/sljit/
DsljitNativeX86_32.c262 sljit_si inst_size; in emit_x86_instruction() local
277 inst_size = size; in emit_x86_instruction()
280 inst_size++; in emit_x86_instruction()
282 inst_size++; in emit_x86_instruction()
285 inst_size += 1; /* mod r/m byte. */ in emit_x86_instruction()
288 inst_size += sizeof(sljit_sw); in emit_x86_instruction()
292 inst_size += sizeof(sljit_sb); in emit_x86_instruction()
294 inst_size += sizeof(sljit_sw); in emit_x86_instruction()
301 inst_size += 1; /* SIB byte. */ in emit_x86_instruction()
308 inst_size += 1; in emit_x86_instruction()
[all …]
DsljitNativeX86_64.c369 sljit_si inst_size; in emit_x86_instruction() local
386 inst_size = size; in emit_x86_instruction()
394 inst_size++; in emit_x86_instruction()
396 inst_size++; in emit_x86_instruction()
399 inst_size += 1; /* mod r/m byte. */ in emit_x86_instruction()
416 inst_size += 1 + sizeof(sljit_si); /* SIB byte required to avoid RIP based addressing. */ in emit_x86_instruction()
424 inst_size += sizeof(sljit_sb); in emit_x86_instruction()
426 inst_size += sizeof(sljit_si); in emit_x86_instruction()
429 inst_size += sizeof(sljit_sb); in emit_x86_instruction()
432 inst_size += 1; /* SIB byte. */ in emit_x86_instruction()
[all …]
/external/lldb/source/Plugins/Disassembler/llvm/
DDisassemblerLLVMC.cpp81 const size_t inst_size = mc_disasm_ptr->GetMCInst (opcode_data, in DoesBranch() local
86 if (inst_size == 0) in DoesBranch()
207 const size_t inst_size = mc_disasm_ptr->GetMCInst(opcode_data, in Decode() local
212 if (inst_size == 0) in Decode()
216 m_opcode.SetOpcodeBytes(opcode_data, inst_size); in Decode()
287 size_t inst_size = mc_disasm_ptr->GetMCInst (opcode_data, in CalculateMnemonicOperandsAndComment() local
292 if (inst_size > 0) in CalculateMnemonicOperandsAndComment()
300 if (inst_size == 0) in CalculateMnemonicOperandsAndComment()
303 inst_size = m_opcode.GetByteSize(); in CalculateMnemonicOperandsAndComment()
306 switch (inst_size) in CalculateMnemonicOperandsAndComment()
[all …]
/external/lldb/source/Core/
DDisassembler.cpp979 uint32_t inst_size = (*pos)->GetOpcode().GetByteSize(); in GetMaxOpcocdeByteSize() local
980 if (max_inst_size < inst_size) in GetMaxOpcocdeByteSize()
981 max_inst_size = inst_size; in GetMaxOpcocdeByteSize()
/external/lldb/source/Plugins/UnwindAssembly/x86/
DUnwindAssembly-x86.cpp489 const size_t inst_size = ::LLVMDisasmInstruction (m_disasm_context, in instruction_length() local
496 length = inst_size; in instruction_length()