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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

variables near each other and location

A

variables that are defined near each otters are usually near to each other in memory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

structures in memory

A
  • structures are placed in memory just like arrays
  • guaranteed to be packed next to each other
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

uses of fread()

A
  • reading binary files
  • reading structs from files
  • efficiently reading large data blocks
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

fwrite() curiosities

A
  • void* argument in fwrite() means we can pass a pointer to anything
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly