Lines Matching defs:it
48 // The lexer returns tokens [0-255] if it is an unknown character, otherwise one
220 /// which captures its argument names as well as if it is an operator.
278 // Make sure it's a declared binop.
480 // If the current token is not an operator, it must be a primary expr.
484 // If this is a unary operator, read it.
500 // consume it, otherwise we are done.
687 // If we've flagged this as an IR file, cache it
704 // to which it refers.
709 // If we've flagged this as an IR file, cache it
722 // a copy. The filed-based buffer will be released when it goes
778 /// found, this function returns a null pointer. Otherwise, it prints a
789 // Try the standard symbol resolution first, but ask it not to abort.
804 ModuleVector::iterator it, end;
805 for (it = Modules.begin(), end = Modules.end();
806 it != end; ++it) {
808 std::map<Module*, ExecutionEngine*>::iterator mapIt = EngineMap.find(*it);
813 // Otherwise, we still own the module. Delete it now.
814 delete *it;
822 ModuleVector::iterator it;
823 for (it = begin; it != end; ++it) {
824 Function *F = (*it)->getFunction(FnName);
826 if (*it == OpenModule)
868 ModuleVector::iterator it;
870 for (it = begin; it != end; ++it) {
871 Function *MF = (*it)->getFunction(FnName);
873 std::map<Module*, ExecutionEngine*>::iterator eeIt = EngineMap.find(*it);
879 ExecutionEngine *EE = compileModule(*it);
913 // If we've flagged this as an IR file, it doesn't need function passes run.
936 Module::iterator it;
938 for (it = M->begin(); it != end; ++it) {
940 FPM->run(*it);
959 ModuleVector::iterator it;
960 for (it = begin; it != end; ++it) {
961 Function *F = (*it)->getFunction(Name);
963 std::map<Module*, ExecutionEngine*>::iterator eeIt = EngineMap.find(*it);
969 ExecutionEngine *EE = compileModule(*it);
987 ModuleVector::iterator it;
988 for (it = begin; it != end; ++it)
989 (*it)->dump();
1074 // If it wasn't a builtin binary operator, it must be a user defined one. Emit
1075 // a call to it.
1196 // Within the loop, the variable is defined equal to the PHI node. If it
1197 // shadows an existing variable, we have to restore it, so save it now.
1232 // Create the "after loop" block and insert it.
1311 // If F conflicted, there was already something named 'FnName'. If it has a
1341 /// argument in the symbol table so that references to it will succeed.
1363 // If this is an operator, install it.
1432 // Cast it to the right type (takes no arguments, returns a double) so we
1433 // can call it as a native function.
1474 /// printd - printf that takes a double prints it as "%f\n", returning 0.