search for: fn10

Displaying 2 results from an estimated 2 matches for "fn10".

Did you mean: fc10
2008 Aug 25
0
[LLVMdev] Proposal : Function Notes
...e 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 not use SSE instructions > for function > fn8(). Can the names directly correspond with th...
2008 Aug 22
10
[LLVMdev] Proposal : Function Notes
...nliner 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 not use SSE instructions for function fn8(). The Function Notes are not a place for all the llvm-gcc command line...