HomeSort by: relevance | last modified time | path
    Searched refs:Program (Results 1 - 25 of 213) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
ReduceAliases.cpp 24 Module *Program) {
27 for (auto &GA : make_early_inc_range(Program->aliases())) {
36 static int countAliases(Module *Program) {
41 for (auto &GA : Program->aliases())
ReduceFunctionBodies.cpp 24 Module *Program) {
29 for (auto &F : *Program)
38 static int countFunctionDefinitions(Module *Program) {
43 for (auto &F : *Program)
ReduceModuleInlineAsm.cpp 21 Module *Program) {
26 Program->setModuleInlineAsm("");
ReduceGlobalValues.cpp 26 Module *Program) {
30 for (auto &GV : Program->global_values())
38 static int countGVs(Module *Program) {
43 for (auto &GV : Program->global_values())
ReduceGlobalVarInitializers.cpp 22 Module *Program) {
26 for (auto &GV : Program->globals())
36 static int countGVs(Module *Program) {
41 for (auto &GV : Program->globals())
ReduceSpecialGlobals.cpp 31 Module *Program) {
35 if (auto *Used = Program->getNamedGlobal(Name)) {
44 static int countSpecialGlobals(Module *Program) {
50 if (auto *Used = Program->getNamedGlobal(Name))
ReduceMetadata.cpp 50 Module *Program) {
57 for (auto &GV : Program->globals())
60 for (auto &F : *Program) {
68 for (auto &GV : Program->globals())
71 for (auto &F : *Program) {
81 for (auto &MD : Program->named_metadata())
103 static int countMetadataTargets(Module *Program) {
105 int NamedMetadataNodes = Program->named_metadata_size();
108 for (auto &GV : Program->globals())
112 for (auto &F : *Program) {
    [all...]
ReduceGlobalVars.cpp 22 Module *Program) {
27 for (auto &GV : Program->globals())
34 for (auto &GV : Program->globals())
59 static int countGVs(Module *Program) {
64 for (auto &GV : Program->globals())
ReduceInstructions.cpp 21 Module *Program) {
26 for (auto &F : *Program)
37 for (auto &F : *Program)
50 static unsigned countInstructions(Module *Program) {
54 for (auto &F : *Program)
ReduceFunctions.cpp 27 Module *Program) {
32 copy_if(Program->functions(), std::back_inserter(FuncsToRemove),
56 static int countFunctions(Module *Program) {
61 for (auto &F : *Program) {
ReduceOperandBundles.cpp 100 Module *Program) {
102 R.visit(Program);
109 static int countOperandBundes(Module *Program) {
114 C.visit(Program);
ReduceBasicBlocks.cpp 91 Module *Program) {
96 for (auto &F : *Program)
102 for (auto &F : *Program)
113 for (auto &F : *Program)
131 static int countBasicBlocks(Module *Program) {
135 for (auto &F : *Program)
ReduceArguments.cpp 44 Module *Program) {
50 for (auto &F : *Program)
92 Program->getFunctionList().insertAfter(F->getIterator(), ClonedFunc);
105 static int countArguments(Module *Program) {
110 for (auto &F : *Program)
  /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/
TestRunner.h 17 #include "llvm/Support/Program.h"
34 Module *getProgram() const { return Program.get(); }
36 void setProgram(std::unique_ptr<Module> P) { Program = std::move(P); }
41 std::unique_ptr<Module> Program;
  /src/external/apache2/llvm/dist/llvm/utils/not/
not.cpp 14 #include "llvm/Support/Program.h"
49 auto Program = sys::findProgramByName(argv[0]);
50 if (!Program) {
52 << "' in PATH: " << Program.getError().message() << "\n";
61 int Result = sys::ExecuteAndWait(*Program, Argv, None, {}, 0, 0, &ErrMsg);
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
FindBugs.cpp 33 outs() << "Generating reference output from raw program: \n";
34 if (Error E = createReferenceFile(*Program))
47 // Step 2: Run optimizer passes on the program and check for success.
49 outs() << "Running selected passes on program to test for crash: ";
55 if (runPasses(*Program, PassesToRun, Filename, false)) {
67 if (Error E = compileProgram(*Program)) {
75 // Step 4: Run the program and compare its output to the reference
79 Expected<bool> Diff = diffProgram(*Program, Filename, "", false);
BugDriver.cpp 48 // program. If this filename is set, it is used as the reference diff source,
53 cl::desc("Specify a reference program output "
57 /// If we reduce or update the program somehow, call this method to update
59 /// as the current program.
61 Program = std::move(M);
81 Program(nullptr), Interpreter(nullptr), SafeInterpreter(nullptr),
122 std::unique_ptr<Module> OldProgram = std::move(Program);
123 Program = std::move(M);
133 assert(!Program && "Cannot call addSources multiple times!");
137 Program = parseInputFile(Filenames[0], Context)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Program.cpp 1 //===-- Program.cpp - Implement OS Program Concept --------------*- C++ -*-===//
9 // This file implements the operating system Program concept.
13 #include "llvm/Support/Program.h"
26 static bool Execute(ProcessInfo &PI, StringRef Program,
32 int sys::ExecuteAndWait(StringRef Program, ArrayRef<StringRef> Args,
41 if (Execute(PI, Program, Args, Env, Redirects, MemoryLimit, ErrMsg,
57 ProcessInfo sys::ExecuteNoWait(StringRef Program, ArrayRef<StringRef> Args,
66 if (!Execute(PI, Program, Args, Env, Redirects, MemoryLimit, ErrMsg,
74 bool sys::commandLineFitsWithinSystemLimits(StringRef Program,
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Function.h 25 class Program;
113 Function(Program &P, const FunctionDecl *F, unsigned ArgSize,
128 friend class Program;
131 /// Program reference.
132 Program &P;
141 /// Program code.
Context.h 33 class Program;
79 /// Constexpr program.
80 std::unique_ptr<Program> P;
Disasm.cpp 16 #include "Program.h"
61 LLVM_DUMP_METHOD void Program::dump() const { dump(llvm::errs()); }
63 LLVM_DUMP_METHOD void Program::dump(llvm::raw_ostream &OS) const {
EvalEmitter.h 21 #include "Program.h"
31 class Program;
46 EvalEmitter(Context &Ctx, Program &P, State &Parent, InterpStack &Stk,
86 /// Current program.
87 Program &P;
Program.cpp 1 //===--- Program.cpp - Bytecode for the constexpr VM ------------*- C++ -*-===//
9 #include "Program.h"
21 unsigned Program::createGlobalString(const StringLiteral *S) {
82 Pointer Program::getPtrGlobal(unsigned Idx) {
87 llvm::Optional<unsigned> Program::getGlobal(const ValueDecl *VD) {
111 llvm::Optional<unsigned> Program::getOrCreateGlobal(const ValueDecl *VD) {
122 llvm::Optional<unsigned> Program::getOrCreateDummy(const ParmVarDecl *PD) {
141 llvm::Optional<unsigned> Program::createGlobal(const ValueDecl *VD) {
158 llvm::Optional<unsigned> Program::createGlobal(const Expr *E) {
162 llvm::Optional<unsigned> Program::createGlobal(const DeclTy &D, QualType Ty
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Program.h 1 //===- llvm/Support/Program.h ------------------------------------*- C++ -*-===//
9 // This file declares the llvm::sys::Program class.
93 /// This function executes the program using the arguments provided. The
94 /// invoked program will inherit the stdin, stdout, and stderr file
96 /// invoking program.
97 /// This function waits for the program to finish, so should be avoided in
100 /// \returns an integer result code indicating the status of the program.
101 /// A zero or positive value indicates the result code of the program.
105 StringRef Program, ///< Path of the program to be executed. It i
    [all...]
  /src/external/apache2/llvm/dist/libcxx/
appveyor-reqs-install.cmd 15 START /WAIT llvm-installer.exe /S /D=C:\"Program Files\LLVM"
17 if DEFINED CLANG_VERSION @set PATH="C:\Program Files\LLVM\bin";%PATH%
20 if DEFINED MINGW_PATH rename "C:\Program Files\Git\usr\bin\sh.exe" "sh-ignored.exe"
21 if DEFINED MINGW_PATH @set "PATH=%PATH:C:\Program Files (x86)\Git\bin=%"

Completed in 30 milliseconds

1 2 3 4 5 6 7 8 9