Home | History | Annotate | Download | only in priv

Lines Matching defs:amode

203 /* Construct a b12 amode. */
220 /* Construct a b20 amode. */
237 /* Construct a bx12 amode. */
256 /* Construct a bx20 amode. */
275 /* Construct an AMODE for accessing the guest state at OFFSET */
286 /* Decompile the given amode into a static buffer and return it. */
326 /* Sanity check for an amode */
351 /* Record the register use of an amode */
460 vassert(offsetB <= (1 << 12)); /* because we use b12 amode */
487 vassert(offsetB <= (1 << 12)); /* because we use b12 amode */
4816 case 'A': /* %A = amode */
7594 const s390_amode *amode = insn->variant.xdirect.guest_IA;
7595 vassert(amode->tag == S390_AMODE_B12);
7596 UInt b = hregNumber(amode->b);
7597 UInt d = amode->d;
7673 const s390_amode *amode = insn->variant.xindir.guest_IA;
7675 vassert(amode->tag == S390_AMODE_B12);
7676 UInt b = hregNumber(amode->b);
7677 UInt d = amode->d;
7725 const s390_amode *amode = insn->variant.xassisted.guest_IA;
7727 vassert(amode->tag == S390_AMODE_B12);
7728 UInt b = hregNumber(amode->b);
7729 UInt d = amode->d;
7793 s390_amode *amode;
7799 amode = insn->variant.evcheck.counter;
7800 vassert(amode->tag == S390_AMODE_B12);
7801 b = hregNumber(amode->b);
7802 d = amode->d;
7817 amode = insn->variant.evcheck.fail_addr;
7818 b = hregNumber(amode->b);
7819 d = amode->d;