This is an archive of the discontinued LLVM Phabricator instance.

[ARM] Check for sel intrinsic use in ARM CGP
AbandonedPublic

Authored by samparker on Sep 26 2018, 7:11 AM.

Details

Summary

During initialisation, check whether the llvm.arm.sel intrinsic is used in the current module. If it has, we conservatively choose that it would be unsafe to generate the DSP add/sub instructions that will write to the GE flags - the same flags which sel will read.

Diff Detail

Event Timeline

samparker created this revision.Sep 26 2018, 7:11 AM

This isn't really correct, in any useful sense... we can't assume the current translation unit reflects the entire program.

I mean, if you really think this optimization is sufficiently useful, we can add a flag for it. Presumably user code could enable it if they want to, but it would have to be disabled for libraries shipped with the compiler (like compiler-rt).

samparker added a comment.EditedSep 27 2018, 1:47 AM

Hi Eli,

I don't intend to remove the -arm-enable-scalar-dsp flag or change the default from false, meaning that the user will have to enable it and even then the pass can decide against it. From your comments in D48832 and John's in D49239, this seems like the most conservative approach to me. By the ACLE standard I don't have to worry about the whole program and I could just look at the current function. I will want to use the same approach in the parallel dsp pass but I want to be as safe as possible.

Because the ABI says that the GE bits are undefined on entry / return from public interfaces (i.e. non-static functions) I think that it is possible to just look at the current translation unit and make a decision based on that. I'm not sure if just looking at whether the sel intrinsic is used will work though - the GE bits could be read by __arm_rsr("APSR"), or by inline assembly, and maybe there are other situations that I haven't thought of.

Yes, it's certainly complicating that the ABI and ACLE don't talk about inline assembly or other intrinsics and this is why I still want to have the option guarded by a command line option. I will update the patch to look at the function only.

samparker updated this revision to Diff 172723.Nov 6 2018, 2:13 AM

On initialisation, record the functions that contain uses of the sel intrinsic so that we now check on a function basis and not module.

samparker abandoned this revision.Jul 30 2019, 5:11 AM