HomeSort by: relevance | last modified time | path
    Searched refs:sib (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/external/gpl3/binutils/dist/include/opcode/
i386.h 107 /* Extract fields from the sib byte. */
108 #define SIB_SCALE_FIELD(sib) (((sib) >> 6) & 3)
109 #define SIB_INDEX_FIELD(sib) (((sib) >> 3) & 7)
110 #define SIB_BASE_FIELD(sib) (((sib) >> 0) & 7)
126 /* High extension to SIB index field. */
128 /* High extension to base field of modrm or SIB, or reg field of opcode. */
  /src/external/gpl3/binutils.old/dist/include/opcode/
i386.h 107 /* Extract fields from the sib byte. */
108 #define SIB_SCALE_FIELD(sib) (((sib) >> 6) & 3)
109 #define SIB_INDEX_FIELD(sib) (((sib) >> 3) & 7)
110 #define SIB_BASE_FIELD(sib) (((sib) >> 0) & 7)
126 /* High extension to SIB index field. */
128 /* High extension to base field of modrm or SIB, or reg field of opcode. */
  /src/external/gpl3/gdb.old/dist/include/opcode/
i386.h 107 /* Extract fields from the sib byte. */
108 #define SIB_SCALE_FIELD(sib) (((sib) >> 6) & 3)
109 #define SIB_INDEX_FIELD(sib) (((sib) >> 3) & 7)
110 #define SIB_BASE_FIELD(sib) (((sib) >> 0) & 7)
126 /* High extension to SIB index field. */
128 /* High extension to base field of modrm or SIB, or reg field of opcode. */
  /src/external/gpl3/gdb/dist/include/opcode/
i386.h 107 /* Extract fields from the sib byte. */
108 #define SIB_SCALE_FIELD(sib) (((sib) >> 6) & 3)
109 #define SIB_INDEX_FIELD(sib) (((sib) >> 3) & 7)
110 #define SIB_BASE_FIELD(sib) (((sib) >> 0) & 7)
126 /* High extension to SIB index field. */
128 /* High extension to base field of modrm or SIB, or reg field of opcode. */
  /src/external/bsd/tcpdump/dist/
makemib 205 for (sib = child[parent]; sib != ""; sib = sibling[sib])
206 if (oid[sib] == value) {
207 if (new != sib)
212 sib, value
  /src/external/gpl2/lvm2/dist/lib/unknown/
unknown.c 43 for (current = sn; current != NULL; current = current->sib) {
51 last->sib = new;
  /src/external/gpl2/lvm2/dist/lib/config/
config.c 503 n = n->sib;
583 l->sib = n;
611 l->sib = n;
921 cn = cn->sib;
1157 cn2->sib = NULL;
1159 cn2->sib = (*cn1)->sib;
1160 (*cn1)->sib = cn2;
1174 nextn = cn->sib;
1233 nextn = cn->sib;
    [all...]
config.h 45 struct config_node *parent, *sib, *child; member in struct:config_node
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 28 #define scaleFromSIB(sib) (((sib) & 0xc0) >> 6)
29 #define indexFromSIB(sib) (((sib) & 0x38) >> 3)
30 #define baseFromSIB(sib) ((sib) & 0x7)
138 ENTRY(sib) \
436 /// All possible values of the SIB index field.
438 /// sib is synonymous with NONE.
439 /// Vector SIB: index can be XMM or YMM
605 uint8_t sib; member in struct:llvm::X86Disassembler::InternalInstruction
    [all...]
X86Disassembler.cpp 507 // Consumes the SIB byte to determine addressing information.
516 llvm_unreachable("SIB-based addressing doesn't work in 16-bit mode");
527 if (consume(insn, insn->sib))
530 index = indexFromSIB(insn->sib) | (xFromREX(insn->rexPrefix) << 3);
538 insn->sibScale = 1 << scaleFromSIB(insn->sib);
540 base = baseFromSIB(insn->sib) | (bFromREX(insn->rexPrefix) << 3);
559 llvm_unreachable("Cannot have Mod = 0b11 and a SIB byte");
600 // Consumes all addressing information (ModR/M byte, SIB byte, and displacement.
690 // or whether a SIB byte is present (rm=4),
693 case 0x4: // SIB byte is presen
1663 sib = 504, enumerator in enum:llvm::X86::__anon5165
    [all...]
  /src/external/gpl2/lvm2/dist/include/
config.h 45 struct config_node *parent, *sib, *child; member in struct:config_node
  /src/external/cddl/osnet/dist/uts/intel/dtrace/
fasttrap_isa.c 106 #define FASTTRAP_SIB_SCALE(sib) (((sib) >> 6) & 0x3)
107 #define FASTTRAP_SIB_INDEX(sib) (((sib) >> 3) & 0x7)
108 #define FASTTRAP_SIB_BASE(sib) ((sib) & 0x7)
435 uint8_t sib = instr[start + 2]; local
436 uint_t index = FASTTRAP_SIB_INDEX(sib);
437 uint_t base = FASTTRAP_SIB_BASE(sib);
439 tp->ftt_scale = FASTTRAP_SIB_SCALE(sib);
    [all...]
  /src/external/gpl2/lvm2/dist/lib/format_text/
import_vsn1.c 446 for (sn = lvn; sn; sn = sn->sib) {
627 for (n = n->child; n; n = n->sib) {
647 for (vgn = cft->root; (vgn && vgn->v); vgn = vgn->sib) ;
828 for (vgn = cft->root; (vgn && vgn->v); vgn = vgn->sib) ;
  /src/external/gpl3/binutils/dist/gas/
as.c 1471 struct stat sib;
1474 if (stat (argv[i], &sib) == 0
1475 && sib.st_ino == sob.st_ino
1482 && sib.st_ino != 0
1486 && sib.st_dev == sob.st_dev
1492 && S_ISREG (sib.st_mode))
1469 struct stat sib; local
  /src/external/gpl3/binutils.old/dist/gas/
as.c 1451 struct stat sib;
1454 if (stat (argv[i], &sib) == 0
1455 && sib.st_ino == sob.st_ino
1462 && sib.st_ino != 0
1466 && sib.st_dev == sob.st_dev
1472 && S_ISREG (sib.st_mode))
1449 struct stat sib; local
  /src/sys/arch/amd64/amd64/
db_disasm.c 1001 int mod, rm, sib, index, disp, size, have_sib; local
1016 get_value_inc(sib, loc, 1, false);
1017 rm = sib_base(rex, sib);
1018 index = sib_index(rex, sib);
1021 addrp->ss = sib_ss(rex, sib);
  /src/sys/arch/i386/i386/
db_disasm.c 927 int mod, rm, sib, index, disp; local
967 get_value_inc(sib, loc, 1, false);
968 rm = sib_base(sib);
969 index = sib_index(sib);
972 addrp->ss = sib_ss(sib);
  /src/external/gpl3/gdb.old/dist/opcodes/
i386-opc.h 688 /* Instruction with a mandatory SIB byte:
697 SIB,
810 unsigned int sib:3; member in struct:i386_opcode_modifier
  /src/lib/libnvmm/
libnvmm_x86.c 1005 struct x86_sib sib; member in union:x86_store::__anon526
2182 instr->strm->u.sib.scale = (1 << scale);
2184 instr->strm->u.sib.idx = get_register_idx(instr, index);
2186 instr->strm->u.sib.bas = get_register_bas(instr, base);
2244 return (instr->address_size != 2 && /* no SIB in 16bit addressing */
3043 struct x86_sib *sib; local
3049 sib = &store->u.sib;
3050 if (sib->bas != NULL)
3051 gva += gpr_read_address(instr, state, sib->bas->num)
    [all...]
  /src/external/gpl3/binutils/dist/gas/config/
tc-i386.c 398 /* RM and SIB are the modrm byte and the sib byte where the
404 sib_byte sib; member in struct:_i386_insn
3805 fprintf (stdout, " sib: base %x index %x scale %x\n",
3806 x->sib.base, x->sib.index, x->sib.scale);
6021 register in ModR/M SIB addressing. */
6862 SIB is not supported.
6911 Memory reg can't be %eax and SIB
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-i386.c 398 /* RM and SIB are the modrm byte and the sib byte where the
404 sib_byte sib; member in struct:_i386_insn
3751 fprintf (stdout, " sib: base %x index %x scale %x\n",
3752 x->sib.base, x->sib.index, x->sib.scale);
5859 register in ModR/M SIB addressing. */
6700 SIB is not supported.
6749 Memory reg can't be %eax and SIB
    [all...]
  /src/external/gpl3/binutils/dist/opcodes/
i386-opc.h 734 /* Instruction with a mandatory SIB byte:
743 SIB,
856 unsigned int sib:3; member in struct:i386_opcode_modifier
  /src/external/gpl3/binutils.old/dist/opcodes/
i386-opc.h 721 /* Instruction with a mandatory SIB byte:
730 SIB,
843 unsigned int sib:3; member in struct:i386_opcode_modifier
  /src/external/gpl3/gdb/dist/opcodes/
i386-opc.h 721 /* Instruction with a mandatory SIB byte:
730 SIB,
843 unsigned int sib:3; member in struct:i386_opcode_modifier
  /src/external/gpl2/lvm2/dist/lib/commands/
toolcontext.c 325 for (cn = hn; cn; cn = cn->sib) {
371 for (cn = tn->child; cn; cn = cn->sib) {

Completed in 59 milliseconds

1 2