()
| 29 | func (l location) coldCellIdx() int { return int(l & 0x00ffffff) } |
| 30 | |
| 31 | func (l location) String() string { |
| 32 | return fmt.Sprintf("0x%x", uint32(l)) |
| 33 | } |
| 34 | |
| 35 | // coldLocation returns a location pointing to a cold cache entry. |
| 36 | func coldLocation(bidx, cidx int) location { |
nothing calls this directly
no outgoing calls
no test coverage detected