Searched refs:lli (Results 1 – 25 of 103) sorted by relevance
12345
1 lli - directly execute programs from LLVM bitcode9 **lli** [*options*] [*filename*] [*program args*]16 **lli** directly executes programs in LLVM bitcode format. It takes a program18 available for the current architecture, or an interpreter. **lli** takes all of20 **lli** is using the just-in-time compiler.22 If *filename* is not specified, then **lli** reads the LLVM bitcode for the55 Causes **lli** to load the plugin (shared object) named *pluginfilename* and use76 Print out the version of **lli** and exit without doing anything else.147 Causes **lli** to enable optimizations that may decrease floating point154 Causes **lli** to generate software floating point library calls instead of[all …]
33 add_llvm_tool(lli34 lli.cpp39 set_target_properties(lli PROPERTIES ENABLE_EXPORTS 1)
1 ;===- ./tools/lli/LLVMBuild.txt --------------------------------*- Conf -*--===;23 name = lli
11 lli.cpp \70 LOCAL_MODULE := lli
11 TOOLNAME := lli
1 ;===- ./tools/lli/ChildTarget/LLVMBuild.txt --------------------*- Conf -*--===;20 name = lli-child-target21 parent = lli
3 add_llvm_executable(lli-child-target8 set_target_properties(lli-child-target PROPERTIES FOLDER "Misc")
11 TOOLNAME := lli-child-target
50 long long int lli; in test() local51 lli = INT_MIN << 2; // expected-warning {{bits to represent, but 'int' only has}} in test()52 lli = 1LL << (sizeof(long long) * CHAR_BIT - 2); in test()
42 Note that lli has to be passed the ``-use-mcjit`` flag to JIT the code with84 code via ``lli`` inside GDB:89 $ gdb --quiet --args $BINPATH/lli -use-mcjit showdebug.ll 590 Reading symbols from $BINPATH/lli...done.96 Starting program: $BINPATH/lli -use-mcjit showdebug.ll 5127 … argv=0x7fffffffe018, envp=0x7fffffffe040) at /home/ebenders_test/llvm_svn_rw/tools/lli/lli.cpp:324
24 lli25 lli-child-target
1 ; RUN: %lli %s > /dev/null
1 ; RUN: %lli -force-interpreter=true %s
1 ; RUN: %lli %s test
1 ; RUN: %lli_mcjit -remote-mcjit -mcjit-remote-process=lli-child-target%exeext %s > /dev/null