diff options
| author | Florian Hahn <flo@fhahn.com> | 2021-02-16 17:12:30 +0000 |
|---|---|---|
| committer | Florian Hahn <flo@fhahn.com> | 2021-02-16 17:17:34 +0000 |
| commit | 211147c5ba49a17c8624186f50519885d89ca33d (patch) | |
| tree | fbc5cbe90a66a10050142d39d344f4016f5cd594 /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | |
| parent | dba14814a69143a8763ed4276a38fa9509b5973d (diff) | |
[AArch64] Convert CMP/SELECT sign patterns to OR & ASR.
ICMP & SELECT patterns extracting the sign of a value can be simplified
to OR & ASR (see https://alive2.llvm.org/ce/z/Xx4iZ0).
This does not save any instructions in IR, but it is profitable on
AArch64, because we need at least 2 extra instructions to materialize 1
and -1 for the SELECT.
The improvements result in ~5% speedups on loops of the form
static int sign_of(int x) {
if (x < 0) return -1;
return 1;
}
void foo(const int *x, int *res, int cnt) {
for (int i=0;i<cnt;i++)
res[i] = sign_of(x[i]);
}
Reviewed By: dmgreen
Differential Revision: https://reviews.llvm.org/D96596
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp')
0 files changed, 0 insertions, 0 deletions
