Skip to content

Commit 7cf9e90

Browse files
authoredDec 29, 2024
Fix copyslice v2 (#2211)
* Fix copyslice v2 * fix
1 parent bdda0ce commit 7cf9e90

File tree

1 file changed

+6
-24
lines changed

1 file changed

+6
-24
lines changed
 

‎enzyme/Enzyme/ActivityAnalysis.cpp

+6-24
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ static inline void propagateArgumentInformation(
668668
// Only the 0-th arg impacts activity
669669
if (Name == "jl_genericmemory_copy_slice" ||
670670
Name == "ijl_genericmemory_copy_slice") {
671-
propagateFromOperand(CI.getArgOperand(1));
671+
propagateFromOperand(CI.getArgOperand(0));
672672
return;
673673
}
674674

@@ -1613,29 +1613,6 @@ bool ActivityAnalyzer::isConstantValue(TypeResults const &TR, Value *Val) {
16131613
return true;
16141614
}
16151615

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-
16391616
// If requesting empty unknown functions to be considered inactive,
16401617
// abide by those rules
16411618
if (called && EnzymeEmptyFnInactive && called->empty() &&
@@ -2751,6 +2728,11 @@ bool ActivityAnalyzer::isValueInactiveFromUsers(TypeResults const &TR,
27512728
if (AllocaSet.count(TmpOrig)) {
27522729
continue;
27532730
}
2731+
// We are literally storing our value into ourselves [or relevant
2732+
// derived pointer]
2733+
if (TmpOrig == val) {
2734+
continue;
2735+
}
27542736
if (isa<AllocaInst>(TmpOrig)) {
27552737
newAllocaSet.insert(TmpOrig);
27562738
continue;

0 commit comments

Comments
 (0)