fork_join
在systemverilog中可以用fork…… join、fork ……join_any、fork……join_none来实现多个线程的并发执行。
1、父线程、子线程
调用fork……join的线程为父线程,fork……join中并发执行的是子线程,子线程可有多个,父线程只有一个。
无延时情况下竞争问题:
1.无延时情况下,主线程无延时语句优先于子线程无延时语句先执行
2.无延时优先于#0(零延时),无延时语句优先于零延时语句先执行。
2、阻塞父线程
(1)调用fork……join会阻塞父线程,直到子线程全部结束,才会启动父线程。
program test;
initial begin
fork
$display("child"); // fork下的子线程,并发执行
$display("child"); // fork下的子线程,并发执行
$display("child"); // fork下的子线程,并发执行
#0 $display("child"); // fork下的子线程,并发执行
join
$display("father"); // begin块下的父线程,顺序执行
$display("father"); // begin块下的父线程,顺序执行
$display("father"); // begin块下的父线程,顺序执行
#0 $display("father"); // begin块下的父线程,顺序执行
end
endprogram
fork……join中有4个子线程,要执行完4个子线程后才会执行父线程,输出为:
(2)、fork……join_any也会阻塞父线程,不过任意一个子线程结束后就执行父线程,且当父线程执行完所有的无延时语句后才会把权限交给子线程。遇到# N延时语句后子线程与父线程开始竞争。父线程有优先权,当父线程有权限后会优先执行完所有无延时语句,才会让子线程执行无延时语句。有延时语句父线程和子线程公开竞争。
program test;
initial begin
fork
$display("child"); // fork下的子线程,并发执行
$display("child"); // fork下的子线程,并发执行
$display("child"); // fork下的子线程,并发执行
#0 $display("child"); // fork下的子线程,并发执行
join_any
$display("father"); // begin块下的父线程,顺序执行
$display("father"); // begin块下的父线程,顺序执行
$display("father"); // begin块下的父线程,顺序执行
#0 $display("father"); // begin块下的父线程,顺序执行
end
endprogram
(3)、fork……join_none不会阻塞父线程,且执行完父线程无延时的语句后才会将权限交给子线程。遇到# N的延时语句后,子线程与父线程开始竞争。父线程有优先权,当父线程有权限后会优先执行完所有无延时语句,才会让子线程执行无延时语句。有延时语句父线程和子线程公开竞争。
program test;
initial begin
fork
$display("child"); // fork下的子线程,并发执行
$display("child"); // fork下的子线程,并发执行
$display("child"); // fork下的子线程,并发执行
#0 $display("child"); // fork下的子线程,并发执行
join_none
$display("father"); // begin块下的父线程,顺序执行
$display("father"); // begin块下的父线程,顺序执行
$display("father"); // begin块下的父线程,顺序执行
#0 $display("father"); // begin块下的父线程,顺序执行
end
endprogram
3、结束子线程
(1)、disable lable结束lable所指定的线程和子线程。(可以结束fork,也可以结束begin)如果fork块进入多次,用disalbe lable的方式会结束所有的进程。比如一个task中有fork块,这个task调用多次,如果task中的某一次调用执行了disalbe语句,会disalbe掉多次调用的产生的所有线程。
program test;
initial begin
fork:fork1
$display("child"); // fork下的子线程,并发执行
$display("child"); // fork下的子线程,并发执行
$display("child"); // fork下的子线程,并发执行
#0 $display("child"); // fork下的子线程,并发执行
fork
$display("child");
join
join_none
fork:fork2
$display("child21");
fork
#2 $dipslay("child22");
join
#2 display("child23");
join_none
#1 disable fork2; // 1ns后,结束fork2下的子线程
$display("father"); // begin块下的父线程,顺序执行
$display("father"); // begin块下的父线程,顺序执行
$display("father"); // begin块下的父线程,顺序执行
#0 $display("father"); // begin块下的父线程,顺序执行
end
endprogram
(2)disable fork
disable fork语句会结束disable fork所在进程所生成出的所以子线程,及子线程的子线程。
program test;
initial begin
fork:fork1
$display("child"); // fork下的子线程,并发执行
#2 $display("child"); // fork下的子线程,并发执行
#2 $display("child"); // fork下的子线程,并发执行
#2 $display("child"); // fork下的子线程,并发执行
fork
#2 $display("child");
join
join_none
fork:fork2
$display("child21");
fork
#2 $dipslay("child22");
join
#2 display("child23");
join_none
#1 disable fork; // 1ns后,结束fork1和fork2下的子线程。
$display("father"); // begin块下的父线程,顺序执行
$display("father"); // begin块下的父线程,顺序执行
$display("father"); // begin块下的父线程,顺序执行
#0 $display("father"); // begin块下的父线程,顺序执行
end
endprogram
4、等待进程结束
wait fork等待当前线程的所以子线程结束(不包括子线程的子线程。)
program automatic test; initial begin
fork
#99 $display("#99"); // 等待这个子线程
fork
#100 $display("#100"); // 不等待子线程的子线程
join_none
joine_none
wait fork;
$display("after waite");
end endprogram
5、for-fork:多线程的变量问题
1、copy变量应该在fork内,且copy给automatic变量,线程例化后,先初始化这些变量后再例化其他线程。
2、for-fork有变种,比如function中有fork,for来调用function
class cbk; task run();
for(int i=0; i<10; i++)begin
fork
int j = i; // class 中的都是默认是automatic变量
begin
#10ns;
$display(j);
end
join_none
end
endtask endclass
x
fork_join的更多相关文章
- FPGA学习
(一)Verilog HDL语法 一.模块 1.定义:一个电路模块/一种逻辑功能: 2.命名规则:只能是字母,数字,"$",或者'_',且开头必须是字母或者"_" ...
- 对Verilog 初学者比较有用的整理(转自它处)
*作者: Ian11122840 时间: 2010-9-27 09:04 ...
- conductor Kitchensink示例
一个示例的厨房工作流程,演示了所有模式构造的使用. 定义 { "name": "kitchensink", "description": & ...
- conductor 系统任务
动态任务: 参数: dynamicTaskNameParam:来自任务输入的参数的名称,其值用于调度任务. 例如 如果参数的值为ABC,则调度的下一个任务类型为“ABC”. Example { &qu ...
- Verilog_Day2_Plus
内容为书中第4章 等式运算符 “==” 与 “===” 的区别 Verilog中存在4种等式运算符: == (等于); != (不等于); === (等于); !== (不等于). “==”与&quo ...
- Java7 Fork-Join 框架:任务切分,并行处理
概要 现代的计算机已经向多CPU方向发展,即使是普通的PC,甚至现在的智能手机.多核处理器已被广泛应用.在未来,处理器的核心数将会发展的越来越多.虽然硬件上的多核CPU已经十分成熟,但是很多应用程序并 ...
- Verilog笔记.1.基本语法
0.前 抽象模型分级: • 系统级(system):用高级语言结构实现设计模块的外部性能的模型.• 算法级(algorithm):用高级语言结构实现设计算法的模型.• RTL级(Register Tr ...
- verilog behavioral modeling--sequential and parallel statements
1.Sequential statement groups the begin-end keywords: .group several statements togethor .cause the ...
- Verilog学习笔记基本语法篇(四)·········块语句
块语句是指将两条或者两条以上的语句组合在一起,使其在格式上更像一条语句.块语句分为两种: 1)用begin_end语句,通常用来标识顺序执行的语句,用它标识的块称作顺序块: 2)用fork_join语 ...
随机推荐
- Yum安装Maven
一.安装 wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum. ...
- Flowable实战(一)启动第一个完整流程
一.前言: 发现网上关于Flowable的资料基本都是浅尝辄止,对如何构建一个企业级的流程应用说明很少,所以写个实战系列,希望对大家和自己,都有所帮助. 二.认识Flowable Flowab ...
- HDU 2084 数塔 (动态规划DP)
原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=2084 题目分析:此题采用动态规划自底向上计算,如果我们要知道所走之和最大,那么最后一步肯定是走最后一排 ...
- Linux增加用户
Linux增加用户 注意一个不加-m不会出现家目录 sudo useradd Hans -m sudo passwd Hans sudo usermod -s /bin/bash Hans sudo ...
- Java中的常用类——Arrays
数组工具类java.util.Arrays Arrays类中的方法都是static修饰的静态方法,因此可以直接使用类名.方法名来调用,而不用通过new使用对象来调用(是"不用"不是 ...
- C#winform控件序列化,反序列化
using System; using System.Collections.Generic; using System.Drawing; using System.IO; using System. ...
- linux下编译支持opencl的opencv for android
主要的步骤其他人已经写过,请参考这篇:https://www.cnblogs.com/hrlnw/p/4720977.html 操作的细节请参考附件的pdf: https://files.cnblo ...
- sort排序出现安卓与苹果系统排序不一致问题
sort排序出现安卓与苹果系统排序不一致问题
- .NET SourceGenerators 根据 HTTPAPI 接口自动生成实现类
目录 摘要 元数据分析 使用 Source generators 实现 使用 Source generators 实现程序集分析 使用方法 SourceCode && Nuget pa ...
- java继承成员变量特点
1 /* 2 * 在子父类中,成员的特点体现. 3 * 1,成员变量. 4 * 2,成员函数. 5 * 3,构造函数. 6 */ 7 8 //1, 成员变量. 9 /* 10 * 当本类的成员和局部变 ...