Home | History | Annotate | Download | only in ssa

Lines Matching refs:reverse

50 		// reverse is the predecessor from which the truth value comes.
51 var reverse int
53 reverse = 0
55 reverse = 1
67 phioptint(v, b0, reverse)
79 if v.Args[reverse].AuxInt != v.Args[1-reverse].AuxInt {
81 v.reset(ops[v.Args[reverse].AuxInt])
95 if v.Args[reverse].Op == OpConstBool && v.Args[reverse].AuxInt == 1 {
96 if tmp := v.Args[1-reverse]; sdom.isAncestorEq(tmp.Block, b) {
111 if v.Args[1-reverse].Op == OpConstBool && v.Args[1-reverse].AuxInt == 0 {
112 if tmp := v.Args[reverse]; sdom.isAncestorEq(tmp.Block, b) {
125 func phioptint(v *Value, b0 *Block, reverse int) {
147 if reverse == 1 {