Home | History | Annotate | Download | only in cached

Lines Matching refs:Variable

141 /// VariableExprAST - Expression class for referencing a variable, like "a".
292 if (CurTok != '(') // Simple variable ref.
412 // At least one variable name is required.
646 // Look this variable up in the function.
648 if (V == 0) return ErrorV("Unknown variable name");
677 return ErrorV("destination of '=' must be a variable");
683 Value *Variable = NamedValues[LHSE->getName()];
684 if (Variable == 0) return ErrorV("Unknown variable name");
686 Builder.CreateStore(Val, Variable);
812 // Create an alloca for the variable in the entry block.
815 // Emit the start code first, without 'variable' in scope.
832 // Within the loop, the variable is defined equal to the PHI node. If it
833 // shadows an existing variable, we have to restore it, so save it now.
858 // the body of the loop mutates the variable.
877 // Restore the unshadowed variable.
898 // Emit the initializer before adding the variable to scope, this prevents
899 // the initializer from referencing the variable itself, and permits stuff
914 // Remember the old variable binding so that we can restore the binding when
974 // Create an alloca for this variable.
980 // Add arguments to variable symbol table.