tested and seems to be working

This commit is contained in:
Yehowshua Immanuel 2025-03-23 18:45:32 -04:00
parent 35fc49382d
commit 76e542ff36
3 changed files with 37 additions and 12 deletions

View file

@ -1,5 +1,6 @@
package TagEngine( package TagEngine(
TagEngine(..), TagEngine(..),
Util.BasicResult(..),
mkTagEngine) where mkTagEngine) where
import Vector import Vector
@ -9,7 +10,7 @@ import Util
interface (TagEngine :: # -> *) numTags = interface (TagEngine :: # -> *) numTags =
requestTag :: ActionValue UIntLog2N(numTags) requestTag :: ActionValue UIntLog2N(numTags)
retireTag :: UIntLog2N(numTags) -> Action retireTag :: UIntLog2N(numTags) -> ActionValue BasicResult
-- The tag engine returns a tag that is unique for the duration of -- The tag engine returns a tag that is unique for the duration of
-- the lifetime of the tag. Useful when you need to tag transactions -- the lifetime of the tag. Useful when you need to tag transactions
@ -56,7 +57,11 @@ mkTagEngine =
when when
Just sampledStackPtr <- stackPtr Just sampledStackPtr <- stackPtr
retireTag :: UIntLog2N(numTags) -> Action -- retireTag isn't guarded so its up to external module to only attempt to
-- retire valid tags... At any rate, we can notify the requestor of failures
-- to retire tags - although the requestor can merely ignore this
-- notification.
retireTag :: UIntLog2N(numTags) -> ActionValue BasicResult
retireTag tag = retireTag tag =
do do
let let
@ -71,4 +76,6 @@ mkTagEngine =
(select inUseVec tag) := False (select inUseVec tag) := False
(select freeStackVec nextStackPtrUint) := tag (select freeStackVec nextStackPtrUint) := tag
stackPtr := Just nextStackPtrUint stackPtr := Just nextStackPtrUint
else action {} return Success
else do
return Failure

View file

@ -116,22 +116,33 @@ mkSim = do
|> do |> do
$display "got tag : " tagEngine.requestTag $display "got tag : " tagEngine.requestTag
|> do |> do
$display "retiring tag : 3" res <- tagEngine.retireTag 3
tagEngine.retireTag 3 $display "retiring tag : 3 " (fshow res)
action {}
|> do |> do
$display "got tag : " tagEngine.requestTag $display "got tag : " tagEngine.requestTag
|> do |> do
$display "got tag : " tagEngine.requestTag $display "got tag : " tagEngine.requestTag
|> do |> do
$display "retiring tag : 4" res <- tagEngine.retireTag 4
tagEngine.retireTag 4 $display "retiring tag : 4 " (fshow res)
action {}
|> do
res <- tagEngine.retireTag 4
$display "retiring tag : 4 " (fshow res)
action {}
|> do
res <- tagEngine.retireTag 0
$display "retiring tag : 0 " (fshow res)
action {}
|> do |> do
$display "got tag : " tagEngine.requestTag $display "got tag : " tagEngine.requestTag
|> do |> do
$display "got tag : " tagEngine.requestTag $display "got tag : " tagEngine.requestTag
|> do |> do
$display "retiring tag : 1" res <- tagEngine.retireTag 1
tagEngine.retireTag 1 $display "retiring tag : 1 " (fshow res)
action {}
|> do |> do
$display "got tag : " tagEngine.requestTag $display "got tag : " tagEngine.requestTag

View file

@ -1,7 +1,14 @@
package Util((|>), simulate_for) where package Util(
(|>),
BasicResult(..),
simulate_for) where
infixr 0 |> infixr 0 |>
data BasicResult = Success
| Failure
deriving (Bits, Eq, FShow)
(|>) :: (a -> b) -> a -> b (|>) :: (a -> b) -> a -> b
f |> x = f x; f |> x = f x;
@ -11,7 +18,7 @@ simulate_for curr_cycle end_cycle =
"count_cycle_rule": when True ==> action "count_cycle_rule": when True ==> action
curr_cycle := curr_cycle + 1 curr_cycle := curr_cycle + 1
if curr_cycle == end_cycle if curr_cycle == end_cycle
then then
$finish $finish
else else
$display "cycle = " curr_cycle $display "cycle = " curr_cycle