Displaying 2 results from an estimated 2 matches for "fn8".
Did you mean:
fn
2008 Aug 25
0
[LLVMdev] Proposal : Function Notes
...ne void @fn6() notes("opt-size=1,noinline") { ... }
>
> This is valid. The inliner is instructed to not inline fn6() here.
>
> The target CPU specific features can be encoded as function notes.
>
> define void @fn7() notes("x86.sse3") { ... }
> define void @fn8() notes("x86.no-sse") { ... }
> define void @fn9() notes("arm.no-thumb") { ... }
> define void @fn10() notes("arm.force-thumb") { ... }
>
> The fn7() note "sse3" instructs the x86 code generator to use SSE3
> instructions
> in fn7() wherea...
2008 Aug 22
10
[LLVMdev] Proposal : Function Notes
...rejected by the verifier.
define void @fn6() notes("opt-size=1,noinline") { ... }
This is valid. The inliner is instructed to not inline fn6() here.
The target CPU specific features can be encoded as function notes.
define void @fn7() notes("x86.sse3") { ... }
define void @fn8() notes("x86.no-sse") { ... }
define void @fn9() notes("arm.no-thumb") { ... }
define void @fn10() notes("arm.force-thumb") { ... }
The fn7() note "sse3" instructs the x86 code generator to use SSE3
instructions
in fn7() whereas the code generator should n...