Home
last modified time | relevance | path

Searched refs:Executable (Results 1 – 25 of 60) sorted by relevance

123

/llvm-project-15.0.7/llvm/unittests/Support/
H A DProgramTest.cpp213 std::string Executable = in TEST_F() local
215 StringRef argv[] = {Executable, in TEST_F()
268 std::string Executable = in TEST_F() local
271 Executable, "--gtest_filter=ProgramEnvTest.TestExecuteAndWaitTimeout"}; in TEST_F()
285 std::string Executable = "i_dont_exist"; in TEST() local
286 StringRef argv[] = {Executable}; in TEST()
302 ProcessInfo PI = ExecuteNoWait(Executable, argv, llvm::None, {}, 0, &Error, in TEST()
360 std::string Executable = in TEST_F() local
401 std::string Executable = in TEST_F() local
440 std::string Executable = in TEST_F() local
[all …]
H A DCrashRecoveryTest.cpp172 std::string Executable = in TEST() local
175 Executable, "--gtest_filter=CrashRecoveryTest.UnixCRCReturnCode"}; in TEST()
188 int RetCode = ExecuteAndWait(Executable, argv, {}, {}, 0, 0, &Error, in TEST()
H A DThreadPool.cpp421 std::string Executable = in TEST_F() local
423 StringRef argv[] = {Executable, "--gtest_filter=ThreadPoolTest.AffinityMask"}; in TEST_F()
434 int Ret = sys::ExecuteAndWait(Executable, argv, {}, {}, 0, 0, &Error, in TEST_F()
/llvm-project-15.0.7/mlir/lib/Analysis/DataFlow/
H A DDeadCodeAnalysis.cpp21 ChangeResult Executable::setToLive() { in setToLive()
28 void Executable::print(raw_ostream &os) const { in print()
32 void Executable::onUpdate(DataFlowSolver *solver) const { in onUpdate()
109 auto *state = getOrCreate<Executable>(&region.front()); in initialize()
188 getOrCreate<Executable>(op->getBlock())->blockContentSubscribe(this); in initializeRecursively()
202 auto *state = getOrCreate<Executable>(to); in markEdgeLive()
204 auto *edgeState = getOrCreate<Executable>(getProgramPoint<CFGEdge>(from, to)); in markEdgeLive()
212 auto *state = getOrCreate<Executable>(&region.front()); in markEntryBlocksLive()
225 if (!getOrCreate<Executable>(op->getBlock())->isLive()) in visit()
366 auto *state = getOrCreate<Executable>(point); in visitRegionBranchOperation()
[all …]
H A DDenseAnalysis.cpp47 if (!getOrCreateFor<Executable>(op, op->getBlock())->isLive()) in visitOperation()
89 if (!getOrCreateFor<Executable>(block, block)->isLive()) in visitBlock()
131 if (!getOrCreateFor<Executable>( in visitBlock()
H A DSparseAnalysis.cpp57 getOrCreate<Executable>(&block)->blockContentSubscribe(this); in initializeRecursively()
84 if (!getOrCreate<Executable>(op->getBlock())->isLive()) in visitOperation()
142 if (!getOrCreate<Executable>(block)->isLive()) in visitBlock()
198 getOrCreate<Executable>(getProgramPoint<CFGEdge>(predecessor, block)); in visitBlock()
/llvm-project-15.0.7/clang/lib/Driver/
H A DJob.cpp39 ResponseFileSupport ResponseSupport, const char *Executable, in Command() argument
43 Executable(Executable), Arguments(Arguments) { in Command()
138 Out.push_back(Executable); in buildArgvForResponseFile()
146 Out.push_back(Executable); in buildArgvForResponseFile()
205 llvm::sys::printArg(OS, Executable, /*Quote=*/true); in Print()
318 Argv.push_back(Executable); in Execute()
355 return llvm::sys::ExecuteAndWait(Executable, Args, Env, Redirects, in Execute()
362 const char *Executable, in CC1Command() argument
365 : Command(Source, Creator, ResponseSupport, Executable, Arguments, Inputs, in CC1Command()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DJob.h117 const char *Executable; variable
167 ResponseFileSupport ResponseSupport, const char *Executable,
211 void replaceExecutable(const char *Exe) { Executable = Exe; } in replaceExecutable()
213 const char *getExecutable() const { return Executable; } in getExecutable()
236 ResponseFileSupport ResponseSupport, const char *Executable,
/llvm-project-15.0.7/lldb/test/Shell/ObjectFile/Breakpad/
H A Dbreakpad-identification.test12 LINUX: Executable: false
20 MAC: Executable: false
30 WINDOWS: Executable: false
/llvm-project-15.0.7/lld/test/ELF/
H A Demulation-x86.s23 # AMD64-NEXT: Type: Executable (0x2)
58 # X86-64-NEXT: Type: Executable (0x2)
92 # X32-NEXT: Type: Executable (0x2)
126 # X86-NEXT: Type: Executable (0x2)
160 # X86FBSD-NEXT: Type: Executable (0x2)
194 # IAMCU-NEXT: Type: Executable (0x2)
H A Demulation-mips.s34 # MIPS-NEXT: Type: Executable (0x2)
77 # MIPSEL-NEXT: Type: Executable (0x2)
117 # MIPSN32-NEXT: Type: Executable (0x2)
160 # MIPSN32EL-NEXT: Type: Executable (0x2)
201 # MIPS64-NEXT: Type: Executable (0x2)
242 # MIPS64EL-NEXT: Type: Executable (0x2)
H A Demulation-riscv.s22 # RV32-NEXT: Type: Executable (0x2)
57 # RV64-NEXT: Type: Executable (0x2)
H A Dbasic-freebsd.s24 # CHECK-NEXT: Type: Executable (0x2)
H A Demulation-msp430.s21 # CHECK-NEXT: Type: Executable (0x2)
H A Demulation-sparc.s21 # V9-NEXT: Type: Executable (0x2)
/llvm-project-15.0.7/mlir/test/lib/Analysis/DataFlow/
H A DTestDeadCodeAnalysis.cpp32 auto *live = solver.lookupState<Executable>(&block); in printAnalysisResults()
42 auto *live = solver.lookupState<Executable>( in printAnalysisResults()
/llvm-project-15.0.7/clang/tools/c-index-test/
H A Dcore_main.cpp215 static bool printSourceSymbols(const char *Executable, in printSourceSymbols() argument
220 ArgsWithProgName.push_back(Executable); in printSourceSymbols()
338 std::string Executable = llvm::sys::fs::getMainExecutable(argv[0], MainAddr); in indextest_core_main() local
368 return printSourceSymbols(Executable.c_str(), CompArgs, in indextest_core_main()
/llvm-project-15.0.7/llvm/test/DebugInfo/X86/
H A Ddwarfdump-ranges-baseaddr-exe.s4 ## Executable binary for test produced from object built in
/llvm-project-15.0.7/lldb/test/Shell/ObjectFile/ELF/
H A Dbasic-info.yaml9 # CHECK: Executable: true
H A Davr-basic-info.yaml5 # CHECK: Executable: true
/llvm-project-15.0.7/lldb/test/Shell/ObjectFile/wasm/
H A Dbasic.yaml7 # CHECK: Executable: false
/llvm-project-15.0.7/llvm/test/tools/llvm-lipo/
H A Dcreate-executable.test1 # Executable testing is not supported on Windows, since all files are considered executable
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/elf-core/gcore/
H A Dmake-core.sh26 Executable file is in a.out.
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/elf-core/
H A Dmake-core.sh56 Executable file is in a.out.
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/elf-core/thread_crash/
H A Dmake-core.sh49 Executable file is in a.out.

123