Skip to content

[SandboxVec][Interval] Implement getUnionInterval() and getSingleDiff() #111455

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,27 @@ template <typename T> class Interval {
Result.emplace_back(Intersection.To->getNextNode(), To);
return Result;
}
/// \Returns the interval difference `this - Other`. This will crash in Debug
/// if the result is not a single interval.
Interval getSingleDiff(const Interval &Other) {
auto Diff = *this - Other;
assert(Diff.size() == 1 && "Expected a single interval!");
return Diff[0];
}
/// \Returns a single interval that spans across both this and \p Other.
// For example:
// |---| this
// |---| Other
// |----------| this->getUnionInterval(Other)
Interval getUnionInterval(const Interval &Other) {
if (empty())
return Other;
if (Other.empty())
return *this;
auto *NewFrom = From->comesBefore(Other.From) ? From : Other.From;
auto *NewTo = To->comesBefore(Other.To) ? Other.To : To;
return {NewFrom, NewTo};
}
};

} // namespace llvm::sandboxir
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ define void @foo(i8 %v0) {
EXPECT_EQ(Diffs.size(), 1u);
const sandboxir::Interval<sandboxir::Instruction> &Diff = Diffs[0];
EXPECT_THAT(getPtrVec(Diff), testing::ElementsAre(I0, I1, I2, Ret));

// Check getSingleDiff().
EXPECT_EQ(I0Ret.getSingleDiff(Empty), Diff);
}
{
// Check [] - [I0,Ret]
Expand All @@ -171,6 +174,9 @@ define void @foo(i8 %v0) {
EXPECT_EQ(Diffs.size(), 1u);
const sandboxir::Interval<sandboxir::Instruction> &Diff = Diffs[0];
EXPECT_TRUE(Diff.empty());

// Check getSingleDiff().
EXPECT_EQ(Empty.getSingleDiff(I0Ret), Diff);
}
{
// Check [I0,Ret] - [I0].
Expand All @@ -180,6 +186,9 @@ define void @foo(i8 %v0) {
EXPECT_EQ(Diffs.size(), 1u);
const sandboxir::Interval<sandboxir::Instruction> &Diff = Diffs[0];
EXPECT_THAT(getPtrVec(Diff), testing::ElementsAre(I1, I2, Ret));

// Check getSingleDiff().
EXPECT_EQ(I0Ret.getSingleDiff(I0I0), Diff);
}
{
// Check [I0,Ret] - [I1].
Expand All @@ -191,6 +200,11 @@ define void @foo(i8 %v0) {
EXPECT_THAT(getPtrVec(Diff0), testing::ElementsAre(I0));
const sandboxir::Interval<sandboxir::Instruction> &Diff1 = Diffs[1];
EXPECT_THAT(getPtrVec(Diff1), testing::ElementsAre(I2, Ret));

#ifndef NDEBUG
// Check getSingleDiff().
EXPECT_DEATH(I0Ret.getSingleDiff(I1I1), ".*single.*");
#endif // NDEBUG
}
}

Expand Down Expand Up @@ -249,3 +263,52 @@ define void @foo(i8 %v0) {
EXPECT_THAT(getPtrVec(Intersection), testing::ElementsAre(I1));
}
}

TEST_F(IntervalTest, UnionInterval) {
parseIR(C, R"IR(
define void @foo(i8 %v0) {
%I0 = add i8 %v0, %v0
%I1 = add i8 %v0, %v0
%I2 = add i8 %v0, %v0
ret void
}
)IR");
Function &LLVMF = *M->getFunction("foo");
sandboxir::Context Ctx(C);
auto &F = *Ctx.createFunction(&LLVMF);
auto *BB = &*F.begin();
auto It = BB->begin();
auto *I0 = &*It++;
auto *I1 = &*It++;
[[maybe_unused]] auto *I2 = &*It++;
auto *Ret = &*It++;

{
// Check [I0] unionInterval [I2].
sandboxir::Interval<sandboxir::Instruction> I0I0(I0, I0);
sandboxir::Interval<sandboxir::Instruction> I2I2(I2, I2);
auto SingleUnion = I0I0.getUnionInterval(I2I2);
EXPECT_THAT(getPtrVec(SingleUnion), testing::ElementsAre(I0, I1, I2));
}
{
// Check [I0] unionInterval Empty.
sandboxir::Interval<sandboxir::Instruction> I0I0(I0, I0);
sandboxir::Interval<sandboxir::Instruction> Empty;
auto SingleUnion = I0I0.getUnionInterval(Empty);
EXPECT_THAT(getPtrVec(SingleUnion), testing::ElementsAre(I0));
}
{
// Check [I0,I1] unionInterval [I1].
sandboxir::Interval<sandboxir::Instruction> I0I1(I0, I1);
sandboxir::Interval<sandboxir::Instruction> I1I1(I1, I1);
auto SingleUnion = I0I1.getUnionInterval(I1I1);
EXPECT_THAT(getPtrVec(SingleUnion), testing::ElementsAre(I0, I1));
}
{
// Check [I2,Ret] unionInterval [I0].
sandboxir::Interval<sandboxir::Instruction> I2Ret(I2, Ret);
sandboxir::Interval<sandboxir::Instruction> I0I0(I0, I0);
auto SingleUnion = I2Ret.getUnionInterval(I0I0);
EXPECT_THAT(getPtrVec(SingleUnion), testing::ElementsAre(I0, I1, I2, Ret));
}
}
Loading