Home | History | Annotate | Download | only in lazy

Lines Matching refs:Variable

127 /// VariableExprAST - Expression class for referencing a variable, like "a".
278 if (CurTok != '(') // Simple variable ref.
398 // At least one variable name is required.
915 // Look this variable up in the function.
918 sprintf(ErrStr, "Unknown variable name %s", Name.c_str());
942 return ErrorV("destination of '=' must be a variable");
948 Value *Variable = NamedValues[LHSE->getName()];
949 if (Variable == 0) return ErrorV("Unknown variable name");
951 Builder.CreateStore(Val, Variable);
1074 // Create an alloca for the variable in the entry block.
1077 // Emit the start code first, without 'variable' in scope.
1094 // Within the loop, the variable is defined equal to the PHI node. If it
1095 // shadows an existing variable, we have to restore it, so save it now.
1120 // the body of the loop mutates the variable.
1139 // Restore the unshadowed variable.
1160 // Emit the initializer before adding the variable to scope, this prevents
1161 // the initializer from referencing the variable itself, and permits stuff
1176 // Remember the old variable binding so that we can restore the binding when
1243 // Create an alloca for this variable.
1249 // Add arguments to variable symbol table.