L2: Program Development Flashcards
(CRE)2 Criteria
(Program Fitness Checklist)
A Good Program should be:
- Correct
- Does what specification said
- What client wants
- What user needs
- Clear
- Understandable Implementation
- Robust
- Resilient wrt the real world, human abilities, future requirements
- Ready
- Delivered within schedule, budget constraints
- Efficient
- Within limits of time, space, cost
- Ethical
- Meets standards set by law, professional ethics, and safety needs
Convergent Programming Steps
- Understand the Problem
- State the Problem
- Specify the Interface
- List representative and stressful cases
- Code into C
- Diagram your approach
- Decide on variables and invariants
- Outline overall logic
- Convert logic into code
- Verify the Solution
- “Desk Check” -mental test cases
- Perform test cases on computer
- Use Fitness Test (CRE)2
- Peer Review
- Return to earlier steps as needed
Convergent Programming:
Basic Idea
- Clearly define the logic:
- in english,
- mathematical notation
- diagrams
- THEN, express that logic in C
Code INTO C, not IN C
Convergent Programming Steps:
Step 1) Understand the Problem
-Substeps
- State the problem
- Specify the Interface
- List Representative Cases
- List Stressful Cases
Convergent Programming Steps:
Step 2) Code Into C:
-Substeps
Code into C
- Diagram your approach
- Decide on variables and invariants
- Outline overall logic
- Convert logic into code
Convergent Programming Steps:
Step 3) Verify the Solution
-Substeps
Verify the Solution
- “Desk Check” -mental test cases
- Computer Test: Perform test cases on computer
- Use Fitness Test (CRE)2
- Peer Review
2 “Families” of Common Errors
- Exogenous (Outward error)
- Hardware Issues
- Computer Crash/error
- Software Issues
- Data Issues:
- incorrect data
- too much data
- too fast/slow
- Hardware Issues
- Endogenous (Problems with development process/team)
- Analysis
- Wrong Problem
- Wrong Goals
- Wrong User
- Specification
- incorrect
- incomplete
- inconsistent
- Logic
- forgetfulness
- stupidity
- laziness
- Analysis
make:
-n switch
%make -n
Do not actually perform the commands in the recipes,
just echo them
Programming as a Craft:
Maintain Respect for ________
- The User
- Will they feel good about using your product?
- The Tools
- Recognize their limits, and your own
- Yourself
- Use best known practices
- Take pride in your work
Make Files:
- file name
- format
- Always have the name “makefile”
- Format:
target: prerequisites
recipe
dependencies
Example:
foobar: main.o util.o
cc -c main.c
Key Files
during
Compiling and Linking
- Source Files
- c language
- text format
- end in .c and .h
- Object Files
- machine instructions, binary format
- external names
- data initialization
- end in .o
- Libraries
- Collections of object files
- binary format
- end in .a
- Executable Files
- instructions
- data
- entry point (“main”)
- other details
Steps of Creating an Executable Program
- Edit
- Create source files(.h, .c) with editor
- Compile
- Translate each source into an object file
- Link
- Combine the object files into an executable file
- Execute
- Use the new program
Compiler:
Useful switches for the
cc program
* -c
* compile into an object(.o) file * -D * Define a variable, equivalent to #define * example: cc -DFOO=this * -E * Send preprocessor output to stdout and stop * -S * Save .s files instead of deleting them
More advanced switches:
- -g
- create expanded symbol table for debugging
- -p
- link with the profiling facility “prof”
- -O
- optimize the code
Compiler Steps
- Preprocessing
- Replace #define, #include, etc
- Compilation
- Produce assembly language from c text
- generates .s files
- Assembly
- Produce object files from assembly text
- generates .o files
Using External Variables
- Use the “extern” keyword to declare an external variable
- Allows use of a variable from another object that is linked
- Example:
- extern int flag
- Ensure exactly one definition for each external name
- Always initialize external variables
- Ensure definition & import agree on type(the linker doesn’t check this)
What happens during Linking?
(Overview)
- A program is usually specified in pieces, each in separate source files
- Also, system routines may be referenced, which are in the System Library files (“.a” extensions)
- The linker combines your objects and those needed system routines
- Creates an executable program, no extensions, executable attribute
What happens during Compiling?
(overview)
- The compiler(cc) translates the source files(.c and .h) into a form suitable for efficient machine interpretation
- The files created are Object Files( “.o” extensions)
- Substeps:
- Preprocessing
- Assembly
Using Malloc to Allocate storage
(Overview)
- “malloc” routine gets storage from the heap
- must include stdlib
- the heap is a storage pool that you manage
- Anything allocated persists until explicitly freed using free()
- Initial bits in allocated storage are unpredictable(when using malloc())
Allocating a Structure Instance
with malloc
- Use sizeof() to determine the number of bits to be allocated
- Malloc returns a block of memory
- Cast the memory as the required type
name = (myType*) malloc(sizeof(myType))
Declaring a Structure
typedef struct _myStruct{
char *myName;
int myNum;
struct _myStruct *other;
} MyStruct;
- typedef : creates a new type name
- struct : lays out a structure
- fields of the struct are defined
- within the definition, can reference the struct with _myStruct
Pointer/Structures vs Arrays
- Arrays are great when
- Data items can be conveniently numbered without many gaps
- Max number is known
- Reorganizations will not be frequent
- Pointers/Structures
- Needed when things are more complicated
- No obvious # of elements
- Insertions are common
Fundamental Principle of Pointer Programming
Diagram your f******
Pointer Logic
Pointer Programming
Steps
- Think
- of a specific example of the situation and the action at hand
- Diagram
- how things are organized before the action(“before”)
- Modify
- to show effects of the action (“after”)
- Generalize
- to capture the general case
- Code
- the general case into c
make operations:
Recipes
- Can have any number of commands
- Make process stops when a command fails
- Always precede the commands with a tab
make operations:
targets
- Can be specified on make command line
- %mk foo.o
- A rule may have multiple targets
- A target with no prerequisites is useful to automate a task sometimes
Benefits of make and makefiles
- Records dependence between executables, objects and sources
- Check last modified times on all files
- Performs compiles and links ONLY when changes occur
Common Make Errors
- Circular Dependency
- making a file dependent on itself
- Insufficient Prerequisites
- Ensure you have the .h files IN the prerequisites
- Missing Recipe
- Triggers a built-in recipe for .c -> .o generation, which is probably not what you want
- No tab before recipe
- Make will think the command is a target
- $ -substitutions
- make and shell each have $var variables for substitution
Program Memory:
Two Methods to get an area from the Heap
- malloc(size)
- memory allocation
- allocates a single area of the heap of the specified size, then is casted to a pointer
- calloc(n, size)
- allocate multiple n chunks of memory, for use by arrays
Memory Layout for a program
- Memory is a linear array of bytes
- Stack changes with call and return
- Heap changes with malloc/calloc and free
Sections of Memory, in order:
- Code
- Data
- Heap
- Available(used for temporary storage)
- Stack
- Shell Data
When to use the Heap
- When data should persist after a function returns
- Size of data is not known until execution time
Program Memory:
Variables used to track Program State
- Key Addresses
- Current Instruction Counter (IC)
- Stack Pointer, SP
- Frame Pointer, FP
- Heap Bottom, Stack Bottom
- Register Values
- Scheduling Priority
- Current Working Directory
- Process id’s :
- This process, pid
- Parent Process, ppid
- User and Group IDs
3 Common Pointer Errors
- Pointer is null
- Unitialized fields
- pointer is not null, but points to wrong thing or garbage data
- Forgetting the asterisk:
- person p - wrong
- person* p - correct