Lines Matching refs:push_back
173 LLIArgs.push_back(LLIPath);
174 LLIArgs.push_back("-force-interpreter=true");
179 LLIArgs.push_back("-load");
180 LLIArgs.push_back(*i);
185 LLIArgs.push_back(ToolArgs[i]);
187 LLIArgs.push_back(Bitcode);
190 LLIArgs.push_back(Args[i]);
269 ProgramArgs.push_back(CompilerCommand);
272 ProgramArgs.push_back(Arg);
273 ProgramArgs.push_back(Bitcode);
277 ProgramArgs.push_back(Arg);
318 ProgramArgs.push_back(ExecutionCommand);
321 ProgramArgs.push_back(ExecutorArgs[i]);
322 ProgramArgs.push_back(Bitcode);
326 ProgramArgs.push_back(Args[i]);
366 Token.push_back(CommandLine[++Pos]);
381 Args.push_back(Token);
385 Token.push_back(CommandLine[Pos]);
447 LLCArgs.push_back(LLCPath);
451 LLCArgs.push_back(ToolArgs[i]);
453 LLCArgs.push_back("-o");
454 LLCArgs.push_back(OutputAsmFile); // Output to the Asm file
455 LLCArgs.push_back(Bitcode); // This is the input bitcode
458 LLCArgs.push_back("-filetype=obj");
562 JITArgs.push_back(LLIPath);
563 JITArgs.push_back("-force-interpreter=false");
567 JITArgs.push_back(ToolArgs[i]);
570 JITArgs.push_back("-load");
571 JITArgs.push_back(SharedLibs[i]);
573 JITArgs.push_back(Bitcode);
576 JITArgs.push_back(Args[i]);
631 CCArgs.push_back(CCPath);
634 CCArgs.push_back("-m32");
639 CCArgs.push_back(*I);
643 CCArgs.push_back("-x");
645 CCArgs.push_back("c");
646 CCArgs.push_back("-fno-strict-aliasing");
648 CCArgs.push_back("assembler");
654 CCArgs.push_back("-force_cpusubtype_ALL");
658 CCArgs.push_back(ProgramFile); // Specify the input filename.
660 CCArgs.push_back("-x");
661 CCArgs.push_back("none");
662 CCArgs.push_back("-o");
671 CCArgs.push_back(OutputBinary); // Output to the right file...
678 CCArgs.push_back(ArgsForCC[i]);
680 CCArgs.push_back("-lm"); // Hard-code the math library...
681 CCArgs.push_back("-O2"); // Optimize the program a bit...
683 CCArgs.push_back("-mcpu=v9");
701 ProgramArgs.push_back(OutputBinary);
703 ProgramArgs.push_back(RemoteClientPath);
704 ProgramArgs.push_back(RemoteHost);
706 ProgramArgs.push_back("-l");
707 ProgramArgs.push_back(RemoteUser);
710 ProgramArgs.push_back("-p");
711 ProgramArgs.push_back(RemotePort);
714 ProgramArgs.push_back(RemoteExtra);
724 ProgramArgs.push_back(Exec);
729 ProgramArgs.push_back(Args[i]);
779 CCArgs.push_back(CCPath);
782 CCArgs.push_back("-m32");
787 CCArgs.push_back(*I);
791 CCArgs.push_back("-x");
792 CCArgs.push_back(fileType == AsmFile ? "assembler" : "c");
794 CCArgs.push_back("-fno-strict-aliasing");
795 CCArgs.push_back(InputFile); // Specify the input filename.
796 CCArgs.push_back("-x");
797 CCArgs.push_back("none");
799 CCArgs.push_back("-G"); // Compile a shared library, `-G' for Sparc
805 CCArgs.push_back("-single_module");
806 CCArgs.push_back("-dynamiclib"); // `-dynamiclib' for MacOS X/PowerPC
807 CCArgs.push_back("-undefined");
808 CCArgs.push_back("dynamic_lookup");
810 CCArgs.push_back("-shared"); // `-shared' for Linux/X86, maybe others
813 CCArgs.push_back("-fPIC"); // Requires shared objs to contain PIC
816 CCArgs.push_back("-mcpu=v9");
818 CCArgs.push_back("-o");
819 CCArgs.push_back(OutputFile); // Output to the right filename.
820 CCArgs.push_back("-O2"); // Optimize the program a bit.
827 CCArgs.push_back(ArgsForCC[i]);