在fork-join語句塊中,每個語句都是并發(fā)進(jìn)程。在這個語句塊中,父進(jìn)程一直被阻塞,直到所有由“fork-join”產(chǎn)生的子進(jìn)程都執(zhí)行完:
module forkJoin; int a, b, c, d; initial fork : forkBlock begin //frst process #50 a = 5; $display($stime,,, "a = %0d",a); end begin //second process #100 b = 10; $display($stime,,, "b = %0d",b); end begin //third process #100 c = 20; $display($stime,,, "c = %0d",c); end begin //fourth process #50 d = 15; $display($stime,,, "d = %0d",d); end //frst, second, third and fourth processes execute in parallel. join endmodule
仿真log:
50 a = 5 50 d = 15 100 b = 10 100 c = 20 V C S S i m u l a t i o n R e p o r t
上面的fork-join產(chǎn)生了4個并行的子進(jìn)程,都使用begin-end區(qū)分,在每個begin-end中間的語句都是串行執(zhí)行的。
1. 第1個進(jìn)程在時間50執(zhí)行;
2. 第2個進(jìn)程在時間100執(zhí)行;
3. 第3個進(jìn)程在時間100執(zhí)行;
4. 第4個進(jìn)程在時間50執(zhí)行;
這4個進(jìn)程的時序都是獨立的。
審核編輯:湯梓紅
-
Verilog
+關(guān)注
關(guān)注
28文章
1343瀏覽量
109925 -
System
+關(guān)注
關(guān)注
0文章
165瀏覽量
36848 -
進(jìn)程
+關(guān)注
關(guān)注
0文章
201瀏覽量
13938 -
Fork
+關(guān)注
關(guān)注
0文章
14瀏覽量
3280
原文標(biāo)題:SystemVerilog中的fork-join
文章出處:【微信號:芯片驗證工程師,微信公眾號:芯片驗證工程師】歡迎添加關(guān)注!文章轉(zhuǎn)載請注明出處。
發(fā)布評論請先 登錄
相關(guān)推薦
評論