Home
last modified time | relevance | path

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

12345678

/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DBugDriver.cpp61 Program = std::move(M); in setNewProgram()
81 Program(nullptr), Interpreter(nullptr), SafeInterpreter(nullptr), in BugDriver()
123 std::unique_ptr<Module> OldProgram = std::move(Program); in swapProgramIn()
124 Program = std::move(M); in swapProgramIn()
134 assert(!Program && "Cannot call addSources multiple times!"); in addSources()
138 Program = parseInputFile(Filenames[0], Context); in addSources()
139 if (!Program) in addSources()
150 if (Linker::linkModules(*Program, std::move(M))) in addSources()
179 if (runPasses(*Program, PassesToRun)) in run()
189 if (Error E = compileProgram(*Program)) { in run()
[all …]
H A DFindBugs.cpp34 if (Error E = createReferenceFile(*Program)) in runManyPasses()
54 if (runPasses(*Program, PassesToRun, Filename, false)) { in runManyPasses()
66 if (Error E = compileProgram(*Program)) { in runManyPasses()
78 Expected<bool> Diff = diffProgram(*Program, Filename, "", false); in runManyPasses()
H A DBugDriver.h48 std::unique_ptr<Module> Program; // The raw program, linked together
117 Module &getProgram() const { return *Program; }
139 /// This method runs "Program", capturing the output of the program to a file.
141 Expected<std::string> executeProgram(const Module &Program,
151 executeProgramSafely(const Module &Program,
164 Expected<bool> diffProgram(const Module &Program,
173 /// This method clones the current Program and deletes the specified
181 /// This method clones the current Program and performs a series of cleanups
209 /// runPasses - Run the specified passes on Program, outputting a bitcode
218 bool runPasses(Module &Program, cons
49 std::unique_ptr<Module> Program; // The raw program, linked together global() variable
[all...]
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
67 if (!Execute(PI, Program, Args, Env, Redirects, MemoryLimit, ErrMsg, in ExecuteNoWait()
75 bool sys::commandLineFitsWithinSystemLimits(StringRef Program, in commandLineFitsWithinSystemLimits() argument
78 return commandLineFitsWithinSystemLimits(Program, StringRefArgs); in commandLineFitsWithinSystemLimits()
/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A DTHIRDPARTYLICENSE.gplv264 under the terms of this General Public License. The "Program", below,
65 refers to any such program or work, and a "work based on the Program"
66 means either the Program or any derivative work under copyright law:
67 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.
79 1. You may copy and distribute verbatim copies of the Program's
84 and give any other recipients of the Program a copy of this License
85 along with the Program.
[all …]
/freebsd/gnu/
H A DCOPYING64 under the terms of this General Public License. The "Program", below,
65 refers to any such program or work, and a "work based on the Program"
66 means either the Program or any derivative work under copyright law:
67 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.
79 1. You may copy and distribute verbatim copies of the Program's
84 and give any other recipients of the Program a copy of this License
85 along with the Program.
[all …]
/freebsd/sys/contrib/zstd/
H A DCOPYING64 under the terms of this General Public License. The "Program", below,
65 refers to any such program or work, and a "work based on the Program"
66 means either the Program or any derivative work under copyright law:
67 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.
79 1. You may copy and distribute verbatim copies of the Program's
84 and give any other recipients of the Program a copy of this License
85 along with the Program.
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDXContainerEmitter.cpp132 if (!P.Program) in writeParts()
135 Header.Version = dxbc::ProgramHeader::getVersion(P.Program->MajorVersion, in writeParts()
136 P.Program->MinorVersion); in writeParts()
138 Header.ShaderKind = P.Program->ShaderKind; in writeParts()
140 Header.Bitcode.MajorVersion = P.Program->DXILMajorVersion; in writeParts()
141 Header.Bitcode.MinorVersion = P.Program->DXILMinorVersion; in writeParts()
145 if (P.Program->DXILOffset) in writeParts()
146 Header.Bitcode.Offset = *P.Program->DXILOffset; in writeParts()
150 if (P.Program->DXILSize) in writeParts()
151 Header.Bitcode.Size = *P.Program->DXILSize; in writeParts()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DProgram.h39 class Program final {
41 Program(Context &Ctx) : Ctx(Ctx) {} in Program() function
43 ~Program() { in ~Program()
146 DeclScope(Program &P) : P(P), PrevDecl(P.CurrentDeclaration) { in DeclScope()
153 Program &P;
249 inline void *operator new(size_t Bytes, const clang::interp::Program &C,
254 inline void operator delete(void *Ptr, const clang::interp::Program &C, in delete()
258 inline void *operator new[](size_t Bytes, const clang::interp::Program &C,
H A DProgram.cpp20 unsigned Program::getOrCreateNativePointer(const void *Ptr) { in getOrCreateNativePointer()
29 const void *Program::getNativePointer(unsigned Idx) { in getNativePointer()
33 unsigned Program::createGlobalString(const StringLiteral *S, const Expr *Base) { in createGlobalString()
110 Pointer Program::getPtrGlobal(unsigned Idx) const { in getPtrGlobal()
115 std::optional<unsigned> Program::getGlobal(const ValueDecl *VD) { in getGlobal()
135 std::optional<unsigned> Program::getGlobal(const Expr *E) { in getGlobal()
141 std::optional<unsigned> Program::getOrCreateGlobal(const ValueDecl *VD, in getOrCreateGlobal()
153 unsigned Program::getOrCreateDummy(const DeclTy &D) { in getOrCreateDummy()
201 std::optional<unsigned> Program::createGlobal(const ValueDecl *VD, in createGlobal()
234 std::optional<unsigned> Program::createGlobal(const Expr *E) { in createGlobal()
[all …]
H A DByteCodeEmitter.cpp138 static void emit(Program &P, std::vector<std::byte> &Code, const T &Val, in emit()
189 void emit(Program &P, std::vector<std::byte> &Code, const Floating &Val, in emit()
195 void emit(Program &P, std::vector<std::byte> &Code, in emit()
201 void emit(Program &P, std::vector<std::byte> &Code, const IntegralAP<true> &Val, in emit()
207 void emit(Program &P, std::vector<std::byte> &Code, const FixedPoint &Val, in emit()
H A DEvalEmitter.h26 class Program; variable
48 EvalEmitter(Context &Ctx, Program &P, State &Parent, InterpStack &Stk);
100 Program &P;
H A DContext.h31 class Program; variable
108 Program &getProgram() const { return *P; } in getProgram()
137 std::unique_ptr<Program> P;
H A DFunction.h28 class Program; variable
232 Function(Program &P, FunctionDeclTy Source, unsigned ArgSize,
254 friend class Program;
259 Program &P;
H A DDisasm.cpp36 inline static std::string printArg(Program &P, CodePtr &OpPC) { in printArg()
52 template <> inline std::string printArg<Floating>(Program &P, CodePtr &OpPC) { in printArg()
71 inline std::string printArg<IntegralAP<false>>(Program &P, CodePtr &OpPC) { in printArg()
89 inline std::string printArg<IntegralAP<true>>(Program &P, CodePtr &OpPC) { in printArg()
106 template <> inline std::string printArg<FixedPoint>(Program &P, CodePtr &OpPC) { in printArg()
251 LLVM_DUMP_METHOD void Program::dump() const { dump(llvm::errs()); } in dump()
289 LLVM_DUMP_METHOD void Program::dump(llvm::raw_ostream &OS) const { in dump()
H A DInterpState.h45 InterpState(State &Parent, Program &P, InterpStack &Stk, Context &Ctx,
47 InterpState(State &Parent, Program &P, InterpStack &Stk, Context &Ctx,
171 Program &P;
H A DByteCodeEmitter.h37 ByteCodeEmitter(Context &Ctx, Program &P) : Ctx(Ctx), P(P) {} in ByteCodeEmitter()
81 Program &P;
/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.h106 StringRef Program, ///< Path of the program to be executed. It is
151 StringRef Program, ArrayRef<StringRef> Args,
163 LLVM_ABI bool commandLineFitsWithinSystemLimits(StringRef Program,
168 LLVM_ABI 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
82 1. You may copy and distribute verbatim copies of the Program's source
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
91 2. You may modify your copy or copies of the Program or any portion of
99 in whole or in part contains the Program or any part thereof, either
118 Mere aggregation of another independent work with the Program (or its
122 3. You may copy and distribute the Program (or a portion or derivative of
[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,
180 if (!sys::fs::can_execute(Program)) {
186 // can_execute may succeed by looking at Program + ".exe". CreateProcessW
191 if (!sys::fs::exists(Program))
192 Program = Twine(Program + ".exe").toStringRef(ProgramStorage);
278 if (std::error_code ec = sys::windows::widenPath(Program, ProgramUtf16)) {
308 std::string("Couldn't execute program '") + Program.str() + "'");
564 bool llvm::sys::commandLineFitsWithinSystemLimits(StringRef Program,
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dibm37054 # z/OS Program Object executable
57 # IEWPLMH is eyecatcher for "Binder Program Load Module Header" control block
58 0 string \xc9\xc5\xe6\xd7\xd3\xd4\xc8\x40 z/OS Program Object executable
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java635 List <Program> programList = new LinkedList <Program> (); in main()
863 Program program; in main()
898 for (Program p : programList) { in main()
914 for (Program p : programList) { in main()
929 for (Program p : programList) { in main()
930 if (p instanceof Program.File) { in main()
931 Program.File pf = (Program.File)p; in main()

12345678