上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 58 下一页
摘要: 4.4s* 17.5--mulr 13.1 e 18.62x 4.4 //bmi2s* 17.5 --divr 379 //125e 114 //94ss 48.35sd 57 --vpslld4.4 .global _k_k:movl %edi, %eaxshll $32, %eaxmov %xm 阅读全文
posted @ 2022-06-07 10:40 zJanly 阅读(177) 评论(0) 推荐(0)
摘要: 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 阅读(336) 评论(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 阅读(92) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-06-03 05:08 zJanly 阅读(77) 评论(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 阅读(393) 评论(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 阅读(870) 评论(0) 推荐(0)
摘要: https://github.com/rcore-os/os-lectures 阅读全文
posted @ 2022-05-30 10:17 zJanly 阅读(13) 评论(0) 推荐(0)
摘要: ip https://blog.csdn.net/Wu000999/article/details/88617237 在计算机网络中,当主机通过适配器接收到一个MAC帧的时候,会先用硬件检测MAC帧中的目的地址。如果是发往本站的帧则收下,若否则丢失。一般,接收到的MAC帧有以下三种: 单播帧(一对一 阅读全文
posted @ 2022-05-26 17:09 zJanly 阅读(421) 评论(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 阅读(112) 评论(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 阅读(47) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 58 下一页