Roman Lebedev f5df5cd558
Recommit "[InstCombine] Negator: -(X << C) --> X * (-1 << C)"
This reverts commit ac70b37a00dc02bd8923e0a4602d26be4581c570
which reverted commit 8aeb2fe13a4100b4c2e78d6ef75119304100cb1f
because codegen tests got broken and i needed time to investigate.

This shows some regressions in tests, but they are all around GEP's,
so i'm not really sure how important those are.

https://rise4fun.com/Alive/1Gn
2020-08-05 15:59:13 +03:00
..
2019-06-20 15:08:34 +00:00
2019-05-08 22:09:57 +00:00
2020-06-25 10:38:23 +02:00
2019-06-20 15:08:34 +00:00
2020-05-29 15:19:59 -04:00
2020-06-25 10:38:23 +02:00
2020-06-25 10:38:23 +02:00
2020-06-25 10:38:23 +02:00
2019-09-25 18:50:34 +00:00
2019-03-19 15:50:24 +00:00
2020-06-25 10:38:23 +02:00
2019-07-01 17:17:45 +00:00
2019-03-12 21:02:54 +00:00
2020-06-15 16:18:05 -07:00
2020-06-25 10:38:23 +02:00
2020-06-15 16:18:05 -07:00
2019-07-11 21:19:33 +00:00
2019-03-19 15:50:24 +00:00
2019-04-26 16:37:51 +00:00
2019-03-19 15:50:24 +00:00
2019-07-15 17:50:31 +00:00
2020-06-15 16:18:05 -07:00
2019-06-20 15:08:34 +00:00
2019-05-08 22:09:57 +00:00
2019-05-03 15:37:07 +00:00
2020-06-25 10:38:23 +02:00
2018-06-27 15:33:33 +00:00
2020-06-25 10:38:23 +02:00
2020-06-25 10:38:23 +02:00
2020-06-25 10:38:23 +02:00
2020-06-25 10:38:23 +02:00
2019-06-20 15:08:34 +00:00
2020-06-25 10:38:23 +02:00
2020-06-25 10:38:23 +02:00
2020-05-17 16:13:55 +05:30
2020-06-04 17:49:00 -04:00
2020-06-04 17:49:00 -04:00
2020-06-04 17:49:00 -04:00
2020-06-04 17:49:00 -04:00
2020-06-04 17:49:00 -04:00
2020-06-04 17:49:00 -04:00
2020-06-04 17:49:00 -04:00
2020-06-04 17:49:00 -04:00
2020-06-04 17:49:00 -04:00
2019-06-20 15:08:34 +00:00
2019-05-03 15:37:07 +00:00
2020-04-03 10:07:21 +01:00
2020-06-25 10:38:23 +02:00
2020-06-15 16:18:05 -07:00
2020-06-25 10:38:23 +02:00
2020-06-15 16:18:05 -07:00
2020-06-25 10:38:23 +02:00
2020-01-12 22:44:51 -05:00

+==============================================================================+
| How to organize the lit tests                                                |
+==============================================================================+

- If you write a test for matching a single DAG opcode or intrinsic, it should
  go in a file called {opcode_name,intrinsic_name}.ll (e.g. fadd.ll)

- If you write a test that matches several DAG opcodes and checks for a single
  ISA instruction, then that test should go in a file called {ISA_name}.ll (e.g.
  bfi_int.ll

- For all other tests, use your best judgement for organizing tests and naming
  the files.

+==============================================================================+
| Naming conventions                                                           |
+==============================================================================+

- Use dash '-' and not underscore '_' to separate words in file names, unless
  the file is named after a DAG opcode or ISA instruction that has an
  underscore '_' in its name.