| /src/external/gpl2/lvm2/dist/include/ |
| config.h | 45 struct config_node *parent, *sib, *child; member in struct:config_node
|
| /src/external/gpl2/lvm2/dist/lib/config/ |
| config.h | 45 struct config_node *parent, *sib, *child; member in struct:config_node
|
| /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/apache2/llvm/dist/llvm/lib/Target/X86/Disassembler/ |
| 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...] |
| 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...] |
| /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/external/cddl/osnet/dist/tools/ctf/cvt/ |
| dwarf.c | 291 Dwarf_Die sib; local 294 if ((rc = dwarf_siblingof(dw->dw_dw, die, &sib, &dw->dw_err)) == 296 return (sib);
|
| /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/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/gprofng/libcollector/ |
| unwind.c | 1535 return pc + 2; // SIB + disp8 1537 return pc + 5; // SIB + disp32 1538 return pc + 1; // SIB 3171 { // SP or R12. Decode SIB-byte. 3172 int sib = *cur->pc++; local 3173 int scale = 1 << (sib >> 6); 3174 int index = X | ((sib >> 3) & 7); 3175 int base = B | (sib & 7); 3838 else if (modrm != 0x24 /*ignore SIB*/) /* jumpn *(reg) or jumpn reg */
|
| /src/external/gpl3/binutils.old/dist/gprofng/libcollector/ |
| unwind.c | 1535 return pc + 2; // SIB + disp8 1537 return pc + 5; // SIB + disp32 1538 return pc + 1; // SIB 3171 { // SP or R12. Decode SIB-byte. 3172 int sib = *cur->pc++; local 3173 int scale = 1 << (sib >> 6); 3174 int index = X | ((sib >> 3) & 7); 3175 int base = B | (sib & 7); 3838 else if (modrm != 0x24 /*ignore SIB*/) /* jumpn *(reg) or jumpn reg */
|
| /src/external/gpl3/gcc/dist/gcc/ |
| gimple-ssa-strength-reduction.cc | 2958 slsr_cand_t sib = unreplaced_cand_in_tree (lookup_cand (c->sibling)); 2959 if (sib) 2960 return sib; 2949 slsr_cand_t sib = unreplaced_cand_in_tree (lookup_cand (c->sibling)); local
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| gimple-ssa-strength-reduction.cc | 2958 slsr_cand_t sib = unreplaced_cand_in_tree (lookup_cand (c->sibling)); 2959 if (sib) 2960 return sib; 2949 slsr_cand_t sib = unreplaced_cand_in_tree (lookup_cand (c->sibling)); local
|
| /src/common/lib/libx86emu/ |
| x86emu.c | 787 * return offset from the SIB Byte 790 decode_sib_address(struct X86EMU *emu, int sib, int mod) 794 switch (sib & 0x07) { 826 switch ((sib >> 3) & 0x07) { 852 scale = 1 << ((sib >> 6) & 0x03); 870 uint32_t offset, sib; local 886 sib = fetch_byte_imm(emu); 887 offset = decode_sib_address(emu, sib, 0);
|
| /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
|
| i386-dis.c | 216 sib; member in struct:instr_info 467 #define sIb { OP_sI, b_mode } /* sign extened byte */ 756 /* mandatory non-vector SIB. */ 2086 { "imulS", { Gv, Ev, sIb }, 0 }, 2728 { "addQ", { Evh1, sIb }, 0 }, 2729 { "orQ", { Evh1, sIb }, 0 }, 2730 { "adcQ", { Evh1, sIb }, 0 }, 2731 { "sbbQ", { Evh1, sIb }, 0 }, 2732 { "andQ", { Evh1, sIb }, 0 }, 2733 { "subQ", { Evh1, sIb }, 0 } [all...] |
| /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
|
| i386-dis.c | 216 sib; member in struct:instr_info 467 #define sIb { OP_sI, b_mode } /* sign extened byte */ 756 /* mandatory non-vector SIB. */ 2077 { "imulS", { Gv, Ev, sIb }, 0 }, 2719 { "addQ", { Evh1, sIb }, 0 }, 2720 { "orQ", { Evh1, sIb }, 0 }, 2721 { "adcQ", { Evh1, sIb }, 0 }, 2722 { "sbbQ", { Evh1, sIb }, 0 }, 2723 { "andQ", { Evh1, sIb }, 0 }, 2724 { "subQ", { Evh1, sIb }, 0 } [all...] |
| /src/external/gpl3/gdb/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
|
| i386-dis.c | 216 sib; member in struct:instr_info 468 #define sIb { OP_sI, b_mode } /* sign extened byte */ 756 /* mandatory non-vector SIB. */ 2016 { "imulS", { Gv, Ev, sIb }, 0 }, 2658 { "addQ", { Evh1, sIb }, 0 }, 2659 { "orQ", { Evh1, sIb }, 0 }, 2660 { "adcQ", { Evh1, sIb }, 0 }, 2661 { "sbbQ", { Evh1, sIb }, 0 }, 2662 { "andQ", { Evh1, sIb }, 0 }, 2663 { "subQ", { Evh1, sIb }, 0 } [all...] |
| /src/external/gpl3/gdb.old/dist/opcodes/ |
| i386-opc.h | 671 /* Instruction with a mandatory SIB byte: 680 SIB, 793 unsigned int sib:3; member in struct:i386_opcode_modifier
|
| /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...] |