When a program counter is a register in a register file/tensor and an operation (read or write) uses different dimensions (or accesses multiple registers at once), the CounterAccessResolvingPass currently fails to determine when such an operation involves the program counter or not. We may have to split these accesses into multiple nodes.
register R : Bits<2><32>
alias program counter PC : Bits<32> = R(0)
alias register R64 : Bits<64> = R
// the operation
R64 := 0x0
When a program counter is a register in a register file/tensor and an operation (read or write) uses different dimensions (or accesses multiple registers at once), the
CounterAccessResolvingPasscurrently fails to determine when such an operation involves the program counter or not. We may have to split these accesses into multiple nodes.