Lines Matching refs:Variable
226 /// VariableExprAST - Expression class for referencing a variable, like "a".
472 if (CurTok != '(') // Simple variable ref.
585 // At least one variable name is required.
899 // Look this variable up in the function.
902 return ErrorV("Unknown variable name");
933 return ErrorV("destination of '=' must be a variable");
940 Value *Variable = NamedValues[LHSE->getName()];
941 if (!Variable)
942 return ErrorV("Unknown variable name");
944 Builder.CreateStore(Val, Variable);
1078 // Create an alloca for the variable in the entry block.
1083 // Emit the start code first, without 'variable' in scope.
1102 // Within the loop, the variable is defined equal to the PHI node. If it
1103 // shadows an existing variable, we have to restore it, so save it now.
1130 // the body of the loop mutates the variable.
1149 // Restore the unshadowed variable.
1169 // Emit the initializer before adding the variable to scope, this prevents
1170 // the initializer from referencing the variable itself, and permits stuff
1186 // Remember the old variable binding so that we can restore the binding when
1269 // Create an alloca for this variable.
1272 // Create a debug descriptor for the variable.
1284 // Add arguments to variable symbol table.