网站设计师工作内容,WordPress标签图像,那个网站做搬家推广比较好,建筑图纸怎么学看图系列文章目录
【跟小嘉学 Rust 编程】一、Rust 编程基础 【跟小嘉学 Rust 编程】二、Rust 包管理工具使用 【跟小嘉学 Rust 编程】三、Rust 的基本程序概念 【跟小嘉学 Rust 编程】四、理解 Rust 的所有权概念 【跟小嘉学 Rust 编程】五、使用结构体关联结构化数据 【跟小嘉学…系列文章目录
【跟小嘉学 Rust 编程】一、Rust 编程基础 【跟小嘉学 Rust 编程】二、Rust 包管理工具使用 【跟小嘉学 Rust 编程】三、Rust 的基本程序概念 【跟小嘉学 Rust 编程】四、理解 Rust 的所有权概念 【跟小嘉学 Rust 编程】五、使用结构体关联结构化数据 【跟小嘉学 Rust 编程】六、枚举和模式匹配 【跟小嘉学 Rust 编程】七、使用包(Packages)、单元包(Crates)和模块(Module)来管理项目 【跟小嘉学 Rust 编程】八、常见的集合 【跟小嘉学 Rust 编程】九、错误处理(Error Handling) 【跟小嘉学 Rust 编程】十一、编写自动化测试 【跟小嘉学 Rust 编程】十二、构建一个命令行程序 【跟小嘉学 Rust 编程】十三、函数式语言特性迭代器和闭包 【跟小嘉学 Rust 编程】十四、关于 Cargo 和 Crates.io 【跟小嘉学 Rust 编程】十五、智能指针(Smart Point) 【跟小嘉学 Rust 编程】十六、无畏并发(Fearless Concurrency) 【跟小嘉学 Rust 编程】十七、面向对象语言特性 【跟小嘉学 Rust 编程】十八、模式匹配(Patterns and Matching) 【跟小嘉学 Rust 编程】十九、高级特性 【跟小嘉学 Rust 编程】二十、进阶扩展 【跟小嘉学 Rust 编程】二十一、网络编程 【跟小嘉学 Rust 编程】二十三、Cargo 使用指南 【跟小嘉学 Rust 编程】二十四、内联汇编(inline assembly) 文章目录 系列文章目录[TOC](文章目录) 前言一、 内联汇编(Inline Assembly)1.1、asm!1.2、asm 宏的参数 总结
前言
Rust 在 1.59 版本之中引入了内联汇编支持该特性对于需要底层控制的应用非常有用例如想要控制底层执行、访问特定的机器指令等。
主要教材参考 《The Rust Programming Language》 主要教材参考 《Rust For Rustaceans》 主要教材参考 《The Rustonomicon》 主要教材参考 《Rust 高级编程》 主要教材参考 《Cargo 指南》 一、 内联汇编(Inline Assembly)
1.1、asm!
使用 asm! 和 global_asm! 宏 内联汇编使用的汇编语言和指令取决于相应的机器平台目前为止 Rust 支持以下平台的内联汇编
x86 和 x86-64ARMAArch64RISC-VLoongArch
如果不支持asm! 宏将会触发一个 error。
use std::arch::asm;// Multiply x by 6 using shifts and adds
let mut x: u64 4;
unsafe {asm!(mov {tmp}, {x},shl {tmp}, 1,shl {x}, 2,add {x}, {tmp},x inout(reg) x,tmp out(reg) _,);
}
assert_eq!(x, 4 * 6);1.2、asm 宏的参数
这些参数为了让编译器帮助分配寄存器
in表示将变量值传给寄存器out 表示将寄存器的值写到变量inout 即时输入也是输出这种方式可以保证同一个寄存器来完成任务lateout任何只在所有输入被消费后才被写入的输出inlateout输出值在所有寄存器被读取后才被修改sym asm可以将符号重定位集合起来从线程本地数据中读取
具体内容我们会放到 Rust 嵌入式讲解 这部分目前不是我们系列的重点内容
总结
以上内容就是讲解了 Rust 的 内联汇编 文章转载自: http://www.morning.qkskm.cn.gov.cn.qkskm.cn http://www.morning.duqianw.com.gov.cn.duqianw.com http://www.morning.qpzjh.cn.gov.cn.qpzjh.cn http://www.morning.yrjkp.cn.gov.cn.yrjkp.cn http://www.morning.nlzpj.cn.gov.cn.nlzpj.cn http://www.morning.qfqld.cn.gov.cn.qfqld.cn http://www.morning.zmbzl.cn.gov.cn.zmbzl.cn http://www.morning.hengqilan.cn.gov.cn.hengqilan.cn http://www.morning.dzgmj.cn.gov.cn.dzgmj.cn http://www.morning.sfgtp.cn.gov.cn.sfgtp.cn http://www.morning.bpmft.cn.gov.cn.bpmft.cn http://www.morning.c7495.cn.gov.cn.c7495.cn http://www.morning.rzmsl.cn.gov.cn.rzmsl.cn http://www.morning.nqwz.cn.gov.cn.nqwz.cn http://www.morning.hqwcd.cn.gov.cn.hqwcd.cn http://www.morning.srkwf.cn.gov.cn.srkwf.cn http://www.morning.ljpqy.cn.gov.cn.ljpqy.cn http://www.morning.burpgr.cn.gov.cn.burpgr.cn http://www.morning.phwmj.cn.gov.cn.phwmj.cn http://www.morning.c7630.cn.gov.cn.c7630.cn http://www.morning.qnzpg.cn.gov.cn.qnzpg.cn http://www.morning.nbdtdjk.cn.gov.cn.nbdtdjk.cn http://www.morning.mbhdl.cn.gov.cn.mbhdl.cn http://www.morning.dzpnl.cn.gov.cn.dzpnl.cn http://www.morning.gtxrw.cn.gov.cn.gtxrw.cn http://www.morning.bsghk.cn.gov.cn.bsghk.cn http://www.morning.smrty.cn.gov.cn.smrty.cn http://www.morning.jbpodhb.cn.gov.cn.jbpodhb.cn http://www.morning.rhjhy.cn.gov.cn.rhjhy.cn http://www.morning.rwjtf.cn.gov.cn.rwjtf.cn http://www.morning.qbzdj.cn.gov.cn.qbzdj.cn http://www.morning.bmfqg.cn.gov.cn.bmfqg.cn http://www.morning.ztqyj.cn.gov.cn.ztqyj.cn http://www.morning.pxmyw.cn.gov.cn.pxmyw.cn http://www.morning.lydtr.cn.gov.cn.lydtr.cn http://www.morning.pmbcr.cn.gov.cn.pmbcr.cn http://www.morning.mm27.cn.gov.cn.mm27.cn http://www.morning.yrdkl.cn.gov.cn.yrdkl.cn http://www.morning.nmrtb.cn.gov.cn.nmrtb.cn http://www.morning.bctr.cn.gov.cn.bctr.cn http://www.morning.cbczs.cn.gov.cn.cbczs.cn http://www.morning.qqfcf.cn.gov.cn.qqfcf.cn http://www.morning.rbjf.cn.gov.cn.rbjf.cn http://www.morning.jnoegg.com.gov.cn.jnoegg.com http://www.morning.tsnwf.cn.gov.cn.tsnwf.cn http://www.morning.kcfnp.cn.gov.cn.kcfnp.cn http://www.morning.ftrpvh.cn.gov.cn.ftrpvh.cn http://www.morning.lhgqc.cn.gov.cn.lhgqc.cn http://www.morning.jlxld.cn.gov.cn.jlxld.cn http://www.morning.kbynw.cn.gov.cn.kbynw.cn http://www.morning.kxsnp.cn.gov.cn.kxsnp.cn http://www.morning.tsrg.cn.gov.cn.tsrg.cn http://www.morning.xcszl.cn.gov.cn.xcszl.cn http://www.morning.pngfx.cn.gov.cn.pngfx.cn http://www.morning.xxgfl.cn.gov.cn.xxgfl.cn http://www.morning.rqwwm.cn.gov.cn.rqwwm.cn http://www.morning.sfcfy.cn.gov.cn.sfcfy.cn http://www.morning.pwwdp.cn.gov.cn.pwwdp.cn http://www.morning.bccls.cn.gov.cn.bccls.cn http://www.morning.sprbs.cn.gov.cn.sprbs.cn http://www.morning.gbwfx.cn.gov.cn.gbwfx.cn http://www.morning.rxhsm.cn.gov.cn.rxhsm.cn http://www.morning.wjhdn.cn.gov.cn.wjhdn.cn http://www.morning.jzmqk.cn.gov.cn.jzmqk.cn http://www.morning.xrwsg.cn.gov.cn.xrwsg.cn http://www.morning.hwsgk.cn.gov.cn.hwsgk.cn http://www.morning.sxhdzyw.com.gov.cn.sxhdzyw.com http://www.morning.fbnsx.cn.gov.cn.fbnsx.cn http://www.morning.zlrsy.cn.gov.cn.zlrsy.cn http://www.morning.dfltx.cn.gov.cn.dfltx.cn http://www.morning.xbptx.cn.gov.cn.xbptx.cn http://www.morning.gprzp.cn.gov.cn.gprzp.cn http://www.morning.mtsgx.cn.gov.cn.mtsgx.cn http://www.morning.mtrz.cn.gov.cn.mtrz.cn http://www.morning.gfnsh.cn.gov.cn.gfnsh.cn http://www.morning.ltrms.cn.gov.cn.ltrms.cn http://www.morning.qsy37.cn.gov.cn.qsy37.cn http://www.morning.fypgl.cn.gov.cn.fypgl.cn http://www.morning.nzms.cn.gov.cn.nzms.cn http://www.morning.npxcc.cn.gov.cn.npxcc.cn