Home | History | Annotate | Download | only in complete

Lines Matching refs:Variable

167 /// VariableExprAST - Expression class for referencing a variable, like "a".
318 if (CurTok != '(') // Simple variable ref.
438 // At least one variable name is required.
1089 // Look this variable up in the function.
1091 if (V == 0) return ErrorV("Unknown variable name");
1118 return ErrorV("destination of '=' must be a variable");
1124 Value *Variable = NamedValues[LHSE->getName()];
1125 if (Variable == 0) return ErrorV("Unknown variable name");
1127 Builder.CreateStore(Val, Variable);
1251 // Create an alloca for the variable in the entry block.
1254 // Emit the start code first, without 'variable' in scope.
1271 // Within the loop, the variable is defined equal to the PHI node. If it
1272 // shadows an existing variable, we have to restore it, so save it now.
1297 // the body of the loop mutates the variable.
1316 // Restore the unshadowed variable.
1337 // Emit the initializer before adding the variable to scope, this prevents
1338 // the initializer from referencing the variable itself, and permits stuff
1353 // Remember the old variable binding so that we can restore the binding when
1419 // Create an alloca for this variable.
1425 // Add arguments to variable symbol table.