llvm-project/llvm/test/Transforms/Attributor
Johannes Doerfert 168a9234d7 [Attributor][FIX] Replace uses first, then values
Before we replaced value by registering all their uses. However, as we
replace a value old uses become stale. We now replace values explicitly
and keep track of "new values" when doing so to avoid replacing only
uses in stale/old values but not their replacements.
2021-07-06 22:43:51 -05:00
..
ArgumentPromotion [Attributor] Simplify operands inside of simplification AAs first 2021-07-06 22:41:18 -05:00
IPConstantProp [Attributor] Simplify operands inside of simplification AAs first 2021-07-06 22:41:18 -05:00
reduced Revert "[NFC] remove explicit default value for strboolattr attribute in tests" 2021-05-24 19:43:40 +02:00
align.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
allow_list.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
alwaysinline.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
callbacks.ll [Attributor] Set floating point loads and stores as nofree in AANoFreeFloating 2021-06-09 16:16:37 -04:00
callgraph.ll [Attributor] Simplify operands inside of simplification AAs first 2021-07-06 22:41:18 -05:00
cb_liveness_disabled.ll [Attributor] Call site specific AAValueSimplification and AAIsDead. 2021-05-15 21:39:07 +00:00
cb_liveness_enabled.ll [Attributor] Call site specific AAValueSimplification and AAIsDead. 2021-05-15 21:39:07 +00:00
cb_range_disabled.ll [Attributor] Derive `willreturn` based on `mustprogress` 2021-03-11 23:31:44 -06:00
cb_range_enabled.ll [Attributor] Simplify operands inside of simplification AAs first 2021-07-06 22:41:18 -05:00
cgscc_bugs.ll [Attributor] Simplify operands inside of simplification AAs first 2021-07-06 22:41:18 -05:00
chain.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
depgraph.ll [Attributor] Simplify operands inside of simplification AAs first 2021-07-06 22:41:18 -05:00
dereferenceable-1.ll [Attributor] Introduce a helper function to deal with undef + none 2021-07-06 22:41:21 -05:00
dereferenceable-2-inseltpoison.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
dereferenceable-2.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
heap_to_stack.ll [Attriibutor][NFC] Precommit heap-2-stack test case 2021-07-06 22:41:23 -05:00
heap_to_stack_gpu.ll [Attributor] Make sure Heap2Stack works properly on a GPU target 2021-06-18 01:07:52 -05:00
internal-noalias.ll [Attributor] Derive `willreturn` based on `mustprogress` 2021-03-11 23:31:44 -06:00
internalize.ll [Attributor] Simplify operands inside of simplification AAs first 2021-07-06 22:41:18 -05:00
lit.local.cfg [FileCheck] Default --allow-unused-prefixes to false 2021-02-08 13:37:04 -08:00
liveness.ll [Attributor] Introduce a helper function to deal with undef + none 2021-07-06 22:41:21 -05:00
liveness_chains.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
lowerheap.ll [IR] Memory intrinsics are not unconditionally `nosync` 2021-05-21 03:40:59 +02:00
lvi-after-jumpthreading.ll [Attributor] Introduce a helper function to deal with undef + none 2021-07-06 22:41:21 -05:00
lvi-for-ashr.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
memory_locations.ll [Attributor] Set floating point loads and stores as nofree in AANoFreeFloating 2021-06-09 16:16:37 -04:00
misc.ll [OpaquePtr] Support forward references in textual IR 2021-06-29 20:10:31 +02:00
misc_crash.ll [Attributor] Introduce a helper do deal with constant type mismatches 2021-05-23 23:00:40 -05:00
new_attributes.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
noalias.ll [Attributor] Derive `willreturn` based on `mustprogress` 2021-03-11 23:31:44 -06:00
nocapture-1.ll [Attributor] Set floating point loads and stores as nofree in AANoFreeFloating 2021-06-09 16:16:37 -04:00
nocapture-2.ll [Attributor] Introduce a helper function to deal with undef + none 2021-07-06 22:41:21 -05:00
nodelete.ll [Attributor] Be more careful to not disturb the CG outside the SCC 2021-05-23 23:00:39 -05:00
nofree.ll [Attributor] Set floating point loads and stores as nofree in AANoFreeFloating 2021-06-09 16:16:37 -04:00
nonnull.ll [Attributor] Introduce a helper function to deal with undef + none 2021-07-06 22:41:21 -05:00
norecurse.ll [Attributor] Set floating point loads and stores as nofree in AANoFreeFloating 2021-06-09 16:16:37 -04:00
noreturn.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
noreturn_async.ll [Attributor] Introduce a helper do deal with constant type mismatches 2021-05-23 23:00:40 -05:00
noreturn_sync.ll [Attributor] Introduce a helper do deal with constant type mismatches 2021-05-23 23:00:40 -05:00
nosync.ll [IR] Memory intrinsics are not unconditionally `nosync` 2021-05-21 03:40:59 +02:00
noundef.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
nounwind.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
potential.ll [Attributor][FIX] Replace uses first, then values 2021-07-06 22:43:51 -05:00
range.ll [Attributor] Introduce a helper function to deal with undef + none 2021-07-06 22:41:21 -05:00
read_write_returned_arguments_scc.ll [Attributor][NFC] Update tests after D94741 2021-03-11 23:31:39 -06:00
readattrs.ll [Attributor] Set floating point loads and stores as nofree in AANoFreeFloating 2021-06-09 16:16:37 -04:00
returned.ll [Attributor] Introduce a helper function to deal with undef + none 2021-07-06 22:41:21 -05:00
undefined_behavior.ll [Attributor] Teach AAIsDead about undef values 2021-05-23 23:00:40 -05:00
value-simplify-pointer-info.ll [Attributor] Simplify operands inside of simplification AAs first 2021-07-06 22:41:18 -05:00
value-simplify.ll [Attributor] Introduce a helper function to deal with undef + none 2021-07-06 22:41:21 -05:00
willreturn.ll [Attributor] Simplify operands inside of simplification AAs first 2021-07-06 22:41:18 -05:00
wrapper.ll