Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [AMDGPU] Fix getInstrLatency() always returning 1 | Stanislav Mekhanoshin | 2020-01-14 | 1 | -1/+1 |
| | | | | | | | | We do not have InstrItinerary so generic getInstLatency() was always defaulting to return 1 cycle. We need to use TargetSchedModel instead to compute an instruction's latency. Differential Revision: https://reviews.llvm.org/D72655 | ||||
* | LiveIntervals: Fix handleMove asserting on BUNDLE | Matt Arsenault | 2019-07-19 | 1 | -0/+52 |
The top-level BUNDLE instruction should behave as an ordinary instruction. It is supposed to have all relevant registers as implicit operands. Moving it should work as any other instruction. I believe the assert intended to avoid moving instructions inside bundles. llvm-svn: 366605 |