Home | History | Annotate | Download | only in initial

Lines Matching defs:it

25 // The lexer returns tokens [0-255] if it is an unknown character, otherwise one
197 /// which captures its argument names as well as if it is an operator.
255 // Make sure it's a declared binop.
457 // If the current token is not an operator, it must be a primary expr.
461 // If this is a unary operator, read it.
477 // consume it, otherwise we are done.
686 /// found, this function returns a null pointer. Otherwise, it prints a
697 // Try the standard symbol resolution first, but ask it not to abort.
715 EngineVector::iterator it;
716 for (it = begin; it != end; ++it)
717 delete *it;
723 ModuleVector::iterator it;
724 for (it = begin; it != end; ++it) {
725 Function *F = (*it)->getFunction(FnName);
727 if (*it == OpenModule)
769 EngineVector::iterator it;
770 for (it = begin; it != end; ++it) {
771 void *P = (*it)->getPointerToFunction(F);
776 // If we didn't find the function, see if we can generate it.
809 Module::iterator it;
811 for (it = OpenModule->begin(); it != end; ++it) {
813 FPM->run(*it);
832 EngineVector::iterator it;
833 for (it = begin; it != end; ++it) {
834 if (Function *F = (*it)->FindFunctionNamed(Name.c_str()))
835 return (*it)->getPointerToFunction(F);
845 ModuleVector::iterator it;
846 for (it = begin; it != end; ++it)
847 (*it)->dump();
932 // If it wasn't a builtin binary operator, it must be a user defined one. Emit
933 // a call to it.
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.
1090 // Create the "after loop" block and insert it.
1169 // If F conflicted, there was already something named 'FnName'. If it has a
1199 /// argument in the symbol table so that references to it will succeed.
1221 // If this is an operator, install it.
1289 // Cast it to the right type (takes no arguments, returns a double) so we
1290 // can call it as a native function.
1331 /// printd - printf that takes a double prints it as "%f\n", returning 0.