@@ -668,7 +668,7 @@ static inline void propagateArgumentInformation(
668
668
// Only the 0-th arg impacts activity
669
669
if (Name == " jl_genericmemory_copy_slice" ||
670
670
Name == " ijl_genericmemory_copy_slice" ) {
671
- propagateFromOperand (CI.getArgOperand (1 ));
671
+ propagateFromOperand (CI.getArgOperand (0 ));
672
672
return ;
673
673
}
674
674
@@ -1613,29 +1613,6 @@ bool ActivityAnalyzer::isConstantValue(TypeResults const &TR, Value *Val) {
1613
1613
return true ;
1614
1614
}
1615
1615
1616
- if (funcName == " jl_genericmemory_copy_slice" ||
1617
- funcName == " ijl_genericmemory_copy_slice" ) {
1618
- if (directions == UP) {
1619
- if (isConstantValue (TR, op->getArgOperand (0 ))) {
1620
- InsertConstantValue (TR, Val);
1621
- return true ;
1622
- }
1623
- } else {
1624
- if (UpHypothesis->isConstantValue (TR, op->getArgOperand (0 ))) {
1625
- InsertConstantValue (TR, Val);
1626
- insertConstantsFrom (TR, *UpHypothesis);
1627
- return true ;
1628
- }
1629
- }
1630
- if (EnzymeEnableRecursiveHypotheses) {
1631
- ReEvaluateValueIfInactiveValue[op->getArgOperand (0 )].insert (Val);
1632
- if (TmpOrig != Val) {
1633
- ReEvaluateValueIfInactiveValue[op->getArgOperand (0 )].insert (
1634
- TmpOrig);
1635
- }
1636
- }
1637
- }
1638
-
1639
1616
// If requesting empty unknown functions to be considered inactive,
1640
1617
// abide by those rules
1641
1618
if (called && EnzymeEmptyFnInactive && called->empty () &&
@@ -2751,6 +2728,11 @@ bool ActivityAnalyzer::isValueInactiveFromUsers(TypeResults const &TR,
2751
2728
if (AllocaSet.count (TmpOrig)) {
2752
2729
continue ;
2753
2730
}
2731
+ // We are literally storing our value into ourselves [or relevant
2732
+ // derived pointer]
2733
+ if (TmpOrig == val) {
2734
+ continue ;
2735
+ }
2754
2736
if (isa<AllocaInst>(TmpOrig)) {
2755
2737
newAllocaSet.insert (TmpOrig);
2756
2738
continue ;
0 commit comments