Lecture 8 - Memory Layout of Data, Padding, Binary File I/O Flashcards
1
Q
Everything that contains a value uses..
A
- memory
- memory space looks like a long continuous stream of bytes
- everything that contains a value occupies 1+ bytes of memory
2
Q
variables near each other and location
A
variables that are defined near each otters are usually near to each other in memory
3
Q
structures in memory
A
- structures are placed in memory just like arrays
- guaranteed to be packed next to each other
4
Q
determining the size of variables and types?
A
- variable of certain size may have a different allocated size on different machines/compilers
- we don’t want code to misbehave when compiled on different system but don’t have to remember what the size is
5
Q
strncpy()
A
- copies one string into another string
strcpy(dest, src, size); - size is max num of chars to copy from src to dest
- allows us to not have to remember size across compilers by putting sizeof(dest)
6
Q
padding
A
- structures are often padded so that data elements occur at the correct offset
- ex. ints are 4-byte aligned, longs are 8-byte, etc.
- if unaligned, some can’t handle it/it’s very slow
7
Q
how to align structures to use space efficiently
A
- orders the fields top to bottom by relative size
- doubles, long, pointers, long, int/float, short, char
- makes padding just be at end of struct
8
Q
fread()
A
- given open FILE, read “raw” memory items to or from a file
- allows you to dump a data struct directly into a binary format file
read(void *ptr, int size, int num, FILE *fp);
9
Q
fwrite()
A
- given an open FILE, write “raw” memory to/from a file
- allows you to “dump” a data struct directly into a binary format file
- fwrite(void *ptr, int size, int num, FILE *fp);
10
Q
return values of fread() and fwrite()
A
- return the number of items that were read or written
-on error, they return a shot item count or zero
11
Q
uses of fread()
A
- reading binary files
- reading structs from files
- efficiently reading large data blocks
12
Q
fwrite() curiosities
A
- void* argument in fwrite() means we can pass a pointer to anything
13
Q
more on fread()/fwrite()
A
- moves a “memory image” to or from a file
- essentially byte file I/O
- file is NOT PORTABLE
- no data type checking
- different systems have different formats for ints, floats, etc.