Cpu
Computer - CPU(Central Processing Unit)
Architecture of the central processing unit (CPU)
Different Classes of CPU Registers
everything is about caculation
what’s program;
program = algorithm(function) + data;
von noenuman architecture
-
control unit: 包含:progarm counter register, instruction register; 读取和解码指令,执行指令
32bit cpu 能存储 最大内存地址 4g(42ebyte)
-
arithmetic/login unit: 完成实际的计算
-
register(cache): store data highlight:
程序指令也装进内存里,相比早期写死在控制单元里,具有很大灵活性;
instruction
1. type
type | work component |
---|---|
caculate | alu |
jump;call/return | alu; control unit(uncontional jump) |
data transfrom(register and ram, register and register, ram and ram, registr and device) | register,ram |
2. how jump/call excute
非顺序指令流的执行;
1. jump; jumpEqual;
jump 1000
: jump to the address 1000;
beq$1,$2,1000
: if register $1 and $2 is equal, go to address 1000
- 干什什么? 非顺序指令(更新progarm counter的值);
- 哪些命令用到jump: 条件语句;循环语句;
instruction structure
the element of instruction: operatecode , register , address/value
the excuting of cpu
instruction cycle: get instruction —> decode —-> excute —-> store
- control unit 根据 program counter, 从ram 读取指令;
- control unit 解码指令;
- control unit 控制 LRU和 register 执行指令
- program counter 自增 指令长度,回到1重新执行
a = 1+2 指令执行过程
|
|
register
1. program counter
hold the address of the next instruction;
pc = pc + (the length of instruction)
cpu load
- load: the total task to excute: the number of toask being excuted
- cpu utilization: idea time: 1- idea time - io wait time
case: 1. a and b both 100% cpu, then weo shoud check load average to judge which is more busy 2. high load average and low cpu utilization: cpu have lost of time in io waiting,
the cpu cycle
-
what is cyle cycle: a time range to do sth
- instruction cyle: the cycle of a instruction
- clock cycle: the cpu’s minimum work time, a clock signal’s time, a 2ghz cpu, the times of clock cycle is 2g ;
- cpu/machine cycle: a set of clock cycle
-
why only the number of excuctions and memory space is considered when evaluating algorithm efficiency?
when cpu work, it consume the clock cycle, it hope use clock cycle to do more things; for progame, it should reduce the instructions’s count,e.g., excutions’s count
when ram work, it consume the memroy, it hope use less memroy to do more thing## the cpu cycle
-
what is cyle cycle: a time range to do sth
- instruction cyle: the cycle of a instruction
- clock cycle: the cpu’s minimum work time, a clock signal’s time, a 2ghz cpu, the times of clock cycle is 2g ;
- cpu/machine cycle: a set of clock cycle
-
why only the number of excuctions and memory space is considered when evaluating algorithm efficiency?
when cpu work, it consume the clock cycle, it hope use clock cycle to do more things; for progame, it should reduce the instructions’s count,e.g., excutions’s count
when ram work, it consume the memroy, it hope use less memroy to do more thing
时钟周期(clock cycle)
为什么 CPU 需要时钟才能工作? cpu 和 ram 都是有有一组组的逻辑电路
cpu工作过程就是逻辑门状态更改的过程;
一个cpu时钟就是cpu工作的最小单位,也就是逻辑门发生一次状态更改;
instruction;
pause
-
spin wait
busy waiting: repeatedly check to see if a condition is true; while(a >0){};
-
PAUSE: a hint to the processor that the code sequeue is a spin wait
- The processor uses this hint to avoid the memory order violation in most situations, which greatly improves processor performance
- reduce the power consumed by a processor while executing a spin loop.
-
code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// dospin定义,调用了procyield方法 active_spin_cnt = 30 func sync_runtime_doSpin() { procyield(active_spin_cnt) } // procyield定义 func procyield(cycles uint32) // 实现, 即将对ax寄存器放入30,减到0之后就算自旋完成一次返回 TEXT runtime·procyield(SB),NOSPLIT,$0-0 MOVL cycles+0(FP), AX again: PAUSE SUBL $1, AX JNZ again RET