mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
b608c4e35f
MCJIT served well as the default JIT engine in lli for a long time, but the code is getting old and maintenance efforts don't seem to be in sight. In the meantime Orc became mature enough to fill that gap. The newly added greddy mode is very similar to the execution model of MCJIT. It should work as a drop-in replacement for common JIT tasks. Reviewed By: lhames Differential Revision: https://reviews.llvm.org/D98931
23 lines
433 B
LLVM
23 lines
433 B
LLVM
; RUN: %lli -jit-kind=mcjit %s > /dev/null
|
|
; RUN: %lli %s > /dev/null
|
|
|
|
declare void @exit(i32)
|
|
|
|
define i32 @test(i8 %C, i16 %S) {
|
|
%X = trunc i16 %S to i8 ; <i8> [#uses=1]
|
|
%Y = zext i8 %X to i32 ; <i32> [#uses=1]
|
|
ret i32 %Y
|
|
}
|
|
|
|
define void @FP(void (i32)* %F) {
|
|
%X = call i32 @test( i8 123, i16 1024 ) ; <i32> [#uses=1]
|
|
call void %F( i32 %X )
|
|
ret void
|
|
}
|
|
|
|
define i32 @main() {
|
|
call void @FP( void (i32)* @exit )
|
|
ret i32 1
|
|
}
|
|
|