Zustand源码分析 原理 12345678910111213141516171819202122// store.tsimport { create } from "zustand"; const initStateCreateFunc = (set) => ({ bears: 0, increase: (by) => set((stat 2023-06-10 FE #FE,状态管理,Zustand
斯坦福cs231(编译原理)の 12 Conclusion 运行时和编译时的划分及概念(广义和狭义)? compile: The instructions or source code written using high-level language is required to get converted to machine code for a computer to understand. During compile time, the sou 2023-06-10 编译原理 #编译原理,计算机基础,cool
斯坦福cs231(编译原理)の 3 Parsing Analysis 1 (Introduction & LL Analysis) Introduction Regular languages The weakest formal languages widely used Many applications 正则表达式的缺陷: Parser: Input: sequence of tokens from lexer Output: parse tree pf the program 12345678Cool: 2023-06-10 编译原理 #编译原理,计算机基础,cool
Network-CS144 の 1 Introduction Introduction 网络应用: 基于网络读取和写数据 常见通信模型:双向的可靠的字节流(为什么是字节流) 通信双方一边写入数据,一变读取数据 可靠的(除非连接中断) 四层网络模型 1234567891011121314151617181920211. Application2. Transport3. Network:[Data, headder: [from, to]]4. Lin 2023-06-10 计算机网络 #计算机网络,计算机基础
斯坦福cs231(编译原理)の 5 Semantic Analysis Type Checking Rules and How to Implement ? Cool type can be implemented in a single traversal over the AST Type environment is passed down the tree (From parent to child),环境自上而下是在不断扩增的 Types are pass 2023-06-04 编译原理 #编译原理,计算机基础,cool
斯坦福cs231(编译原理)の 7 Cool Gode Generation 代码生成简介 将ast转换为汇编代码,具体这里是mips汇编指令,cool里使用了累加寄存器$a0 堆栈在内存中,,堆栈由高地址像低地址扩增 堆栈指针:$sp or $29 具体的mips指令可以参考:misp文档 定义简单函数: 123def fib(x) = if x = 1 then 0 else if x = 2 then 1 else fib(x-1) + f 2023-06-03 编译原理 #编译原理,计算机基础,cool
四层:每一层都为上层提供了服务 Application:双向可靠的字节流(using application-specific semantics) Transport: 保证了数据正确,有序,以及拥塞控制 Network: 不能保证数据的有序正确,不损坏,from ,to Link: 节点之间的数据传播 IP:瘦身层,因为底层可以有很多(http, smtp, ssh, ftp),上层也是,比如 2023-06-03
斯坦福cs231(编译原理)の 10 Register Allocation 引入 中间代码使用了无限制的临时变量 简化了代码生成和优化 复杂了向汇编转换的过程 实际情况寄存器是有限的,不能无限制的使用,所以在向汇编转换的时候使用有限的寄存器。 Register allocation is as old as compilers Register allocation was used in the original FORTRAN compiler in the 2023-05-20 编译原理 #编译原理,计算机基础,cool