HomeSort by: relevance | last modified time | path
    Searched defs:Program (Results 1 - 7 of 7) sorted by relevancy

  /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/tools/bugpoint/
BugDriver.h 52 std::unique_ptr<Module> Program; // The raw program, linked together
54 AbstractInterpreter *Interpreter; // How to run the program
108 /// miscompiles Program as input. It tries to reduce the testcase to
109 /// something that smaller that still miscompiles the program.
130 Module &getProgram() const { return *Program; }
143 /// If we reduce or update the program somehow, call this method to update
145 /// as the current program.
152 /// This method runs "Program", capturing the output of the program to a file
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Program.h 1 //===--- Program.h - Bytecode for the constexpr VM --------------*- C++ -*-===//
9 // Defines a program which organises and links multiple bytecode functions.
42 /// The program contains and links the bytecode for all functions.
43 class Program {
45 Program(Context &Ctx) : Ctx(Ctx) {}
116 DeclScope(Program &P, const VarDecl *VD) : P(P) { P.startDeclaration(VD); }
120 Program &P;
  /src/external/apache2/llvm/dist/clang/tools/c-index-test/
core_main.cpp 24 #include "llvm/Support/Program.h"
381 auto Program = llvm::sys::findProgramByName(Args[0]);
382 if (std::error_code ec = Program.getError()) {
387 return llvm::sys::ExecuteAndWait(*Program, execArgs);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-ml/
llvm-ml.cpp 84 SmallString<255> Program = ProgName;
85 sys::path::replace_extension(Program, "");
86 if (Program.endswith("ml64"))
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
AMDGPU.cpp 726 std::string Program;
728 Program = A->getValue();
730 Program = GetProgramPath(AMDGPU_ARCH_PROGRAM_NAME);
743 Program.c_str(), {}, {}, Redirects, /* SecondsToWait */ 0,
754 Program + ": " + ErrorMessage);
761 "Failed to read stdout of " + Program +
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
SymbolRecord.h 450 uint32_t Program = 0;
471 uint32_t Program = 0;

Completed in 17 milliseconds