llvm/llvm-project

GlobalISel should have G_POISON

Open

#127,486 创建于 2025年2月17日

在 GitHub 查看
 (6 评论) (0 反应) (1 负责人)C++ (10,782 fork)batch import
good first issuellvm:globalisel

仓库指标

Star
 (26,378 star)
PR 合并指标
 (平均合并 1天 2小时) (30 天内合并 1,000 个 PR)

描述

Currently GlobalISel has G_IMPLICIT_DEF, which acts like undef. This is used to lower both poison and undef from the IR. To mirror the semantics of the IR, we need a separate representation of poison. We should introduce G_POISON to enable better optimizations, particularly when legalization introduces padding vector elements.

This change would mostly be finding all the places G_IMPLICIT_DEF is handled, and equivalently handling G_POISON. We should then migrate vector widening and other transforms to introduce poison instead of undef.

贡献者指南