Idris2/tests/idris2/inlining001/expected

41 lines
1.3 KiB
Plaintext
Raw Normal View History

1/1: Building Inlining (Inlining.idr)
2022-03-18 11:45:18 +03:00
Main> Main.leaveAlone
Arguments [{arg:0}]
Compile time tree: {arg:0} ++ "!"
Compiled: \ {arg:0} => {arg:0} ++ "!"
2022-03-18 11:45:18 +03:00
Refers to: Prelude.Types.String.(++)
Flags: covering
Size change: Prelude.Types.String.(++): [Just (0, Same), Nothing]
Main> Main.forceInline
Arguments [{arg:0}]
Compile time tree: {arg:0} + 10
Compiled: \ {arg:0} => {arg:0} + 10
2022-03-18 11:45:18 +03:00
Refers to: Prelude.Types.Num implementation at Prelude.Types:66:1--71:33, Prelude.Types.Z, Prelude.Types.S, Prelude.Types.Nat, Prelude.Num.(+)
Flags: covering, inline
Size change: Prelude.Num.(+): [Nothing, Nothing, Just (0, Same), Nothing], Prelude.Types.Num implementation at Prelude.Types:66:1--71:33: []
Main> Main.forceNoInline
Arguments []
Compile time tree: 10
2022-03-18 11:45:18 +03:00
Compiled: 10
Refers to: Prelude.Types.Z, Prelude.Types.S
Flags: allguarded, covering, noinline
Main> Main.heuristicPublicInline
Arguments []
Compile time tree: 2
2022-03-18 11:45:18 +03:00
Compiled: 2
Refers to: Prelude.Types.Z, Prelude.Types.S
Flags: inline, allguarded, covering
Main> Main.exportedForced
Arguments []
Compile time tree: 33
2022-03-18 11:45:18 +03:00
Compiled: 33
Refers to: Prelude.Types.Z, Prelude.Types.S
Flags: allguarded, covering, inline
Main> Main.exportedUnforced
Arguments []
Compile time tree: 66
2022-03-18 11:45:18 +03:00
Compiled: 66
Refers to: Prelude.Types.Z, Prelude.Types.S
Flags: allguarded, covering
Main> Bye for now!