mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 17:34:41 +00:00
Add checks that the proper predeined stubs are being called to the test case.
These were accidentally omitted. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182347 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
01cb18ea08
commit
49d44a080a
@ -62,6 +62,64 @@ entry:
|
||||
; picel: lw ${{[0-9]+}}, %call16(__mips16_ret_dc)(${{[0-9]+}})
|
||||
; picel: .end dcv
|
||||
|
||||
; Function Attrs: nounwind
|
||||
define i32 @main() #0 {
|
||||
entry:
|
||||
%0 = load float ()** @ptrsv, align 4
|
||||
%call = call float %0()
|
||||
store float %call, float* @x, align 4
|
||||
%1 = load float* @x, align 4
|
||||
%conv = fpext float %1 to double
|
||||
%call1 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8]* @.str, i32 0, i32 0), double %conv)
|
||||
%2 = load double ()** @ptrdv, align 4
|
||||
%call2 = call double %2()
|
||||
store double %call2, double* @xd, align 8
|
||||
%3 = load double* @xd, align 8
|
||||
%call3 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8]* @.str, i32 0, i32 0), double %3)
|
||||
%4 = load { float, float } ()** @ptrscv, align 4
|
||||
%call4 = call { float, float } %4()
|
||||
%5 = extractvalue { float, float } %call4, 0
|
||||
%6 = extractvalue { float, float } %call4, 1
|
||||
store float %5, float* getelementptr inbounds ({ float, float }* @xy, i32 0, i32 0)
|
||||
store float %6, float* getelementptr inbounds ({ float, float }* @xy, i32 0, i32 1)
|
||||
%xy.real = load float* getelementptr inbounds ({ float, float }* @xy, i32 0, i32 0)
|
||||
%xy.imag = load float* getelementptr inbounds ({ float, float }* @xy, i32 0, i32 1)
|
||||
%conv5 = fpext float %xy.real to double
|
||||
%conv6 = fpext float %xy.imag to double
|
||||
%xy.real7 = load float* getelementptr inbounds ({ float, float }* @xy, i32 0, i32 0)
|
||||
%xy.imag8 = load float* getelementptr inbounds ({ float, float }* @xy, i32 0, i32 1)
|
||||
%conv9 = fpext float %xy.real7 to double
|
||||
%conv10 = fpext float %xy.imag8 to double
|
||||
%call11 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([10 x i8]* @.str1, i32 0, i32 0), double %conv5, double %conv10)
|
||||
%7 = load { double, double } ()** @ptrdcv, align 4
|
||||
%call12 = call { double, double } %7()
|
||||
%8 = extractvalue { double, double } %call12, 0
|
||||
%9 = extractvalue { double, double } %call12, 1
|
||||
store double %8, double* getelementptr inbounds ({ double, double }* @xyd, i32 0, i32 0)
|
||||
store double %9, double* getelementptr inbounds ({ double, double }* @xyd, i32 0, i32 1)
|
||||
%xyd.real = load double* getelementptr inbounds ({ double, double }* @xyd, i32 0, i32 0)
|
||||
%xyd.imag = load double* getelementptr inbounds ({ double, double }* @xyd, i32 0, i32 1)
|
||||
%xyd.real13 = load double* getelementptr inbounds ({ double, double }* @xyd, i32 0, i32 0)
|
||||
%xyd.imag14 = load double* getelementptr inbounds ({ double, double }* @xyd, i32 0, i32 1)
|
||||
%call15 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([10 x i8]* @.str1, i32 0, i32 0), double %xyd.real, double %xyd.imag14)
|
||||
ret i32 0
|
||||
}
|
||||
|
||||
; picel: .ent main
|
||||
|
||||
; picel: lw ${{[0-9]+}}, %got(__mips16_call_stub_sf_0)(${{[0-9]+}})
|
||||
|
||||
; picel: lw ${{[0-9]+}}, %got(__mips16_call_stub_df_0)(${{[0-9]+}})
|
||||
|
||||
; picel: lw ${{[0-9]+}}, %got(__mips16_call_stub_sc_0)(${{[0-9]+}})
|
||||
|
||||
; picel: lw ${{[0-9]+}}, %got(__mips16_call_stub_dc_0)(${{[0-9]+}})
|
||||
|
||||
|
||||
declare i32 @printf(i8*, ...) #1
|
||||
|
||||
attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf"="true" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "unsafe-fp-math"="false" "use-soft-float"="true" }
|
||||
attributes #1 = { "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf"="true" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "unsafe-fp-math"="false" "use-soft-float"="true" }
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user