2014-09-13 03:06:41 +02:00
|
|
|
// See LICENSE for license details.
|
|
|
|
|
2014-03-25 13:22:04 +01:00
|
|
|
package rocket
|
|
|
|
|
|
|
|
import Chisel._
|
|
|
|
import Util._
|
2014-08-08 21:23:02 +02:00
|
|
|
import uncore._
|
2014-03-25 13:22:04 +01:00
|
|
|
|
2014-09-01 22:28:58 +02:00
|
|
|
case object NBTBEntries extends Field[Int]
|
2014-09-26 19:39:57 +02:00
|
|
|
case object NRAS extends Field[Int]
|
2014-08-12 03:36:23 +02:00
|
|
|
|
2015-02-02 05:04:13 +01:00
|
|
|
abstract trait BTBParameters extends CoreParameters {
|
2014-08-12 03:36:23 +02:00
|
|
|
val matchBits = params(PgIdxBits)
|
2014-09-01 22:28:58 +02:00
|
|
|
val entries = params(NBTBEntries)
|
2014-08-12 03:36:23 +02:00
|
|
|
val nRAS = params(NRAS)
|
|
|
|
val nPages = ((1 max(log2Up(entries)))+1)/2*2 // control logic assumes 2 divides pages
|
|
|
|
val opaqueBits = log2Up(entries)
|
|
|
|
val nBHT = 1 << log2Up(entries*2)
|
|
|
|
}
|
2014-04-08 00:58:49 +02:00
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
class RAS(nras: Int) {
|
2014-04-08 00:58:49 +02:00
|
|
|
def push(addr: UInt): Unit = {
|
2014-08-08 21:23:02 +02:00
|
|
|
when (count < nras) { count := count + 1 }
|
2015-01-30 00:29:25 +01:00
|
|
|
val nextPos = Mux(Bool(isPow2(nras)) || pos < nras-1, pos+1, UInt(0))
|
2014-04-08 00:58:49 +02:00
|
|
|
stack(nextPos) := addr
|
|
|
|
pos := nextPos
|
|
|
|
}
|
|
|
|
def peek: UInt = stack(pos)
|
|
|
|
def pop: Unit = when (!isEmpty) {
|
|
|
|
count := count - 1
|
2014-08-08 21:23:02 +02:00
|
|
|
pos := Mux(Bool(isPow2(nras)) || pos > 0, pos-1, UInt(nras-1))
|
2014-04-08 00:58:49 +02:00
|
|
|
}
|
|
|
|
def clear: Unit = count := UInt(0)
|
|
|
|
def isEmpty: Bool = count === UInt(0)
|
|
|
|
|
2014-08-08 21:23:02 +02:00
|
|
|
private val count = Reg(init=UInt(0,log2Up(nras+1)))
|
|
|
|
private val pos = Reg(init=UInt(0,log2Up(nras)))
|
2015-07-15 21:33:46 +02:00
|
|
|
private val stack = Reg(Vec.fill(nras){UInt()})
|
2014-04-08 00:58:49 +02:00
|
|
|
}
|
|
|
|
|
2014-08-12 03:36:23 +02:00
|
|
|
class BHTResp extends Bundle with BTBParameters {
|
2014-09-20 00:05:45 +02:00
|
|
|
val history = UInt(width = log2Up(nBHT).max(1))
|
2014-04-08 00:58:49 +02:00
|
|
|
val value = UInt(width = 2)
|
|
|
|
}
|
|
|
|
|
2014-10-03 13:22:58 +02:00
|
|
|
// BHT contains table of 2-bit counters and a global history register.
|
|
|
|
// The BHT only predicts and updates when there is a BTB hit.
|
|
|
|
// The global history:
|
|
|
|
// - updated speculatively in fetch (if there's a BTB hit).
|
|
|
|
// - on a mispredict, the history register is reset (again, only if BTB hit).
|
|
|
|
// The counter table:
|
2014-11-17 07:02:27 +01:00
|
|
|
// - each counter corresponds with the address of the fetch packet ("fetch pc").
|
2014-10-04 01:08:08 +02:00
|
|
|
// - updated when a branch resolves (and BTB was a hit for that branch).
|
2014-10-15 03:10:29 +02:00
|
|
|
// The updating branch must provide its "fetch pc".
|
2014-10-04 01:08:08 +02:00
|
|
|
class BHT(nbht: Int) {
|
2014-09-26 19:39:57 +02:00
|
|
|
val nbhtbits = log2Up(nbht)
|
2014-09-30 06:41:07 +02:00
|
|
|
def get(addr: UInt, update: Bool): BHTResp = {
|
2015-07-16 05:24:18 +02:00
|
|
|
val res = Wire(new BHTResp)
|
2014-10-04 01:08:08 +02:00
|
|
|
val index = addr(nbhtbits+1,2) ^ history
|
|
|
|
res.value := table(index)
|
2014-09-28 14:16:36 +02:00
|
|
|
res.history := history
|
2014-09-30 06:41:07 +02:00
|
|
|
val taken = res.value(0)
|
|
|
|
when (update) { history := Cat(taken, history(nbhtbits-1,1)) }
|
2014-04-08 00:58:49 +02:00
|
|
|
res
|
|
|
|
}
|
2014-11-17 07:02:27 +01:00
|
|
|
def update(addr: UInt, d: BHTResp, taken: Bool, mispredict: Bool): Unit = {
|
2014-10-04 01:08:08 +02:00
|
|
|
val index = addr(nbhtbits+1,2) ^ d.history
|
|
|
|
table(index) := Cat(taken, (d.value(1) & d.value(0)) | ((d.value(1) | d.value(0)) & taken))
|
2014-11-17 07:02:27 +01:00
|
|
|
when (mispredict) { history := Cat(taken, d.history(nbhtbits-1,1)) }
|
2014-04-08 00:58:49 +02:00
|
|
|
}
|
|
|
|
|
2014-10-04 01:08:08 +02:00
|
|
|
private val table = Mem(UInt(width = 2), nbht)
|
2014-08-08 21:23:02 +02:00
|
|
|
val history = Reg(UInt(width = nbhtbits))
|
2014-04-02 00:01:27 +02:00
|
|
|
}
|
|
|
|
|
2014-11-11 12:34:05 +01:00
|
|
|
// BTB update occurs during branch resolution (and only on a mispredict).
|
2014-09-17 23:24:03 +02:00
|
|
|
// - "pc" is what future fetch PCs will tag match against.
|
|
|
|
// - "br_pc" is the PC of the branch instruction.
|
2014-08-12 03:36:23 +02:00
|
|
|
class BTBUpdate extends Bundle with BTBParameters {
|
2014-04-02 00:01:27 +02:00
|
|
|
val prediction = Valid(new BTBResp)
|
2014-08-12 03:36:23 +02:00
|
|
|
val pc = UInt(width = vaddrBits)
|
|
|
|
val target = UInt(width = vaddrBits)
|
2014-04-02 00:01:27 +02:00
|
|
|
val taken = Bool()
|
2014-04-08 00:58:49 +02:00
|
|
|
val isJump = Bool()
|
2014-04-02 00:01:27 +02:00
|
|
|
val isReturn = Bool()
|
2014-09-17 23:24:03 +02:00
|
|
|
val br_pc = UInt(width = vaddrBits)
|
2014-04-02 00:01:27 +02:00
|
|
|
}
|
|
|
|
|
2014-11-17 07:02:27 +01:00
|
|
|
// BHT update occurs during branch resolution on all conditional branches.
|
|
|
|
// - "pc" is what future fetch PCs will tag match against.
|
|
|
|
class BHTUpdate extends Bundle with BTBParameters {
|
|
|
|
val prediction = Valid(new BTBResp)
|
|
|
|
val pc = UInt(width = vaddrBits)
|
|
|
|
val taken = Bool()
|
|
|
|
val mispredict = Bool()
|
|
|
|
}
|
|
|
|
|
2014-11-11 12:34:05 +01:00
|
|
|
class RASUpdate extends Bundle with BTBParameters {
|
|
|
|
val isCall = Bool()
|
|
|
|
val isReturn = Bool()
|
|
|
|
val returnAddr = UInt(width = vaddrBits)
|
|
|
|
val prediction = Valid(new BTBResp)
|
|
|
|
}
|
|
|
|
|
|
|
|
// - "bridx" is the low-order PC bits of the predicted branch (after
|
2014-11-17 07:02:27 +01:00
|
|
|
// shifting off the lowest log(inst_bytes) bits off).
|
2014-11-11 12:34:05 +01:00
|
|
|
// - "resp.mask" provides a mask of valid instructions (instructions are
|
2014-11-17 07:02:27 +01:00
|
|
|
// masked off by the predicted taken branch).
|
2014-08-12 03:36:23 +02:00
|
|
|
class BTBResp extends Bundle with BTBParameters {
|
2014-04-02 00:01:27 +02:00
|
|
|
val taken = Bool()
|
2014-10-04 01:08:08 +02:00
|
|
|
val mask = Bits(width = params(FetchWidth))
|
|
|
|
val bridx = Bits(width = log2Up(params(FetchWidth)))
|
2014-08-12 03:36:23 +02:00
|
|
|
val target = UInt(width = vaddrBits)
|
|
|
|
val entry = UInt(width = opaqueBits)
|
2014-04-08 00:58:49 +02:00
|
|
|
val bht = new BHTResp
|
2014-04-02 00:01:27 +02:00
|
|
|
}
|
|
|
|
|
2014-09-30 06:41:07 +02:00
|
|
|
class BTBReq extends Bundle with BTBParameters {
|
|
|
|
val addr = UInt(width = vaddrBits)
|
|
|
|
}
|
|
|
|
|
2014-03-25 13:22:04 +01:00
|
|
|
// fully-associative branch target buffer
|
2014-11-11 12:34:05 +01:00
|
|
|
// Higher-performance processors may cause BTB updates to occur out-of-order,
|
|
|
|
// which requires an extra CAM port for updates (to ensure no duplicates get
|
|
|
|
// placed in BTB).
|
|
|
|
class BTB(updates_out_of_order: Boolean = false) extends Module with BTBParameters {
|
2014-03-25 13:22:04 +01:00
|
|
|
val io = new Bundle {
|
2014-09-30 06:41:07 +02:00
|
|
|
val req = Valid(new BTBReq).flip
|
2014-04-02 00:01:27 +02:00
|
|
|
val resp = Valid(new BTBResp)
|
2014-11-17 07:02:27 +01:00
|
|
|
val btb_update = Valid(new BTBUpdate).flip
|
|
|
|
val bht_update = Valid(new BHTUpdate).flip
|
2014-11-11 12:34:05 +01:00
|
|
|
val ras_update = Valid(new RASUpdate).flip
|
2014-04-02 00:01:27 +02:00
|
|
|
val invalidate = Bool(INPUT)
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|
|
|
|
|
2015-07-30 00:03:13 +02:00
|
|
|
val idxValid = Reg(Vec(Bool(), entries))
|
2014-08-12 03:36:23 +02:00
|
|
|
val idxs = Mem(UInt(width=matchBits), entries)
|
|
|
|
val idxPages = Mem(UInt(width=log2Up(nPages)), entries)
|
|
|
|
val tgts = Mem(UInt(width=matchBits), entries)
|
|
|
|
val tgtPages = Mem(UInt(width=log2Up(nPages)), entries)
|
|
|
|
val pages = Mem(UInt(width=vaddrBits-matchBits), nPages)
|
|
|
|
val pageValid = Reg(init=UInt(0, nPages))
|
|
|
|
val idxPagesOH = idxPages.map(UIntToOH(_)(nPages-1,0))
|
|
|
|
val tgtPagesOH = tgtPages.map(UIntToOH(_)(nPages-1,0))
|
2014-04-02 00:01:27 +02:00
|
|
|
|
2015-07-30 00:03:13 +02:00
|
|
|
val useRAS = Reg(Vec(Bool(), entries))
|
|
|
|
val isJump = Reg(Vec(Bool(), entries))
|
2014-09-17 23:24:03 +02:00
|
|
|
val brIdx = Mem(UInt(width=log2Up(params(FetchWidth))), entries)
|
2014-03-25 13:22:04 +01:00
|
|
|
|
2014-08-12 03:36:23 +02:00
|
|
|
private def page(addr: UInt) = addr >> matchBits
|
2014-03-25 13:22:04 +01:00
|
|
|
private def pageMatch(addr: UInt) = {
|
|
|
|
val p = page(addr)
|
2014-05-19 04:25:43 +02:00
|
|
|
Vec(pages.map(_ === p)).toBits & pageValid
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|
2015-07-30 00:03:13 +02:00
|
|
|
private def tagMatch(addr: UInt, pgMatch: UInt): Vec[Bool] = {
|
2014-08-12 03:36:23 +02:00
|
|
|
val idx = addr(matchBits-1,0)
|
2014-03-25 13:22:04 +01:00
|
|
|
val idxMatch = idxs.map(_ === idx).toBits
|
|
|
|
val idxPageMatch = idxPagesOH.map(_ & pgMatch).map(_.orR).toBits
|
2015-07-30 00:03:13 +02:00
|
|
|
Vec(for (i <- 0 until entries)
|
|
|
|
yield idxValid(i) && idxMatch(i) && idxPageMatch(i))
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|
|
|
|
|
2014-11-17 07:02:27 +01:00
|
|
|
val r_btb_update = Pipe(io.btb_update)
|
2014-09-30 06:41:07 +02:00
|
|
|
val update_target = io.req.bits.addr
|
2014-04-02 00:01:27 +02:00
|
|
|
|
2014-09-30 06:41:07 +02:00
|
|
|
val pageHit = pageMatch(io.req.bits.addr)
|
|
|
|
val hits = tagMatch(io.req.bits.addr, pageHit)
|
2014-11-17 07:02:27 +01:00
|
|
|
val updatePageHit = pageMatch(r_btb_update.bits.pc)
|
|
|
|
val updateHits = tagMatch(r_btb_update.bits.pc, updatePageHit)
|
2014-03-25 13:22:04 +01:00
|
|
|
|
2014-11-17 07:02:27 +01:00
|
|
|
private var lfsr = LFSR16(r_btb_update.valid)
|
2014-03-25 13:22:04 +01:00
|
|
|
def rand(width: Int) = {
|
|
|
|
lfsr = lfsr(lfsr.getWidth-1,1)
|
|
|
|
Random.oneHot(width, lfsr)
|
|
|
|
}
|
|
|
|
|
2014-11-17 07:02:27 +01:00
|
|
|
val updateHit = r_btb_update.bits.prediction.valid
|
2014-03-25 13:22:04 +01:00
|
|
|
|
2014-04-02 00:01:27 +02:00
|
|
|
val useUpdatePageHit = updatePageHit.orR
|
2014-11-17 07:02:27 +01:00
|
|
|
val doIdxPageRepl = !useUpdatePageHit
|
2015-07-16 05:24:18 +02:00
|
|
|
val idxPageRepl = Wire(UInt())
|
2014-04-08 00:58:49 +02:00
|
|
|
val idxPageUpdateOH = Mux(useUpdatePageHit, updatePageHit, idxPageRepl)
|
|
|
|
val idxPageUpdate = OHToUInt(idxPageUpdateOH)
|
2014-03-25 13:22:04 +01:00
|
|
|
val idxPageReplEn = Mux(doIdxPageRepl, idxPageRepl, UInt(0))
|
|
|
|
|
2014-11-17 07:02:27 +01:00
|
|
|
val samePage = page(r_btb_update.bits.pc) === page(update_target)
|
2014-04-02 00:01:27 +02:00
|
|
|
val usePageHit = (pageHit & ~idxPageReplEn).orR
|
2014-11-17 07:02:27 +01:00
|
|
|
val doTgtPageRepl = !samePage && !usePageHit
|
2014-08-12 03:36:23 +02:00
|
|
|
val tgtPageRepl = Mux(samePage, idxPageUpdateOH, idxPageUpdateOH(nPages-2,0) << 1 | idxPageUpdateOH(nPages-1))
|
2014-04-08 00:58:49 +02:00
|
|
|
val tgtPageUpdate = OHToUInt(Mux(usePageHit, pageHit, tgtPageRepl))
|
2014-03-25 13:22:04 +01:00
|
|
|
val tgtPageReplEn = Mux(doTgtPageRepl, tgtPageRepl, UInt(0))
|
2014-05-19 04:25:43 +02:00
|
|
|
val doPageRepl = doIdxPageRepl || doTgtPageRepl
|
2014-03-25 13:22:04 +01:00
|
|
|
|
|
|
|
val pageReplEn = idxPageReplEn | tgtPageReplEn
|
2014-11-17 07:02:27 +01:00
|
|
|
idxPageRepl := UIntToOH(Counter(r_btb_update.valid && doPageRepl, nPages)._1)
|
2014-04-08 00:58:49 +02:00
|
|
|
|
2014-11-17 07:02:27 +01:00
|
|
|
when (r_btb_update.valid) {
|
|
|
|
assert(io.req.bits.addr === r_btb_update.bits.target, "BTB request != I$ target")
|
2014-11-11 12:34:05 +01:00
|
|
|
|
|
|
|
val nextRepl = Counter(!updateHit, entries)._1
|
2014-11-17 07:02:27 +01:00
|
|
|
val waddr =
|
2015-07-30 00:03:13 +02:00
|
|
|
if (updates_out_of_order) Mux(updateHits.reduce(_||_), OHToUInt(updateHits), nextRepl)
|
2014-11-17 07:02:27 +01:00
|
|
|
else Mux(updateHit, r_btb_update.bits.prediction.bits.entry, nextRepl)
|
2014-03-25 13:22:04 +01:00
|
|
|
|
2014-05-20 03:56:30 +02:00
|
|
|
// invalidate entries if we stomp on pages they depend upon
|
2015-07-30 00:03:13 +02:00
|
|
|
for (i <- 0 until idxValid.size)
|
|
|
|
when ((pageReplEn & (idxPagesOH(i) | tgtPagesOH(i))).orR) { idxValid(i) := false }
|
2014-05-20 03:56:30 +02:00
|
|
|
|
2014-11-17 07:02:27 +01:00
|
|
|
idxValid(waddr) := Bool(true)
|
|
|
|
idxs(waddr) := r_btb_update.bits.pc
|
2014-11-11 12:34:05 +01:00
|
|
|
tgts(waddr) := update_target
|
|
|
|
idxPages(waddr) := idxPageUpdate
|
|
|
|
tgtPages(waddr) := tgtPageUpdate
|
2014-11-17 07:02:27 +01:00
|
|
|
useRAS(waddr) := r_btb_update.bits.isReturn
|
|
|
|
isJump(waddr) := r_btb_update.bits.isJump
|
2014-11-11 12:34:05 +01:00
|
|
|
if (params(FetchWidth) == 1) {
|
|
|
|
brIdx(waddr) := UInt(0)
|
|
|
|
} else {
|
2014-11-17 07:02:27 +01:00
|
|
|
brIdx(waddr) := r_btb_update.bits.br_pc >> log2Up(params(CoreInstBits)/8)
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|
|
|
|
|
2014-08-12 03:36:23 +02:00
|
|
|
require(nPages % 2 == 0)
|
|
|
|
val idxWritesEven = (idxPageUpdateOH & Fill(nPages/2, UInt(1,2))).orR
|
2014-03-25 13:22:04 +01:00
|
|
|
|
2014-05-19 04:25:43 +02:00
|
|
|
def writeBank(i: Int, mod: Int, en: Bool, data: UInt) =
|
2014-08-12 03:36:23 +02:00
|
|
|
for (i <- i until nPages by mod)
|
2014-05-19 04:25:43 +02:00
|
|
|
when (en && pageReplEn(i)) { pages(i) := data }
|
|
|
|
|
2014-03-25 13:22:04 +01:00
|
|
|
writeBank(0, 2, Mux(idxWritesEven, doIdxPageRepl, doTgtPageRepl),
|
2014-11-17 07:02:27 +01:00
|
|
|
Mux(idxWritesEven, page(r_btb_update.bits.pc), page(update_target)))
|
2014-03-25 13:22:04 +01:00
|
|
|
writeBank(1, 2, Mux(idxWritesEven, doTgtPageRepl, doIdxPageRepl),
|
2014-11-17 07:02:27 +01:00
|
|
|
Mux(idxWritesEven, page(update_target), page(r_btb_update.bits.pc)))
|
2014-05-19 04:25:43 +02:00
|
|
|
|
|
|
|
when (doPageRepl) { pageValid := pageValid | pageReplEn }
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
when (io.invalidate) {
|
2014-05-19 04:25:43 +02:00
|
|
|
idxValid := 0
|
|
|
|
pageValid := 0
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|
|
|
|
|
2015-07-30 00:03:13 +02:00
|
|
|
io.resp.valid := hits.reduce(_||_)
|
2014-04-02 00:01:27 +02:00
|
|
|
io.resp.bits.taken := io.resp.valid
|
|
|
|
io.resp.bits.target := Cat(Mux1H(Mux1H(hits, tgtPagesOH), pages), Mux1H(hits, tgts))
|
2014-04-08 00:58:49 +02:00
|
|
|
io.resp.bits.entry := OHToUInt(hits)
|
2014-10-04 01:08:08 +02:00
|
|
|
io.resp.bits.bridx := brIdx(io.resp.bits.entry)
|
2014-10-21 03:45:23 +02:00
|
|
|
if (params(FetchWidth) == 1) {
|
|
|
|
io.resp.bits.mask := UInt(1)
|
|
|
|
} else {
|
2014-11-03 10:13:22 +01:00
|
|
|
// note: btb_resp is clock gated, so the mask is only relevant for the io.resp.valid case
|
2014-11-11 12:34:05 +01:00
|
|
|
io.resp.bits.mask := Mux(io.resp.bits.taken, Cat((UInt(1) << brIdx(io.resp.bits.entry))-1, UInt(1)),
|
2014-11-17 07:02:27 +01:00
|
|
|
SInt(-1))
|
2014-10-21 03:45:23 +02:00
|
|
|
}
|
2014-04-08 00:58:49 +02:00
|
|
|
|
2014-08-12 03:36:23 +02:00
|
|
|
if (nBHT > 0) {
|
2014-10-04 01:08:08 +02:00
|
|
|
val bht = new BHT(nBHT)
|
2015-07-30 00:03:01 +02:00
|
|
|
val isBranch = !Mux1H(hits, isJump)
|
|
|
|
val res = bht.get(io.req.bits.addr, io.req.valid && io.resp.valid && isBranch)
|
2014-11-17 07:02:27 +01:00
|
|
|
val update_btb_hit = io.bht_update.bits.prediction.valid
|
|
|
|
when (io.bht_update.valid && update_btb_hit) {
|
|
|
|
bht.update(io.bht_update.bits.pc, io.bht_update.bits.prediction.bits.bht, io.bht_update.bits.taken, io.bht_update.bits.mispredict)
|
2014-09-26 19:39:57 +02:00
|
|
|
}
|
2015-07-30 00:03:01 +02:00
|
|
|
when (!res.value(0) && isBranch) { io.resp.bits.taken := false }
|
2014-04-08 00:58:49 +02:00
|
|
|
io.resp.bits.bht := res
|
|
|
|
}
|
2014-04-02 00:01:27 +02:00
|
|
|
|
2014-08-12 03:36:23 +02:00
|
|
|
if (nRAS > 0) {
|
|
|
|
val ras = new RAS(nRAS)
|
2014-04-08 08:47:53 +02:00
|
|
|
val doPeek = Mux1H(hits, useRAS)
|
|
|
|
when (!ras.isEmpty && doPeek) {
|
2014-04-08 00:58:49 +02:00
|
|
|
io.resp.bits.target := ras.peek
|
2014-04-02 00:01:27 +02:00
|
|
|
}
|
2014-11-11 12:34:05 +01:00
|
|
|
when (io.ras_update.valid) {
|
|
|
|
when (io.ras_update.bits.isCall) {
|
|
|
|
ras.push(io.ras_update.bits.returnAddr)
|
2014-04-08 08:47:53 +02:00
|
|
|
when (doPeek) {
|
2014-11-11 12:34:05 +01:00
|
|
|
io.resp.bits.target := io.ras_update.bits.returnAddr
|
2014-04-08 08:47:53 +02:00
|
|
|
}
|
2014-11-11 12:34:05 +01:00
|
|
|
}.elsewhen (io.ras_update.bits.isReturn && io.ras_update.bits.prediction.valid) {
|
2014-04-08 00:58:49 +02:00
|
|
|
ras.pop
|
|
|
|
}
|
2014-04-02 00:01:27 +02:00
|
|
|
}
|
|
|
|
when (io.invalidate) { ras.clear }
|
|
|
|
}
|
2014-03-25 13:22:04 +01:00
|
|
|
}
|