Home
last modified time | relevance | path

Searched refs:lli (Results 1 – 25 of 175) sorted by relevance

1234567

/llvm-project-15.0.7/llvm/docs/
H A DDebuggingJITedCode.rst55 Note that lli has to be passed the ``--jit-kind=mcjit`` flag to JIT the code
97 code via ``lli`` inside LLDB:
103 > lldb $BINPATH/lli
104 (lldb) target create "/workspaces/llvm-project/build/bin/lli"
113 * thread #1, name = 'lli', stop reason = breakpoint 1.1
129 * thread #1, name = 'lli', stop reason = breakpoint 2.1
141 * thread #1, name = 'lli', stop reason = breakpoint 2.1
146 …frame #4: 0x0000000001f2fc2f lli`main(argc=4, argv=0x00007fffffffe118, envp=0x00007fffffffe140) at…
148 frame #6: 0x0000000001f2dc7a lli`_start + 42
151 * thread #1, name = 'lli', stop reason = step out
[all …]
/llvm-project-15.0.7/mlir/test/Integration/Dialect/Vector/CPU/X86Vector/
H A Dlit.local.cfg13 config.substitutions.append(('%lli', config.intel_sde_executable + ' -tgl -- lli'))
15 config.substitutions.append(('%lli', 'lli'))
/llvm-project-15.0.7/mlir/test/Integration/Dialect/Vector/CPU/AMX/
H A Dlit.local.cfg13 config.substitutions.append(('%lli', config.intel_sde_executable + ' -spr -- lli'))
15 config.substitutions.append(('%lli', 'lli'))
/llvm-project-15.0.7/llvm/test/ExecutionEngine/MCJIT/
H A Dload-object-a.ll4 ; RUN: %lli -jit-kind=mcjit -extra-module=%p/Inputs/multi-module-b.ll -extra-module=%p/Inputs/multi…
5 ; RUN: %lli -extra-module=%p/Inputs/multi-module-b.ll -extra-module=%p/Inputs/multi-module-c.ll -en…
11 ; RUN: %lli -jit-kind=mcjit -extra-object=%t.cachedir2/multi-module-b.o -extra-object=%t.cachedir2/…
12 ; RUN: %lli -extra-object=%t.cachedir2/multi-module-b.o -extra-object=%t.cachedir2/multi-module-c.o…
19 ; RUN: %lli -jit-kind=mcjit -extra-archive=%t.cachedir3/load-object.a %s
20 ; RUN: %lli -extra-archive=%t.cachedir3/load-object.a %s
H A Dsimplesttest.ll1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
H A Dtest-return.ll1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
H A Dsimpletest.ll1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
H A D2003-01-04-PhiTest.ll1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
H A Dtest-branch.ll1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
H A Dtest-call-no-external-funcs.ll1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
H A D2003-05-07-ArgumentTest.ll1 ; RUN: %lli -jit-kind=mcjit %s test
2 ; RUN: %lli %s test
H A D2003-01-09-SARTest.ll1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
H A D2003-05-11-PHIRegAllocBug.ll1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
H A D2003-01-10-FUCOM.ll1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
H A Dcross-module-a.ll1 ; RUN: %lli -jit-kind=mcjit -extra-module=%p/Inputs/cross-module-b.ll %s > /dev/null
2 ; RUN: %lli -extra-module=%p/Inputs/cross-module-b.ll %s > /dev/null
H A D2003-08-15-AllocaAssertion.ll1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
H A Dhello.ll1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dlli.rst1 lli - directly execute programs from LLVM bitcode
4 .. program:: lli
9 :program:`lli` [*options*] [*filename*] [*program args*]
14 :program:`lli` directly executes programs in LLVM bitcode format. It takes a program
18 :program:`lli` is *not* an emulator. It will not execute IR of different architectures
24 If `filename` is not specified, then :program:`lli` reads the LLVM bitcode for the
48 Causes :program:`lli` to load the plugin (shared object) named *pluginfilename* and use
63 Print out the version of :program:`lli` and exit without doing anything else.
112 Causes :program:`lli` to enable optimizations that may decrease floating point
117 Causes :program:`lli` to generate software floating point library calls instead of
[all …]
/llvm-project-15.0.7/llvm/tools/lli/
H A DCMakeLists.txt52 add_llvm_tool(lli
53 lli.cpp
60 export_executable_symbols(lli)
/llvm-project-15.0.7/mlir/test/Integration/Dialect/Vector/CPU/ArmSVE/
H A Dlit.local.cfg11 lli_cmd = 'lli'
26 config.substitutions.append(('%lli', emulation_cmd))
28 config.substitutions.append(('%lli', lli_cmd))
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dshift.cpp55 long long int lli; in test() local
56 lli = INT_MIN << 2; // cxx17-warning {{shifting a negative signed value is undefined}} in test()
57 lli = 1LL << (sizeof(long long) * CHAR_BIT - 2); in test()
/llvm-project-15.0.7/clang/test/Sema/
H A Dshift.c54 long long int lli; in test() local
55 lli = INT_MIN << 2; // expected-warning {{shifting a negative signed value is undefined}} in test()
56 lli = 1LL << (sizeof(long long) * CHAR_BIT - 2); in test()
/llvm-project-15.0.7/llvm/tools/lli/ChildTarget/
H A DCMakeLists.txt8 add_llvm_utility(lli-child-target
15 export_executable_symbols(lli-child-target)
/llvm-project-15.0.7/llvm/test/ExecutionEngine/OrcLazy/
H A Ddebug-objects-elf-minimal.ll5 ; RUN: lli --jit-linker=rtdyld \
8 ; RUN: lli --jit-linker=jitlink \
39 ; RUN: lli --jit-linker=rtdyld \
43 ; RUN: lli --jit-linker=jitlink \
/llvm-project-15.0.7/llvm/test/ExecutionEngine/
H A Dmov64zext32.ll1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null

1234567