Searched refs:lli (Results 1 – 25 of 128) sorted by relevance
123456
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 …]
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()
20 add_llvm_tool(lli21 lli.cpp
1 ;===- ./tools/lli/LLVMBuild.txt --------------------------------*- Conf -*--===;20 name = lli
11 TOOLNAME := lli
1 ; RUN: %lli %s > /dev/null
1 ; RUN: %lli -force-interpreter=true %s
1 ; RUN: %lli -use-mcjit %s > /dev/null
1 ; RUN: %lli -use-mcjit -force-interpreter=true %s