Lines Matching refs:hi16
25 "andoui $rt,$rs,$hi16"
26 (+ OP_ANDOUI rs rt hi16)
27 (set rt (and rs (or (sll hi16 16) #xFFFF)))
31 "andoui ${rt-rs},$hi16"
32 (+ OP_ANDOUI rt-rs hi16)
33 (set rt-rs (and rt-rs (or (sll hi16 16) #xFFFF)))
37 "orui ${rt-rs},$hi16"
38 (+ OP_ORUI rt-rs hi16)
39 (set rt-rs (or rt-rs (sll hi16 16)))
43 "orui $rt,$rs,$hi16"
44 (+ OP_ORUI rs rt hi16)
45 (set rt (or rs (sll hi16 16)))