- Install Software: Install the software needed for this course, as described on the Pre-Term Setup for COMP 315 page.
- Review COMP 101:
Read: Section 1.1 through section 1.1.2 (pp. 11-16) in Chap. 1 of Kernighan's Understanding the Digital World. (Will be available on Kit.)
Notes for future versions of this class:
- Does Kernighan talk about time-sharing? It would be good if students read a little bit about processes, threads, time-sharing, and context switching before the student presentations. (Useful background before learning about multi-processors and virtual memory.)
- Should there be other Kernighan reading assignments?
- Think about adding "Assessing Your Understanding" quizzes (can be short and easy if they did the reading/video).
- Grade early assignments quickly to encourage students to submit things on time.
- Download and do first stage of grading (does it compile and run without core dumps?) quickly, so you can respond quickly with very little work (or feedback) if it doesn't even compile.
- Maybe add something about how to build a two-input MUX between covering full-adders and building their own four-bit ALU? (But I probably would still have them create 3 outputs (light bulbs) for ADD, AND, and SUB, rather than ask them to add 4 MUXes to an already-complicated diagram.)
IMPORTANT NOTE:
The following schedule represents a current
best guess concerning actual due dates (and everything else), to
give you a general idea of the pace and timing of the class.
This schedule is likely to change as the quarter progresses.
Last modified on .
Reading assignments are from Patterson and Hennesey (P&H) unless specified otherwise. K&R refers to The C Programming Language by Kernighan and Ritchie. (Alternatives to K&R include Essential C and The GNU C Programming Tutorial.) K refers to Understanding the Digital World (2nd Edition) by Brian Kernighan.
(Most of the Kernighan reading assignments have not been added to
the schedule yet!)
Skip directly to Week 1 | Week 2 | Week 3 | Week 4 | Week 5 | Week 6 | Week 7 | Week 8 | Week 9 | Week 10
Preparing Before the Term Begins: | ||
---|---|---|
|
||
DAY | PREPARATION | IN-CLASS TOPIC/ACTIVITY |
Week 1
Tues 1
|
Before Week 1:
Install the software necessary for this course and review
material from COMP 101. (See
Preparing Before the Term
Begins above.)
Welcome!
Want to get a head-start on C?
Read K&R: Ch. 1 - 1.6 (Overview of C)
The first minute of How a CPU Works in 100 Seconds is good, but next 1.5 min on Fetch/Execute cycle is based on an Accumulator model. That is followed by 10.5 min on M1 vs Intel that might be interesting later in the quarter. |
Welcome to the course!
A word about the syllabus and the books.
In-Class Exercise:
Assignment 1:
Cloning
and Submitting Git Repository Projects in Kit
(PowersOfTwo)
Due Thursday (by 11:59 p.m.)
![]() (Note: You do not have to use vi, just because Alyce does! Most students use VS code instead.) (Note 2: The issues with the Turn In button are fixed, so you can ignore my comments about that in the last minute of the video.) Announce that assignments will be due at 11:59pm -- if it says "Before Thursday" then it is due as 23:59 on Wednesday.
Follow-up Activity:
Read over the
Syllabus,
especially the sections on
Assignments and Due Dates, and Collaboration and the
Honor System. Follow the links and read the short
pages on
Community Guidelines and
Showing Respect and Support in the
Community.
C Follow-up (if you didn't do this
already):
Read K&R: Ch. 1 - 1.6 (Overview of C)
|
Thurs 1 |
Submit to Kit Today [Thursday] (by 11:59 p.m.)
PowersOfTwo Project
More C:
K&R: 1.7 - end
K&R: 5.1 - 5.5 (Arrays and Strings)
P&H: Appendix B.3, B.4 (Linkers, Loaders)
Unix/Linux:
Optional, if you're interested in learning more:
Skim (or read) the Wikipedia pages for
Shell
(computing) (Intro & Overview) and
Kernel
(operating system) (first 3 paragraphs).
Skim (or read) the initial paragraphs and the first
three History sections (Precursors, Creation, Naming)
of
the Wikipedia page on Linux.
Skim (or read)
the History section of
the Wikipedia page on GNU.
and
the Overview section of
the Wikipedia page on POSIX.
Reference:
Introduction To Unix by Mark Thomas (E-book)
|
In-Class Exercise:
Binary 101
Programming Practice: Encoding/Decoding Names
Due Tuesday (by 11:59 p.m.)
Minutes 11 - 14 and 20:05 - 23:57 of Watch Alyce get started with the Disassembler project might be useful for students working on encode/decode.
Follow-up Activity — COMP 101
Review:
![]() ![]()
Very Important Number
Representation Question:
Why do computer scientists confuse Halloween and
Christmas? :-)
(show answer)
Submit to Kit:
Week 1 Reflection is due Sunday (by 11:59 p.m.)
First Read Patterson
& Hennessy:
Ch. 1.1: subsection on Classes of Computing
Applications and Their Characteristics (pp. 5-7)
Ch. 1.2: Below Your Program (pp. 10-13)
(Optional) Ch. 1.3 Under the Covers (pp. 13-26)
|
DAY | PREPARATION | IN-CLASS TOPIC/ACTIVITY |
Week 2
Tues 2
|
Was Due Sunday (by 11:59 p.m.):
Weekly Reflection for previous week
Submit to Kit Today [Tuesday] (by 11:59 p.m.):
More C Videos:
![]()
Reading:
K&R: Ch. 1 - 1.6 (Overview of C)
K&R: 6.1 - 6.2, 6.7
DisUtil Project
Clone the repository for the
Disassembler Utilities Project
from Kit
Videos — You can watch these in
class if you bring earphones
![]() ![]() ![]() main ) - 7:44 min
Explanation of file pointers (FILE *): 1:00 - 2:58
Explanation of process_arguments function: 3:00 -
5:00
![]() verifyMIPInstruction - 2 min
![]() binToDec and
testBinToDec - 5:19 min
|
Show students how they can see their Repository Log in Kit.
Go over
Pointer
Exercise questions #1-4
(pdf version)
DisUtil Project
Watch/re-watch DisUtil videos as needed
Tip:
VS Code has 2 formatting shortcuts:
⇧⌥F/Shift-Alt-F/Ctrl-Shift-I
(Mac, Windows, Linux) - Format active document
Command-K Command-F (Mac) or Ctrl-K
Ctrl-F (Windows, Linux) - Format selection
You might need to install the C/C++ Extension first.
You might also need this
.jsbeautifyrc
file to
update your settings to use the Braces Line Up style
pattern.
|
Thurs 2 |
Even More C Videos:
Videos on Number Representation:
![]()
⇒
Read about recognizing overflow
(required!) and proving
that the algorithm for computing two's complement works
(optional) in
this slide. (There is no video
for these topics).
For more depth,
read Patterson & Hennessy:
Ch. 2.4: Signed and Unsigned Integers
Ch. 3.1: Introduction to Chapter on
Arithmetic
Ch. 3.2: Addition and Subtraction
Ch. 3.3: Multiplication
|
In Class:
HW:
Interpreting Binary Data, Part A
(will be handed in with Part B)
Preview:
Quick introduction to the
K
Sub-MIPS Simulator,
which we will use next week.
Very Important Handout:
Continuously adding 1
to signed integers (credit: xkcd.com)
Continue working on the
Disassembler Utilities Project
Submit to Kit:
Week 2 Reflection is due Sunday (by 11:59 p.m.)
|
DAY | PREPARATION | IN-CLASS TOPIC/ACTIVITY |
Week 3
Tues 3
|
Was Due Sunday (by 11:59 p.m.):
Weekly Reflection for previous week
Submit to Kit Today [Tuesday] (by 11:59 p.m.):
Disassembler Utilities Project
Video on Number Representation:
Intro to MIPS Assembly Language:
![]() ![]() For more depth,
read Patterson & Hennessy:
Ch. 3.5: Representation, pp. 242 - 250
Ch. 3.5: Floating-Point Addition to
end of 3.5
Ch. 3.9, 3.10: Conclusion, Historical
Perspective
Figure 2.15 in section 2.9
|
HW:
Interpreting Binary Data, Part B
(will be handed in with Part A) |
Thurs 3 |
Submit to Kit Thursday (by 11:59 p.m.):
HW:
Interpreting Binary Data, Parts A & B
More C Videos:
More MIPS Videos:
![]()
⇒
Do Program 1 (or at least make a reasonable effort)
from Thursday's Simulator Activity.
Reference:
Instruction Summary After Loops (.html)
For more depth,
read Patterson & Hennessy:
Ch. 2.1 - 2.3: Computing Hardware
Operations
Ch. 2.6 - 2.7: Logical Operations,
Instructions for Making Decisions
|
Brief Introduction to Process Segments in Memory
(Memory Diagram (.gif),
Segments of a Process (pdf))
![]() Nice, but it has .data and .text, and dropouts of audio around 10:25 and 11:20?
Submit to Kit:
Week 3 Reflection is due Sunday (by 11:59 p.m.)
|
DAY | PREPARATION | IN-CLASS TOPIC/ACTIVITY |
Week 4
Tues 4
|
Was Due Sunday (by 11:59 p.m.):
Weekly Reflection for previous week
More MIPS Videos:
![]() NOTE around 3:40:
p. 112 in the 5th Edition of P&H is
p. 97 in the 4th Edition
4:40: Remember that
in the Fetch-Execute cycle,
the Program Counter is always incremented after
the Fetch but before the Execute.
(First 9 min are from a pre-pandemic class;
rest is from 10/22.)
Optional:
![]()
11:25 - 13:30 Describes need for Stack (concept
for Thursday)
(Note that this video pre-dates our MIPS CPU
Simulator.)
Is this still relevant?
Reference:
For more depth,
read Patterson & Hennessy:
Ch. 2.14: Arrays vs Pointers
Ch. 2.8, 2.13: Supporting Procedures, Extended Example
Ch. 2.12: Translating and Starting a Program
Very Important Handout:
Can you
give me a few pointers? (credit: xkcd.com)
|
|
Thurs 4 |
Submit to Kit Thursday (by 11:59 p.m.):
More MIPS Videos:
![]() First minute is review of memory
segments
1:18 First mention of the Stack
Pointer register
2:07 Extended example of Activation
Records on the Stack, with dynamic diagram
Optional:
![]() Note: In testB2D, I forgot to copy
$a0 to $s0, which was the whole point of saving $s0
to the stack! I could have done that right after
storing $ra and $s0 to the stack.
Note2: I also forgot the jr $ra at
the end of testB2D! The code provided here
includes both corrections.
Is this still relevant?
Optional:
Two More MIPS Procedure Examples
(1 leaf procedure, 1 simple stack example)
Should make short video about conventions about which
registers to use?
|
MIPS Conditions and Loops
If you are having difficulties with simulating blocks, you might want to "back up" to the decisions.txt worksheet (solution)
Before Tuesday: Understanding Array Indexing vs.
Pointers through MIPS:
Submit to Kit:
Week 4 Reflection is due Sunday (by 11:59 p.m.)
|
DAY | PREPARATION | IN-CLASS TOPIC/ACTIVITY |
Week 5
Tues 5
|
Was Due Sunday (by 11:59 p.m.):
Weekly Reflection for previous week
Submit to Kit Today [Tuesday] (by 11:59 p.m.):
MIPS Videos —
Assembly → Machine Code:
Disassembler Prep: Clone Repository:
Clone the disassembler repository from Kit, then follow
the instructions in
DISASSEMBLER_TIPS.md to copy
over the appropriate files files from your DisUtil
repository. Then do a git add and
git commit -m "Include DisUtil code" .)
![]() This video was created before I created the encode/decode project. NEED A NEW VIDEO HERE!
Read over the Goals, the first paragraph
of the Behavioral Requirements, and the
first paragraph of the Design and Coding
Tips in the
Disassembler PP
For more depth,
read Patterson & Hennessy:
Ch. 2.5, 2.10: Mapping Assembly → Machine Code
(end of 2.10 is particularly relevant for Disassembler
project)
Ch. 2.18, 2.19: MIPS Design Considerations
|
Testing: Code Coverage & Boundary Testing
What is an Assembler? A Disassembler? What purposes do
they serve?
![]() This video was created before I created the encode/decode project. When you get to the 11 minute mark, skip to the 14 minute mark, because you have already implemented getRegName. (If you want, watch 13:30 - 14:00, which talks about the precondition.) Similarly, you can skip from 21:05 to 23:57, which covers getIJInstName and getRInstName, which you have already implemented.
Reference:
Final Instruction Summary (.html)
|
Thurs 5 |
Videos — The Assembler Process:
![]()
Optional:
![]() This video was created before we had the CPU Simulator exercises. |
Topic: Developing A Thorough Test Suite
Continue working on the
Disassembler PP
No Week 5 Reflection (Break!)
(but beware of 30 minutes worth of videos to watch before Tuesday) |
DAY | PREPARATION | IN-CLASS TOPIC/ACTIVITY |
Week 6
Tues 6
|
Review of AND, OR, NOT and
Truth Tables from COMP 105 (Optional):
Videos — Logic Gates → Arithmetic:
Chips:
![]()
(Optional) Read this July 2023
New York Times article on new chips for
AI
Very Important Handouts:
|
HW: Interpreting Binary Data, Part C
Finish the
Disassembler PP
OR
Start the LabelTable project.
![]()
Clone the Label Table repository and complete the
functions in
LabelTableArrayList.c .
Optional Videos — Label Table:
![]() ![]() |
Thurs 6 |
Submit to Kit Thursday (by 11:59 p.m.):
HW: Interpreting Binary Data, Part C
Submit to Kit Thursday (by 11:59 p.m.):
Disassembler PP
Videos — More Gates, ALU:
Student comments: MUX still confusing until after watching PLA video; PLA video felt much longer than it needed to be. |
Continue working om the LabelTable project.
Submit to Kit:
Week 6 Reflection is due Sunday (by 11:59 p.m.)
|
DAY | PREPARATION | IN-CLASS TOPIC/ACTIVITY |
Week 7
Tues 7
|
Was Due Sunday (by 11:59 p.m.):
Weekly Reflection for previous week
Submit to Kit Today [Tuesday] (by 11:59 p.m.):
Videos — Single-Cycle Datapath:
![]()
⇒
Full Datapath diagrams for add, sw,
lw, beq, j (not in video, but should be!)
For more depth,
read Patterson & Hennessy:
4.1-4.3: Single-cycle Datapath
4.4: Implementing Control
Choose a
presentation topic;
fill in the Sign-Up Sheet in the Files tab of the
General channel in the CS 315 Team.
(Presentations will be due Sunday before 10th Week.)
|
Last half-hour of class:
Fill in the Single-cycle Datapath column in question 1
of
HW: Single-Cycle, Multi-Cycle,
Pipelined Datapaths
|
Thurs 7 |
Videos —
Multi-Cycle and Pipeline Datapaths:
![]() For more depth,
read Patterson & Hennessy:
Ch. 4.5-4.8, 4.14,4.15: Pipelining & Conclusions
|
Complete
HW: Single-Cycle Datapath
if not completed already
Submit to Kit:
Week 7 Reflection is due Sunday (by 11:59 p.m.)
|
DAY | PREPARATION | IN-CLASS TOPIC/ACTIVITY |
Week 8
Tues 8
|
Was Due Sunday (by 11:59 p.m.):
Weekly Reflection for previous week
Submit to Kit Today [Tuesday] (by 11:59 p.m.):
Videos — Memory Caches:
Review Slide:
Quick Intro to Various Types of Memory
![]()
Note: I forgot to say the most important thing up
front:
many words in Memory map to the same line in the
Cache, but only one of them is actually there at
any one time!
For more depth,
read Patterson & Hennessy:
Ch. 5.1 and 5.2: Cache Basics, Direct-Mapped Caches
Very Important Handout:
60 Years of Hardware Evolution
|
Direct-Mapped Caches:
Questions 1 - 6 (skip 7 and 8 for now) in
HW: Caches
|
Thurs 8 |
Submit to Kit Thursday (by 11:59 p.m.):
Label Table Project
Videos — Memory Caches:
For more depth,
read Patterson & Hennessy:
Ch. 5.3: Set Associative Cache
Optional: Ch. 5.4: Virtual Memory
|
Complete Label Table Project
Submit to Kit:
Week 8 Reflection is due Sunday (by 11:59 p.m.)
|
DAY | PREPARATION | IN-CLASS TOPIC/ACTIVITY |
Week 9
Tues 9
|
Was Due Sunday (by 11:59 p.m.):
Weekly Reflection for previous week
Submit to Kit Today [Tuesday] (by 11:59 p.m.):
HW: Caches
Videos — Assembler:
![]()
(From 1:00 - 3:55 is review from end of 2nd Label
Table video)
Preparing for Assembler Project:
Clone the Assembler repository from
Kit.
Copy *.c, *.h, and sm*.mips from
your LabelTable directory to your Assembler directory,
and do a git add and commit -m "Include LabelTable code".
Presentation:
Work on your presentation —
due Thursday of 10th Week
|
Work on
Assembler Programming Project
Suggestions:
Download new
smallSampleTestfile.mips.decimal
Copy
testPass1.c to assembler.c
and uncomment the 2 lines of code for pass2, if you haven't
already. Compile and run with sample test file.
Change
printf in processR to
printInt(0, 6); printReg(arguments[1], lineNum); printInt(functCode, 6); printf("\n");
Add
printInt(opCode, 6); to existing
processIorJ function.
Start coding
getOpCode ,
getFunctCode and printReg
in any order. Test early and often.
Improve processR ,
processIorJ , printJumpTarget ,
and printBranchOffset as needed.
|
Thurs 9 |
Presentation:
Work on your presentation —
due Thursday 10th Week
Assembler:
Continue working on
Assembler Programming Project
|
Continue working on
Assembler Programming Project
No Week 9 Reflection
|
DAY | PREPARATION | IN-CLASS TOPIC/ACTIVITY |
Week 10
Tues 10
|
Assembler:
Continue working on
Assembler Programming Project
|
Work on
Assembler Programming Project
Course-specific evaluation questions for this course?
|
Thurs 10 |
Assignments Due End of 10th Week:
Submit to Kit:
Assembler Programming Project
— Due Friday of 10th Week (by 11:59 p.m.)
Submit to Kit:
Final Reflection due Sunday of 10th (by 11:59 p.m.)
|
Student Presentation
|