Home | History | Annotate | Download | only in src

Lines Matching refs:Variable

27 ///   for (Variable Var : Op.Vars())
57 /// Similarly, the current Variable's Operand index can be obtained with
63 /// statements, variable initialization and expression evaluations. You have
80 /// * i --> outer loop control variable;
81 /// * Var##Index --> the current variable index
83 /// * j --> the inner loop control variable
89 /// Operand * variable to hold the current operand being evaluated to avoid
92 /// variable with nullptr, so UnreachableThenBody is trully unreachable, and
102 /// 4) Init2 is where the voodoo starts. It declares a Variable * local
103 /// variable name 'Var' (i.e., whatever identifier the first parameter to
106 /// initializing Var = CurrentOperand->Variable(0) would lead to an assertion.
112 /// Variable *Var = (j = 0, CurrentOperand = Instr.Operand[i],
123 /// body: we need to initialize Var with the current variable, but only if the
125 /// make Var point to the current Variable, but only if there were more
139 /// 6) Step2 increments the inner loop's control variable, as well as the
140 /// current variable index.
153 for (Variable *Var = \