__attribute__((far))说明
时间: 2023-11-05 09:58:26 浏览: 109
`__attribute__((far))` 是 GCC 编译器的一个扩展,用于指示编译器将函数指针或数据指针指向内存空间较远的位置。在某些嵌入式系统中,内存空间被划分为多个区域,例如程序和数据可能存储在不同的内存区域,因此需要使用不同的指针类型来访问这些内存区域。`__attribute__((far))` 可以用于声明指向远程内存区域的函数指针或数据指针,以便编译器生成正确的指针访问代码。
例如,下面的代码声明了一个指向远程数据区域的指针:
```c
uint8_t __attribute__((far)) *data_ptr;
```
这告诉编译器 `data_ptr` 指向内存空间较远的位置,并且编译器会使用正确的指针访问代码来访问该指针。
需要注意的是,`__attribute__((far))` 只有在特定的编译器和目标平台上才能使用,因此在编写可移植的代码时应该避免使用它。
相关问题
请说明如下数字设计综合工具的执行脚本里每个命令的作用:“source -verbose "../const/design_info.tcl" set_attribute information_level 9 set_attribute hdl_track_filename_row_col true set_attribute hdl_generate_index_style %s_%d set_attribute hdl_generate_separator _ set_attribute hdl_search_path $SEARCH_PATH set_attribute library $LIB_LIST_MAX read_hdl -sv $RTL_LIST -define LEAF_BHV set_attr blackbox true [find / -hdl_arch clock_tree_model*] elaborate $DESIGN_TOP # Verilog Style set_attribute write_vlog_bit_blast_constants true set_attribute write_vlog_unconnected_port_style none ;#(none/partial/full) set_attribute hdl_undriven_output_port_value none set_attribute hdl_unconnected_input_port_value x set_attribute hdl_allow_inout_const_port_connect false syn_gen -effort high change_names -regexp -allowed "a-zA-Z0-9_" -subdesign -max_length 20 change_names -regexp -allowed "a-zA-Z0-9_" -instance change_names -regexp -allowed "a-z0-9_" -net write_hdl -equation > $GNR_NETLIST”
这段数字设计综合工具的执行脚本包含了多个命令,每个命令的作用如下:
1. `source -verbose "../const/design_info.tcl"`:引入常量文件 `design_info.tcl`。
2. `set_attribute information_level 9`:设置综合信息输出级别为 9。
3. `set_attribute hdl_track_filename_row_col true`:在门级网表中添加源代码文件名、行号和列号等信息。
4. `set_attribute hdl_generate_index_style %s_%d`:设置门级网表的索引样式为 `%s_%d`,其中 `%s` 表示模块或信号的名称,`%d` 表示该模块或信号在其父模块中的序号。
5. `set_attribute hdl_generate_separator _`:设置门级网表中模块和信号之间的分隔符为下划线。
6. `set_attribute hdl_search_path $SEARCH_PATH`:设置综合工具的搜索路径为 `$SEARCH_PATH`,其中 `$SEARCH_PATH` 是常量文件中定义的路径。
7. `set_attribute library $LIB_LIST_MAX`:将当前设计的综合库设置为工程中定义的最大库列表。
8. `read_hdl -sv $RTL_LIST -define LEAF_BHV`:读取 Verilog/SystemVerilog 文件,其中 `$RTL_LIST` 是常量文件中定义的文件列表,`-define LEAF_BHV` 表示定义了宏 `LEAF_BHV`。
9. `set_attr blackbox true [find / -hdl_arch clock_tree_model*]`:将时钟树模型标记为黑盒。
10. `elaborate $DESIGN_TOP`:对顶层模块进行综合。
11. `set_attribute write_vlog_bit_blast_constants true`:在 Verilog 输出文件中写入常量的位表示。
12. `set_attribute write_vlog_unconnected_port_style none ;#(none/partial/full)`:在 Verilog 输出文件中处理未连接的端口,`none` 表示不处理。
13. `set_attribute hdl_undriven_output_port_value none`:定义未驱动输出端口的默认值为 `none`。
14. `set_attribute hdl_unconnected_input_port_value x`:定义未连接输入端口的默认值为 `x`。
15. `set_attribute hdl_allow_inout_const_port_connect false`:禁止连接 inout 类型端口和常量端口。
16. `syn_gen -effort high`:进行综合,`-effort high` 表示使用高效的综合策略。
17. `change_names -regexp -allowed "a-zA-Z0-9_" -subdesign -max_length 20`:对子模块的名称进行修改,将不符合规范的字符替换为下划线,最大长度为 20 个字符。
18. `change_names -regexp -allowed "a-zA-Z0-9_" -instance`:对实例的名称进行修改,将不符合规范的字符替换为下划线。
19. `change_names -regexp -allowed "a-z0-9_" -net`:对信号的名称进行修改,将不符合规范的字符替换为下划线。
20. `write_hdl -equation > $GNR_NETLIST`:将门级网表输出到 `$GNR_NETLIST` 文件中。
__attribute__(FUNC_ATTRIBUTE)
__attribute__(FUNC_ATTRIBUTE)是GCC编译器提供的一种函数属性,用于指定函数的某些特性。其中FUNC_ATTRIBUTE可以是一些预定义的属性,例如always_inline、noreturn等等。这些属性可以影响编译器对函数的优化和处理方式,例如always_inline属性可以强制编译器将函数内联展开,而noreturn属性可以告诉编译器函数不会返回。使用__attribute__(FUNC_ATTRIBUTE)可以帮助程序员更好地控制函数的行为和性能。
阅读全文