Lines Matching refs:Variable
125 /// VariableExprAST - Expression class for referencing a variable, like "a".
276 if (CurTok != '(') // Simple variable ref.
396 // At least one variable name is required.
875 // Look this variable up in the function.
878 sprintf(ErrStr, "Unknown variable name %s", Name.c_str());
902 return ErrorV("destination of '=' must be a variable");
908 Value *Variable = NamedValues[LHSE->getName()];
909 if (Variable == 0) return ErrorV("Unknown variable name");
911 Builder.CreateStore(Val, Variable);
1034 // Create an alloca for the variable in the entry block.
1037 // Emit the start code first, without 'variable' in scope.
1054 // Within the loop, the variable is defined equal to the PHI node. If it
1055 // shadows an existing variable, we have to restore it, so save it now.
1080 // the body of the loop mutates the variable.
1099 // Restore the unshadowed variable.
1120 // Emit the initializer before adding the variable to scope, this prevents
1121 variable itself, and permits stuff
1136 // Remember the old variable binding so that we can restore the binding when
1203 // Create an alloca for this variable.
1209 // Add arguments to variable symbol table.