[all-commits] [llvm/llvm-project] 697bd9: Give each mlir::Block a stable ID within its paren...
Fangrui Song via All-commits
all-commits at lists.llvm.org
Wed Jul 8 19:35:09 PDT 2026
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 697bd9704894691d6b0f40b3150d70047a6f181f
https://github.com/llvm/llvm-project/commit/697bd9704894691d6b0f40b3150d70047a6f181f
Author: Fangrui Song <i at maskray.me>
Date: 2026-07-08 (Wed, 08 Jul 2026)
Changed paths:
M mlir/include/mlir/IR/Block.h
M mlir/include/mlir/IR/Region.h
M mlir/include/mlir/IR/RegionGraphTraits.h
M mlir/lib/IR/Region.cpp
Log Message:
-----------
Give each mlir::Block a stable ID within its parent region (#207617)
Assign each mlir::Block a stable ID within its parent region, mirroring
llvm::BasicBlock/llvm::Function (called ID, not number, since a block/op
number denotes position in MLIR): Block gains getBlockID() and reads -1u
while it has no parent region; Region gains nextBlockID with
getMaxBlockID() and getBlockIDEpoch(); the block ilist traits assign the
ID on add/transfer and invalidate it on removal; and
GraphTraits<mlir::Block*>/<mlir::Region*> expose
getNumber/getMaxNumber/getNumberEpoch. This makes
GraphHasNodeNumbers<mlir::Block*> true, moving MLIR's CFGLoopInfo and
dominator tree onto the number-indexed path. MLIR never renumbers
blocks,
so the epoch is a fixed 0.
Prerequisite for requiring GraphHasNodeNumbers in llvm::LoopInfoBase and
dropping its DenseMap fallback.
Aided by Claude Opus 4.8
To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications
More information about the All-commits
mailing list