p.file
213 subscribers
51 photos
7 videos
156 files
291 links
Please read the pinned post.

The group has restriction for links due to spam bots, but you can send it anyway.

@perplex_files
Download Telegram
recurrences-2.pdf
917.6 KB
#math #programming

Solving recurrences to find asymptotic bounds of a recursive function.
👍1
#comp_arch

When dealing with control hazards, we need to predict the next instructions and flush the pipeline registers if the branch is taken. Since the branch checks whether rs = rt, we can put an equality comparator in the Decode stage, thus reducing the penalty of a misprediction. The interesting thing is that by doing that, we need to deal with RAW (read after write) hazards, because of the equality comparator sources, the process is similar to the post above. If the sources are in the Writeback stage, there is no hazard (the write step is made at low clock, and the read step is made at high clock). If the sources are in the Memory stage, we use a simple logic as the picture shows (ForwardAD and ForwardBD), take a look at the combinatory logic, i will not explain. Now, if the sources are in the Execute stage or in the Memory stage of a lw instruction, the Decode stage will be stalled and the Execute stage will be flushed.
A little thing to notice, when PcSrcD = 1, the decode pipeline register is flushed (as shown in the first picture).
Media is too big
VIEW IN TELEGRAM
#embedded #hardware

FreeBSD: FPGA development of RISC-V 32bit CPU, and buffer overflow demo

source(@BSDJedi) youtube link

https://t.iss.one/FreeBSD/117
Topics: Linux Configuration, Hardening. #linux

Configuration recommendations of a Gnu/Linux system

- General principles of security and hardening
- Hardware and firmware configuration
- Securing the boot chain
- Configuring system services
- Kernel configuration
- Privilege and access management
- Isolation

https://cyber.gouv.fr/sites/default/files/document/linux_configuration-en-v2.pdf

https://cyber.gouv.fr/publications/configuration-recommendations-gnulinux-system
1