上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 57 下一页
摘要: ea指令变种(按大小分类): leaw #2个字节 leal #4个字节 leaq #8个字节 lea的用法: leaq a(b, c, d), %rax 首先lea指令是mov指令的变种,据说,lea指令是x86体系结构中,是一条最古老但是从某个方面来讲又是最神奇的指令。 表面上看,它做的事情非常 阅读全文
posted @ 2022-06-06 14:12 zJanly 阅读(265) 评论(0) 推荐(0) 编辑
摘要: https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#techs=AVX https://blog.csdn.net/nbu_dahe/article/details/122157205 https://bl 阅读全文
posted @ 2022-06-06 10:48 zJanly 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-06-03 05:08 zJanly 阅读(64) 评论(0) 推荐(0) 编辑
摘要: SHL、SHR、SAL、SAR: 移位指令 ;SHL(Shift Left): 逻辑左移;SHR(Shift Right): 逻辑右移;SAL(Shift Arithmetic Left): 算术左移;SAR(Shift Arithmetic Right): 算术右移 ;其中的 SHL 和 SAL 阅读全文
posted @ 2022-06-02 10:27 zJanly 阅读(326) 评论(0) 推荐(0) 编辑
摘要: https://programming.guide/normal-vs-subnormal-floats.html int __fpclassifyf(float x) { union {float f; uint32_t i;} u = {x}; int e = u.i>>23 & 0xff; i 阅读全文
posted @ 2022-05-30 14:09 zJanly 阅读(777) 评论(0) 推荐(0) 编辑
摘要: https://github.com/rcore-os/os-lectures 阅读全文
posted @ 2022-05-30 10:17 zJanly 阅读(7) 评论(0) 推荐(0) 编辑
摘要: ip https://blog.csdn.net/Wu000999/article/details/88617237 在计算机网络中,当主机通过适配器接收到一个MAC帧的时候,会先用硬件检测MAC帧中的目的地址。如果是发往本站的帧则收下,若否则丢失。一般,接收到的MAC帧有以下三种: 单播帧(一对一 阅读全文
posted @ 2022-05-26 17:09 zJanly 阅读(353) 评论(0) 推荐(0) 编辑
摘要: github.com/lucas-clemente/quic-go https://pkg.go.dev/github.com/lucas-clemente/quic-go/http3 阅读全文
posted @ 2022-05-26 10:15 zJanly 阅读(103) 评论(0) 推荐(0) 编辑
摘要: Go gRPC使用demo 准备工作: 1. 安装protobuf 编译环境 https://github.com/protocolbuffers/protobuf/releases 2. 安装go语言的protobuf代码转换工具protoc-gen-go go get -u github.com 阅读全文
posted @ 2022-05-23 14:49 zJanly 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 安装NVIDIA驱动时禁用自带nouveau驱动 lsmod |grep nouveau https://blog.csdn.net/wf19930209/article/details/81877822?utm_medium=distribute.pc_relevant.none-task-blo 阅读全文
posted @ 2022-05-21 06:59 zJanly 阅读(67) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 57 下一页