Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Value

68 /// The node Value is positive when the variable should be in a register. The
69 /// value can change when linked nodes change, but convergence is very fast
78 /// Value - Output value of this node computed from the Bias and links.
81 int Value;
94 // Undecided nodes (Value==0) go on the stack.
95 return Value > 0;
109 BiasN = BiasP = Value = 0;
146 /// update - Recompute Value from Bias and Links. Return true when node
153 if (nodes[I->second].Value == -1)
155 else if (nodes[I->second].Value == 1)
160 // bundle. Ideally, we should simply set Value = sign(SumP - SumN), but we
169 Value = -1;
171 Value = 1;
173 Value = 0;
306 // change its value ever again, so exclude it from iterations.