sysprog
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.

      Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Explore these features while you wait
      Complete general settings
      Bookmark and like published notes
      Write a few more notes
      Complete general settings
      Write a few more notes
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Help
Menu
Options
Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.

    Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Explore these features while you wait
    Complete general settings
    Bookmark and like published notes
    Write a few more notes
    Complete general settings
    Write a few more notes
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    --- tags: computer-arch --- # Quiz3 of Computer Architecture (2021 Fall) :::info :information_source: General Information * You are allowed to read **[lecture materials](http://wiki.csie.ncku.edu.tw/arch/schedule)**. * That is, an open book exam. * We are using the honor system during this quiz, and would like you to accept the following: 1. You will not share the quiz with anyone. 2. You will not discuss the material on the quiz with anyone until after solutions are released. * Each answer has `3` points. * For RISC-V assembly, you CANNOT write any pseudo instructions. * All answers should be fully simplified unless otherwise stated. * Of course, you should answer everything **in English** except your formal name. * :timer_clock: 09:10 ~ 10:20AM on Nov 16, 2021 * Fill ==[Google Form](https://docs.google.com/forms/d/e/1FAIpQLSeYWABwyMOnXNynXJzPxISuyhg4FLupl9Cmy5q3DPeGZqzFQA/viewform)== to answer ::: ## Problem `A` We are given an array of $n$ unique `uint32_t` that represent nodes in a directed graph. We say there is an edge between A and B if `A < B` and the [Hamming distance](https://en.wikipedia.org/wiki/Hamming_distance) between A and B is exactly `1`. A [Hamming distance](https://en.wikipedia.org/wiki/Hamming_distance) of `1` means that the bits differ in `1` (and only 1) place. As an example, if the array were `{0b0000, 0b0001, 0b0010, 0b0011, 0b1000, 0b1010}`, we would have the edges shown as following: ![](https://hackmd.io/_uploads/ByWb9Xe_t.png) > See also: LeetCode [461. Hamming Distance](https://leetcode.com/problems/hamming-distance/) Construct an `edgelist_t` (specified below) that contains all of the edges in this graph. ```c typedef struct { uint32_t A, B; } edge_t; typedef struct { edge_t *edges; int len; } edgelist_t; ``` Our solution used every line provided, but if you need more lines, just write them to the right of the line they are supposed to go after and put semicolons between them. All of the necessary `#include` statements are omitted for brevity; do not worry about checking for `malloc`, `calloc`, or `realloc` returning `NULL`. Make sure `L->edges` has no unused space when `L` is eventually returned. ```c edgelist_t *build_edgelist(uint32_t *nodes, int n) { edgelist_t *L = malloc(sizeof(edgelist_t)); L->len = 0; L->edges = malloc(n * n * sizeof(edge_t)); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { uint32_t tmp = A01; if ((nodes[i] < nodes[j]) && !(A02)) { A03; A04; L->len++; } } } L->edges = realloc(L->edges, sizeof(edge_t) * L->len); return L; } ``` > * A01 = ? > * A02 = ? > * A03 = ? > * A04 = ? --- ## Problem `B` Consider the following circuit: ![](https://hackmd.io/_uploads/S1pwyNlOY.png) You are given the following information: - `Clk` has a frequency of 50 MHz - AND gates have a propagation delay of 2 ns - NOT gates have a propagation delay of 4 ns - OR gates have a propagation delay of 10 ns - `X` changes 10ns after the rising edge of `Clk` - `Reg1` and `Reg2` have a clock-to-Q delay of 2 ns :::info The clock period is $\frac{1}{50 \times 10^6} s = 20 ns$. This means that if `X` changes, it changes 10 ns after the clock positive edge. ::: 1. What is the longest possible setup time such that there are no setup time violations? (Please include ns in your answer.) > B01 = ? 2. What is the longest possible hold time such that there are no hold time violations? (Please include ns in your answer.) > B02 = ? 3. Represent the circuit above using an equivalent FSM, shown in the following, where X is the input and Q is the output, with the state labels encoding Reg1Reg2 (e.g., `01` means `Reg1 = 0` and `Reg2 = 1`). We did one transition already. ```graphviz digraph fsm { rankdir=LR; node [shape = point ]; Start node [shape = circle]; Start -> 00 00 -> B03 [label = "0/1"]; B03 -> 00 [label = "0/0"]; B03 -> B04 [label = "1/1"]; B04 -> B03 [label = "x/1"]; 11 -> B03 [label = "x/1"]; 00 -> 11 [label = "1/1"]; } ``` > * B03 = ? > * B04 = ? --- ## Problem `C` What is the FULLY SIMPLIFIED (fewest primitive gates) circuit for the equation below? You may use the following primitive gates: AND, NAND, OR, NOR, XOR, XNOR, and NOT. (You can use the [LaTeX syntax](https://en.wikibooks.org/wiki/LaTeX/Mathematics) `\overline A` to represent $\overline A$ ) $$ \begin{align} &\phantom{=}\overline{(C + AB \overline C + \overline B \overline C D)} + \overline{(C + \overline{B + D})} & \\ &= C01 \\ \end{align} $$ > * C01 = ? --- ## Problem `D` Consider the following RISC-V assembly code. ```= .text mv s1, a0 addi s2, s2, 4 Start: beq s1, x0, End lw a0, 0(s1) jal ra, printf add s1, s2, s1 lw s1, 0(s1) jal x0, Start End: jalr x0, ra, 0 ``` Recall that immediate values are generated from instructions with the following table: ![](https://hackmd.io/_uploads/HyEVz9g_Y.png) We will refer to the number produced after this process is completed as the "immediate value." What are the fields for the machine code generated for `beq s1, x0, End` (line 4)? Immediate value > > * D01 = ? funct3 > > * D02 = ? opcode > > * D03 = ? rs1 > > * D04 = ? rs2 > > * D05 = ? --- ## Problem `E` Consider the following pipelined circuit. Assume all registers have their clock inputs correctly connected to a global clock signal and that logic gates have the following parameters: * XOR gate delay: 80 ps * AND gate delay: 60 ps * OR gate delay: 40 ps ![](https://hackmd.io/_uploads/SJSO5re_K.png) When shopping for registers, we find two different models and want to determine which would be best for our circuit. Register Type $\lambda$ * Setup Time: 40 ps * Hold Time: 20 ps * Clock-to-Q Delay: 30 ps Register Type $\tau$ * Setup Time: 10 ps * Hold Time: 10 ps * Clock-to-Q Delay: 80 ps 1. What is the minimum latency for the circuit from A to B if we use register type $\lambda$? (Please include ps in your answer.) > * E01 = ? 2. What is the minimum latency for the circuit from A to B if we use register type $\tau$? (Please include ps in your answer.) > * E02 = ? --- ## Problem `F` Consider the following RISC-V code: ```c Loop: andi t2, t1, 1 srli t3, t1, 1 bltu t1, a0, Loop jalr s0, s1, MAX_POS_IMM ... ``` 1. What is the value of the byte offset that would be stored in the immediate field of the `bltu` instruction? > * F01 = ? 2. We would like to propose a revision to the standard 32-bit RISC-V instruction formats where each instruction has a unique opcode (which still is `7` bits). This justifies taking out the `funct3` field from the R, I, S, and SB instructions, allowing you to allocate bits to other instruction fields except the opcode field. Assume register `s0 = 0x1000 0000`, `s1 = 0x4000 0000`, `PC = 0xA000 0000`. Let's analyze the instruction: `jalr s0, s1, MAX_POS_IMM` where `MAX_POS_IMM` is the maximum possible positive immediate for `jalr`. After the instruction executes, what are the values in the following registers? (Answer in HEX) * `s0` = F02 * `s1` = F03 * `PC` = F04 > * F02 = ? > * F03 = ? > * F04 = ? --- ## Problem `G` Consider the following circuit: ![](https://hackmd.io/_uploads/rJ-MZUldK.png) Assume input A and input B come from registers. Assume all 2-input logical gates have a 10 ns propagation delay. The `NOT` gate has a 5 ns delay. All registers have a clk-to-q of 15 ns and setup time of 20 ns. 1. Find the minimum clock period to ensure the validity of the circuit. (Please include ns in your answer) > * G01 = ? 2. Find the maximum hold time such that there are no hold time violations. (Please include ns in your answer) > * G02 = ? --- ## Problem `H` We wish to implement a function, `reverse`, that will take in a pointer to a string, its length, and reverse it. Assume that the argument registers, `a0` and `a1`, hold the pointer to and length of the string, respectively. Complete the following code skeleton to implement this function. ```cpp reverse: # This part saves all the required registers you will use. mv s0, a0 # memory address mv s1, a1 # strlen addi t0, x0, 0 # iteration Loop: # retrieve left and right letters add t1, s0, t0 # t1 is moving pointer from left (base + offset/iteration) lb t2, 0(t1) # t2 contains char from left sub t3, s1, t0 # imm needs to be s1 - t0 H01 # since strlen indexes out of string add t4, s0, t3 # t4 is moving pointer from right (base + strlen - offset/iteration - 1) lb t5, 0(t4) # t5 contains char from right # switch chars sb t2, 0(t4) H02 # iterate if necessary addi t0, t0, 1 # update iter H03 H04 mv a0, s0 # not necessary # This part restores all of the registers which were used. ret ``` > * H01 = ? > * H02 = ? > * H03 = ? > * H04 = ? --- ## Problem `J` Take a look at the following circuit: ![](https://hackmd.io/_uploads/r1mMBPedK.png) We have a register clk-to-Q time of 5ps, a hold time of 2ps, and a setup time of 3ps. AND and NAND gates have a delay of 5ps, OR and XOR gates have a delay of 6ps, and NOT gates have a delay of 1ps. Assume that our inputs A, B, C, and D arrive on the rising edge of the clock. 1. Which gates make up the critical path in the circuit above? Your answer should be correctly ordered from left to right, e.g. NOT $\to$ OR $\to$ NAND. > * J01 = ? 2. What is the critical path delay in the circuit? > * J02 = ? 3. Let us now consider only the portion of the circuit between `Reg2` and `Reg3`. Assume that the clock period (rising edge to rising edge) is 100 ps, registers have a clk-to-Q delay of 25ps and a setup and hold time of 20ps, and all gates have a delay of 5ps. Choose the waveform with the correct outputs for `Reg2` and `Reg3`. - [ ] Option A ![](https://hackmd.io/_uploads/Byh1LPl_F.png) - [ ] Option B ![](https://hackmd.io/_uploads/H1mULwe_K.png) - [ ] Option C ![](https://hackmd.io/_uploads/ByNO8weuF.png) - [ ] Option D ![](https://hackmd.io/_uploads/SkX9Uvl_K.png) Notation: For reference, in the diagram below, the first region indicates an "undefined" signal, the second region indicates a signal of "high" or 1, and the third region indicates a signal of "low" or 0. ![](https://hackmd.io/_uploads/rk278wl_F.png) > J03 = ? --- ## Problem `K` Consider the following program that computes the [Fibonacci sequence](https://en.wikipedia.org/wiki/Fibonacci_number) recursively. The C code is shown on the left, and its translation to RISC-V assembly is provided on the right. You are told that the execution has been halted just prior to executing the ret instruction. The SP label on the stack frame (part 3) shows where the stack pointer is pointing to when execution halted. - [ ] C code ```c int fib(int n) { if (n <= 1) return n; return fib(n - 1) + fib(n - 2); } ``` - [ ] RISC-V Assembly (incomplete) ```c fib: addi sp, sp, -12 sw ra, 0(sp) sw a0, 4(sp) sw s0, 8(sp) li s0, 0 li a7, 1 if: ble __K01__ sum: addi a0, a0, -1 call fib add s0, s0, a0 lw a0, 4(sp) addi a0, a0, -2 call fib mv t0, a0 add a0, s0, t0 done: lw ra, 0(sp) lw s0, 8(sp) L1: addi sp, sp, 12 ret ``` 1. Complete the missing portion of the `ble` instruction to make the assembly implementation match the C code. > * K01 = ? 2. How many distinct words will be allocated and pushed into the stack each time the function `fib` is called? > * K02 = ? 3. Please fill in the values for the blank locations in the stack trace below. Please express the values in HEX. | Notation | address | | :------: | ------- | | Smaller address | 0x280 | | | 0x1 | | | K03 | | SP $\to$ | K04 | | | K05 | | | 0x0 | | | 0x280 | | | 0x3 | | | 0x0 | | | 0x2108 | | | 0x4 | | | 0x6 | | Larger address | 0x1 | > * K03 = ? > * K04 = ? > * K05 = ? 4. What is the hex address of the `done` label? (Answer in HEX) > * K06 = ? 5. What was the address of the original function call to `fib`? (Answer in HEX) > * K07 = ? --- ## Problem `L` Suppose we want to create a system that decides if the concatenation of its previous 2 single-bit inputs is a power of 2 (where the MSB is the input from 2 cycles ago and the LSB is from 1 cycle ago). If the previous 2 bits (prior to the current input) are a power-of-two the system outputs a 1, otherwise it outputs 0. Before any input is sent, assume the initial previous 2 bits are 2'b00. A partial finite state machine diagram of this circuit is shown below: ![](https://hackmd.io/_uploads/ryRrK_luK.png) > Before receiving any inputs the FSM is in state A. 1. For this FSM to provide the correct answer, to what existing states must D transition to (A, B, C, or D), and what output does D give (0 or 1)? * Current State = D, Input = 0, Next State = __ L01 __ * Current State = D, Input = 1, Next State = __ L02 __ * Current State = D, Output = __ L03 __ > * L01 = ? > * L02 = ? > * L03 = ? ---

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password
    or
    Sign in via Google Sign in via Facebook Sign in via X(Twitter) Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    By signing in, you agree to our terms of service.

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully