Lines Matching refs:Variable
142 /// VariableExprAST - Expression class for referencing a variable, like "a".
333 if (CurTok != '(') // Simple variable ref.
444 // At least one variable name is required.
716 // Look this variable up in the function.
719 return ErrorV("Unknown variable name");
746 return ErrorV("destination of '=' must be a variable");
753 Value *Variable = NamedValues[LHSE->getName()];
754 if (!Variable)
755 return ErrorV("Unknown variable name");
757 Builder.CreateStore(Val, Variable);
887 // Create an alloca for the variable in the entry block.
890 // Emit the start code first, without 'variable' in scope.
909 // Within the loop, the variable is defined equal to the PHI node. If it
910 // shadows an existing variable, we have to restore it, so save it now.
937 // the body of the loop mutates the variable.
956 // Restore the unshadowed variable.
976 // Emit the initializer before adding the variable to scope, this prevents
977 // the initializer from referencing the variable itself, and permits stuff
993 // Remember the old variable binding so that we can restore the binding when
1052 // Create an alloca for this variable.
1058 // Add arguments to variable symbol table.