Home
last modified time | relevance | path

Searched refs:Program (Results 1 – 25 of 190) sorted by relevance

12345678

/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DBugDriver.cpp61 Program = std::move(M); in setNewProgram()
122 std::unique_ptr<Module> OldProgram = std::move(Program); in swapProgramIn()
123 Program = std::move(M); in swapProgramIn()
133 assert(!Program && "Cannot call addSources multiple times!"); in addSources()
137 Program = parseInputFile(Filenames[0], Context); in addSources()
138 if (!Program) in addSources()
149 if (Linker::linkModules(*Program, std::move(M))) in addSources()
178 if (runPasses(*Program, PassesToRun)) in run()
188 if (Error E = compileProgram(*Program)) { in run()
201 if (Error E = createReferenceFile(*Program)) { in run()
[all …]
H A DFindBugs.cpp34 if (Error E = createReferenceFile(*Program)) in runManyPasses()
55 if (runPasses(*Program, PassesToRun, Filename, false)) { in runManyPasses()
67 if (Error E = compileProgram(*Program)) { in runManyPasses()
79 Expected<bool> Diff = diffProgram(*Program, Filename, "", false); in runManyPasses()
H A DBugDriver.h48 std::unique_ptr<Module> Program; // The raw program, linked together variable
117 Module &getProgram() const { return *Program; } in getProgram()
141 Expected<std::string> executeProgram(const Module &Program,
151 executeProgramSafely(const Module &Program,
164 Expected<bool> diffProgram(const Module &Program,
218 bool runPasses(Module &Program, const std::vector<std::string> &PassesToRun,
H A DExecutionDriver.cpp282 Expected<std::string> BugDriver::executeProgram(const Module &Program, in executeProgram() argument
304 if (writeProgramToFile(BitcodeFile, UniqueFD, Program)) { in executeProgram()
370 BugDriver::executeProgramSafely(const Module &Program, in executeProgramSafely() argument
372 return executeProgram(Program, OutputFile, "", "", SafeInterpreter); in executeProgramSafely()
401 if (Error E = compileProgram(*Program)) in createReferenceFile()
404 Expected<std::string> Result = executeProgramSafely(*Program, Filename); in createReferenceFile()
427 Expected<bool> BugDriver::diffProgram(const Module &Program, in diffProgram() argument
433 executeProgram(Program, "", BitcodeFile, SharedObject, nullptr); in diffProgram()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DProgram.cpp25 static bool Execute(ProcessInfo &PI, StringRef Program,
32 int sys::ExecuteAndWait(StringRef Program, ArrayRef<StringRef> Args, in ExecuteAndWait() argument
41 if (Execute(PI, Program, Args, Env, Redirects, MemoryLimit, ErrMsg, in ExecuteAndWait()
57 ProcessInfo sys::ExecuteNoWait(StringRef Program, ArrayRef<StringRef> Args, in ExecuteNoWait() argument
66 if (!Execute(PI, Program, Args, Env, Redirects, MemoryLimit, ErrMsg, in ExecuteNoWait()
74 bool sys::commandLineFitsWithinSystemLimits(StringRef Program, in commandLineFitsWithinSystemLimits() argument
80 return commandLineFitsWithinSystemLimits(Program, StringRefArgs); in commandLineFitsWithinSystemLimits()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDXContainerEmitter.cpp131 if (!P.Program) in writeParts()
134 Header.MajorVersion = P.Program->MajorVersion; in writeParts()
137 Header.ShaderKind = P.Program->ShaderKind; in writeParts()
144 if (P.Program->DXILOffset) in writeParts()
149 if (P.Program->DXILSize) in writeParts()
150 Header.Bitcode.Size = *P.Program->DXILSize; in writeParts()
152 Header.Bitcode.Size = P.Program->DXIL ? P.Program->DXIL->size() : 0; in writeParts()
154 if (P.Program->Size) in writeParts()
155 Header.Size = *P.Program->Size; in writeParts()
164 if (P.Program->DXIL) { in writeParts()
[all …]
H A DDXContainerYAML.cpp95 IO &IO, DXContainerYAML::DXILProgram &Program) { in mapping() argument
96 IO.mapRequired("MajorVersion", Program.MajorVersion); in mapping()
97 IO.mapRequired("MinorVersion", Program.MinorVersion); in mapping()
98 IO.mapRequired("ShaderKind", Program.ShaderKind); in mapping()
99 IO.mapOptional("Size", Program.Size); in mapping()
100 IO.mapRequired("DXILMajorVersion", Program.DXILMajorVersion); in mapping()
101 IO.mapRequired("DXILMinorVersion", Program.DXILMinorVersion); in mapping()
102 IO.mapOptional("DXILSize", Program.DXILSize); in mapping()
103 IO.mapOptional("DXIL", Program.DXIL); in mapping()
184 IO.mapOptional("Program", P.Program); in mapping()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DProgram.cpp22 unsigned Program::getOrCreateNativePointer(const void *Ptr) { in getOrCreateNativePointer()
33 const void *Program::getNativePointer(unsigned Idx) { in getNativePointer()
37 unsigned Program::createGlobalString(const StringLiteral *S) { in createGlobalString()
100 Pointer Program::getPtrGlobal(unsigned Idx) { in getPtrGlobal()
105 std::optional<unsigned> Program::getGlobal(const ValueDecl *VD) { in getGlobal()
129 std::optional<unsigned> Program::getOrCreateGlobal(const ValueDecl *VD, in getOrCreateGlobal()
141 std::optional<unsigned> Program::getOrCreateDummy(const ValueDecl *VD) { in getOrCreateDummy()
160 std::optional<unsigned> Program::createGlobal(const ValueDecl *VD, in createGlobal()
182 std::optional<unsigned> Program::createGlobal(const Expr *E) { in createGlobal()
214 Function *Program::getFunction(const FunctionDecl *F) { in getFunction()
[all …]
H A DDisasm.cpp25 template <typename T> inline T ReadArg(Program &P, CodePtr &OpPC) { in ReadArg()
34 template <> inline Floating ReadArg<Floating>(Program &P, CodePtr &OpPC) { in ReadArg()
68 LLVM_DUMP_METHOD void Program::dump() const { dump(llvm::errs()); } in dump()
70 LLVM_DUMP_METHOD void Program::dump(llvm::raw_ostream &OS) const { in dump()
H A DProgram.h40 class Program final {
42 Program(Context &Ctx) : Ctx(Ctx) {} in Program() function
44 ~Program() { in ~Program()
134 DeclScope(Program &P, const ValueDecl *VD) : P(P) { in DeclScope()
140 Program &P;
H A DContext.h30 class Program; variable
93 Program &getProgram() const { return *P.get(); } in getProgram()
107 std::unique_ptr<Program> P;
H A DFunction.h26 class Program; variable
192 Function(Program &P, const FunctionDecl *F, unsigned ArgSize,
214 friend class Program;
218 Program &P;
H A DEvalEmitter.h27 class Program; variable
43 EvalEmitter(Context &Ctx, Program &P, State &Parent, InterpStack &Stk,
84 Program &P;
H A DByteCodeEmitter.h37 ByteCodeEmitter(Context &Ctx, Program &P) : Ctx(Ctx), P(P) {} in ByteCodeEmitter()
73 Program &P;
/freebsd/gnu/
H A DCOPYING67 that is to say, a work containing the Program or a portion of it,
74 running the Program is not restricted, and the output from the Program
76 Program (independent of having been made by running the Program).
77 Whether that is true depends on what the Program does.
85 along with the Program.
91 of it, thus forming a work based on the Program, and copy and
112 the Program is not required to print an announcement.)
127 collective works based on the Program.
130 with the Program (or with a work based on the Program) on a volume of
187 the Program or works based on it.
[all …]
/freebsd/contrib/diff/
H A DCOPYING67 that is to say, a work containing the Program or a portion of it,
74 running the Program is not restricted, and the output from the Program
76 Program (independent of having been made by running the Program).
77 Whether that is true depends on what the Program does.
85 along with the Program.
91 of it, thus forming a work based on the Program, and copy and
112 the Program is not required to print an announcement.)
127 collective works based on the Program.
130 with the Program (or with a work based on the Program) on a volume of
187 the Program or works based on it.
[all …]
/freebsd/sys/contrib/zstd/
H A DCOPYING67 that is to say, a work containing the Program or a portion of it,
74 running the Program is not restricted, and the output from the Program
76 Program (independent of having been made by running the Program).
77 Whether that is true depends on what the Program does.
85 along with the Program.
91 of it, thus forming a work based on the Program, and copy and
112 the Program is not required to print an announcement.)
127 collective works based on the Program.
130 with the Program (or with a work based on the Program) on a volume of
187 the Program or works based on it.
[all …]
H A Dappveyor.yml46Program Files\Microsoft SDKs\Windows\v7.1\lib\x64;c:\Program Files (x86)\Microsoft Visual Studio 1…
162Program Files\Microsoft SDKs\Windows\v7.1\lib\x64;c:\Program Files (x86)\Microsoft Visual Studio 1…
191 …uild /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\Bu…
193 …uild /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\Bu…
/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A DTHIRDPARTYLICENSE.gplv267 that is to say, a work containing the Program or a portion of it,
74 running the Program is not restricted, and the output from the Program
76 Program (independent of having been made by running the Program).
77 Whether that is true depends on what the Program does.
85 along with the Program.
91 of it, thus forming a work based on the Program, and copy and
112 the Program is not required to print an announcement.)
127 collective works based on the Program.
130 with the Program (or with a work based on the Program) on a volume of
187 the Program or works based on it.
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestEnable.java52 Program p0 = consumer.compile("dtrace:::BEGIN"); in main()
53 Program p1 = consumer.compile("syscall:::entry"); in main()
54 Program p2 = consumer.compile("dtrace:::END"); in main()
91 Program p3 = consumer.compile("syscall:::return"); in main()
118 Program p3x = consumer2.compile("syscall:::return"); in main()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DProgram.h105 StringRef Program, ///< Path of the program to be executed. It is
149 ProcessInfo ExecuteNoWait(StringRef Program, ArrayRef<StringRef> Args,
159 bool commandLineFitsWithinSystemLimits(StringRef Program,
164 bool commandLineFitsWithinSystemLimits(StringRef Program,
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/
H A DLICENSE77 "Program", below, refers to any such program or work, and a "work based
78 on the Program" means either the Program or any work containing the
79 Program or a portion of it, either verbatim or with modifications. Each
87 other recipients of the Program a copy of this General Public License
88 along with the Program. You may charge a fee for the physical act of
118 Mere aggregation of another independent work with the Program (or its
153 the Program under this License. However, parties who have received
159 on the Program) you indicate your acceptance of this license to do so,
162 6. Each time you redistribute the Program (or any work based on the
164 licensor to copy, distribute or modify the Program subject to these
[all …]
/freebsd/sys/contrib/libsodium/packaging/dotnet-core/recipes/
H A Dtest4 static class Program
24 echo "$TEST_PROGRAM" > Program.cs
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DProgram.inc1 //===- Win32/Program.cpp - Win32 Program Implementation ------- -*- C++ -*-===//
9 // This file provides the Win32 specific implementation of the Program class.
174 static bool Execute(ProcessInfo &PI, StringRef Program,
179 if (!sys::fs::can_execute(Program)) {
185 // can_execute may succeed by looking at Program + ".exe". CreateProcessW
190 if (!sys::fs::exists(Program))
191 Program = Twine(Program + ".exe").toStringRef(ProgramStorage);
277 if (std::error_code ec = sys::windows::widenPath(Program, ProgramUtf16)) {
305 std::string("Couldn't execute program '") + Program.str() + "'");
561 bool llvm::sys::commandLineFitsWithinSystemLimits(StringRef Program,
[all …]
/freebsd/contrib/libcbor/.circleci/
H A Dconfig.yml200 - run: /c/Program\ Files/Cmake/bin/cmake -S cmocka -B cmocka_build
201 - run: /c/Program\ Files/Cmake/bin/cmake --build cmocka_build
202 …- run: /c/Program\ Files/Cmake/bin/cmake -S . -B libcbor_build -DWITH_TESTS=ON -DCMOCKA_INCLUDE_DI…
203 - run: /c/Program\ Files/Cmake/bin/cmake --build libcbor_build
206 /c/Program\ Files/Cmake/bin/ctest.exe --test-dir libcbor_build --output-on-failure

12345678