Home | History | Annotate | Download | only in lazy

Lines Matching refs:Variable

126 /// VariableExprAST - Expression class for referencing a variable, like "a".
277 if (CurTok != '(') // Simple variable ref.
397 // At least one variable name is required.
631 // Look this variable up in the function.
633 if (V == 0) return ErrorV("Unknown variable name");
659 return ErrorV("destination of '=' must be a variable");
665 Value *Variable = NamedValues[LHSE->getName()];
666 if (Variable == 0) return ErrorV("Unknown variable name");
668 Builder.CreateStore(Val, Variable);
794 // Create an alloca for the variable in the entry block.
797 // Emit the start code first, without 'variable' in scope.
814 // Within the loop, the variable is defined equal to the PHI node. If it
815 // shadows an existing variable, we have to restore it, so save it now.
840 // the body of the loop mutates the variable.
859 // Restore the unshadowed variable.
880 // Emit the initializer before adding the variable to scope, this prevents
881 // the initializer from referencing the variable itself, and permits stuff
896 // Remember the old variable binding so that we can restore the binding when
956 // Create an alloca for this variable.
962 // Add arguments to variable symbol table.