Lines Matching defs:strm
1026 struct x86_store *strm;
2046 if (instr->strm->disp.type == DISP_1) {
2048 } else if (instr->strm->disp.type == DISP_2) {
2050 } else if (instr->strm->disp.type == DISP_4) {
2064 instr->strm->disp.data = data;
2096 instr->strm->type = STORE_DUALREG;
2097 instr->strm->u.dualreg.reg1 = reg1;
2098 instr->strm->u.dualreg.reg2 = reg2;
2100 if (instr->strm->disp.type == DISP_NONE) {
2102 } else if (instr->strm->disp.type == DISP_0) {
2177 instr->strm->disp.type = DISP_4;
2181 instr->strm->type = STORE_SIB;
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);
2189 if (instr->strm->disp.type == DISP_1 ||
2190 instr->strm->disp.type == DISP_2 ||
2191 instr->strm->disp.type == DISP_4) {
2226 if (instr->strm->disp.type == DISP_NONE) {
2305 struct x86_store *strg, *strm;
2322 strm = &instr->dst;
2324 strm = &instr->src;
2329 instr->strm = strm;
2362 strm->disp.type = get_disp_type(instr);
2372 strm->type = STORE_REG;
2373 strm->u.reg = &gpr_map__rip;
2374 strm->disp.type = DISP_4;
2381 strm->type = STORE_REG;
2382 strm->u.reg = NULL;
2383 strm->disp.type = DISP_4;
2390 strm->type = STORE_REG;
2391 strm->u.reg = NULL;
2392 strm->disp.type = DISP_2;
2407 strm->type = STORE_REG;
2408 strm->u.reg = reg;
2410 if (strm->disp.type == DISP_NONE) {
2417 } else if (strm->disp.type == DISP_0) {