Data Types. Outline. In Text: Chapter 6. What is a type? Primitives Strings Ordinals Arrays Records Sets Pointers 5-1. Chapter 6: Data Types 2

Similar documents
Data Types In Text: Ch C apter 6 1

Introduction Primitive Data Types Character String Types User-Defined Ordinal Types Array Types. Record Types. Pointer and Reference Types

Chapter 6. Data Types ISBN

Chapter 6. Structured Data Types. Topics. Structured Data Types. Vectors and Arrays. Vectors. Vectors: subscripts

Chapter 6. Data Types

CPSC 3740 Programming Languages University of Lethbridge. Data Types

Chapter 6 part 1. Data Types. (updated based on 11th edition) ISBN

CSE 452: Programming Languages. Where are we? Types: Intuitive Perspective. Data Types. High-level Programming Languages.

Introduction. Primitive Data Types: Integer. Primitive Data Types. ICOM 4036 Programming Languages

Chapter 6. Data Types ISBN

A data type defines a collection of data objects and a set of predefined operations on those objects

COSC252: Programming Languages: Basic Semantics: Data Types. Jeremy Bolton, PhD Asst Teaching Professor

Data Types. Data Types. Introduction. Data Types. Data Types. Data Types. Introduction

Chapter 6. Data Types. *modified by Stephanie Schwartz ISBN

Software II: Principles of Programming Languages

Organization of Programming Languages CS320/520N. Lecture 06. Razvan C. Bunescu School of Electrical Engineering and Computer Science

Organization of Programming Languages CS3200 / 5200N. Lecture 06

Chapter 6. Data Types ISBN

NOTE: Answer ANY FOUR of the following 6 sections:

For each of the following variables named x, specify whether they are static, stack-dynamic, or heapdynamic:

Concepts of Programming Languages (750321)

Chapter 5 Names, Binding, Type Checking and Scopes

TYPES, VALUES AND DECLARATIONS

Array Initialization. Rectangular and Jagged Arrays. Arrays Operations. ICOM 4036 Programming Languages. Data Types

CS 430 Spring Mike Lam, Professor. Data Types and Type Checking

SE352b: Roadmap. SE352b Software Engineering Design Tools. W3: Programming Paradigms

Types. What is a type?

Chapter 8 :: Composite Types

CS 230 Programming Languages

Chapter 5. Names, Bindings, and Scopes

Programming Languages Third Edition. Chapter 7 Basic Semantics

Question No: 1 ( Marks: 1 ) - Please choose one One difference LISP and PROLOG is. AI Puzzle Game All f the given

Types II. Hwansoo Han

Data Types. Every program uses data, either explicitly or implicitly to arrive at a result.

Attributes, Bindings, and Semantic Functions Declarations, Blocks, Scope, and the Symbol Table Name Resolution and Overloading Allocation, Lifetimes,

CS 330 Lecture 18. Symbol table. C scope rules. Declarations. Chapter 5 Louden Outline

COS 140: Foundations of Computer Science

Programming Languages

Chapter 5 Names, Bindings, Type Checking, and Scopes

Data Types (cont.) Subset. subtype in Ada. Powerset. set of in Pascal. implementations. CSE 3302 Programming Languages 10/1/2007

Names, Bindings, Scopes

COS 140: Foundations of Computer Science

22c:111 Programming Language Concepts. Fall Types I

G Programming Languages Spring 2010 Lecture 6. Robert Grimm, New York University

Imperative Programming

Compiler Construction

Lecture 13: Complex Types and Garbage Collection

Programming Languages, Summary CSC419; Odelia Schwartz

G Programming Languages - Fall 2012

G Programming Languages - Fall 2012

Programming Languages

CSC 533: Organization of Programming Languages. Spring 2005

Note 3. Types. Yunheung Paek. Associate Professor Software Optimizations and Restructuring Lab. Seoul National University

Programming Languages Third Edition. Chapter 10 Control II Procedures and Environments

Review of the C Programming Language

References and pointers

Chapter 5. Variables. Topics. Imperative Paradigm. Von Neumann Architecture

CSCI312 Principles of Programming Languages!

The SPL Programming Language Reference Manual

Compiler Construction

The PCAT Programming Language Reference Manual

CS558 Programming Languages

Fundamentals of Programming Languages

HANDLING NONLOCAL REFERENCES

Record Types. A record is a possibly heterogeneous aggregate of data elements in which the individual elements are identified by names Design issues:

CS1622. Semantic Analysis. The Compiler So Far. Lecture 15 Semantic Analysis. How to build symbol tables How to use them to find

Storage. Outline. Variables and Updating. Composite Variables. Storables Lifetime : Programming Languages. Course slides - Storage

Final-Term Papers Solved MCQS with Reference

Programming Languages

9/7/17. Outline. Name, Scope and Binding. Names. Introduction. Names (continued) Names (continued) In Text: Chapter 5

Fundamentals of Programming Languages. Data Types Lecture 07 sl. dr. ing. Ciprian-Bogdan Chirila

Short Notes of CS201

CS 3360 Design and Implementation of Programming Languages. Exam 1

SEMANTIC ANALYSIS TYPES AND DECLARATIONS

CS201 - Introduction to Programming Glossary By

Concepts Introduced in Chapter 7

Example. program sort; var a : array[0..10] of integer; procedure readarray; : function partition (y, z :integer) :integer; var i, j,x, v :integer; :

Organization of Programming Languages (CSE452) Why are there so many programming languages? What makes a language successful?

CS321 Languages and Compiler Design I Winter 2012 Lecture 13

The Compiler So Far. CSC 4181 Compiler Construction. Semantic Analysis. Beyond Syntax. Goals of a Semantic Analyzer.

11. a b c d e. 12. a b c d e. 13. a b c d e. 14. a b c d e. 15. a b c d e

Storage. Outline. Variables and updating. Copy vs. Ref semantics Lifetime. Dangling References Garbage collection

Memory Allocation. Static Allocation. Dynamic Allocation. Dynamic Storage Allocation. CS 414: Operating Systems Spring 2008

CS558 Programming Languages

Topic IV. Parameters. Chapter 5 of Programming languages: Concepts & constructs by R. Sethi (2ND EDITION). Addison-Wesley, 1996.

Control Structures. Outline. In Text: Chapter 8. Control structures Selection. Iteration. Gotos Guarded statements. One-way Two-way Multi-way

Review of the C Programming Language for Principles of Operating Systems

Design Issues. Subroutines and Control Abstraction. Subroutines and Control Abstraction. CSC 4101: Programming Languages 1. Textbook, Chapter 8

Name, Scope, and Binding. Outline [1]

Types and Type Inference

Lecture 12: Data Types (and Some Leftover ML)

Type Bindings. Static Type Binding

6. Names, Scopes, and Bindings

Chapter 7. - FORTRAN I control statements were based directly on IBM 704 hardware

Declaring Pointers. Declaration of pointers <type> *variable <type> *variable = initial-value Examples:

A Fast Review of C Essentials Part I

first class citizens

BLM2031 Structured Programming. Zeyneb KURT

Names, Scope, and Bindings

CMSC 331 Final Exam Section 0201 December 18, 2000

Transcription:

Data Types In Text: Chapter 6 1 Outline What is a type? Primitives Strings Ordinals Arrays Records Sets Pointers Chapter 6: Data Types 2 5-1

Data Types Two components: Set of objects in the type (domain of values) Set of applicable operations May be determined: Statically (at compile time) Dynamically (at run time) A language s data types may be: Built-in Programmer-defined A declaration explicitly associates an identifier with a type (and thus representation) Chapter 6: Data Types 3 Design Issues for All Data Types How is the domain of values specified? What operations are defined and how are they specified? What is the syntax of references to variables? Chapter 6: Data Types 4 5-2

Primitive Data Types A primitive type is one that is not defined in terms of other data types Typical primitives include: Boolean Character Integral type(s) Fixed point type(s) Floating point type(s) Chapter 6: Data Types 5 Boolean Used for logical decisions/conditions Could be implemented as a bit, but usually as a byte Advantage: readability Chapter 6: Data Types 6 5-3

Integer Almost always an exact reflection of the hardware, so the mapping is trivial There may be many different integer types in a language Short, Int, Long, Byte Each such integer type usually maps to a different representation supported by the machine Chapter 6: Data Types 7 Fixed Point (Decimal) Types Originated with business applications (money) Store a fixed number of decimal digits (coded) Advantage: accuracy 0.1 Disadvantages: limited range, wastes memory Chapter 6: Data Types 8 5-4

Floating Point Types Model real numbers, but only as approximations Languages for scientific use support at least two floating-point types; sometimes more Float, Double Usually exactly like the hardware, but not always; some languages allow accuracy specs in code (e.g., Ada): type Speed is digits 7 range 0.0..1000.0; type Voltage is delta 0.1 range -12.0..24.0; See book for representation (p. 237) Sign, Exponent, Fraction Chapter 6: Data Types 9 Character String Types Values are sequences of characters Design issues: Is it a primitive type or just a special kind of array? Is the length of objects fixed or variable? Operations: Assignment Comparison (=, >, etc.) Concatenation Substring reference Pattern matching Chapter 6: Data Types 10 5-5

Examples of String Support Pascal Not primitive; assignment and comparison only (of packed arrays) Ada, FORTRAN 77, FORTRAN 90 and BASIC Somewhat primitive Assignment, comparison, concatenation, substring reference FORTRAN has an intrinsic for pattern matching Examples (in Ada) N := N1 & N2 (catenation) N(2..4) (substring reference) C (and C++ for some people) Not primitive Use char arrays and a library of functions that provide operations Chapter 6: Data Types 11 Other String Examples SNOBOL4 (a string manipulation language) Primitive Many operations, including elaborate pattern matching Perl Patterns are defined in terms of regular expressions A very powerful facility! /[A-Za-z][A-Za-z\d]*/ Java and C++ (with std library) String class (not array of char) Chapter 6: Data Types 12 5-6

String Length Options Fixed (static) length (fixed size determined at allocation) FORTRAN 77, Ada, COBOL A FORTRAN 90 example: CHARACTER (LEN = 15) NAME; Limited dynamic length (fixed maximum size at allocation, but actual contents may be less) C and C++ char arrays: actual length is indicated by a null character Dynamic length (may grow and shrink after allocation) SNOBOL4, Perl Chapter 6: Data Types 13 Evaluation of String Types Supporting strings is an aid to readability and writability As a primitive type with fixed length, they are inexpensive to provide why not have them? Dynamic length is nice, but is it worth the expense? Implementation: Static length compile-time descriptor Limited dynamic length may need a run-time descriptor for length (but not in C and C++) Dynamic length need run-time descriptor; allocation/deallocation is the biggest implementation problem Chapter 6: Data Types 14 5-7

User-Defined Ordinal Types An ordinal type is one in which the range of possible values can be easily associated with the set of positive integers Two common kinds: Enumeration types Subrange types Chapter 6: Data Types 15 Enumeration Types The user enumerates all of the possible values, which are symbolic constants Design Issue: Should a symbolic constant be allowed to be in more than one type definition? Examples: Pascal cannot reuse constants; ETs can be used for array subscripts, for variables, case selectors; no input or output; can be compared Ada constants can be reused (overloaded literals); can be used as in Pascal; input and output supported C and C++ like Pascal, except they can be input and output as integers Java does not include an enumeration type Chapter 6: Data Types 16 5-8

Subrange Types An ordered, contiguous subsequence of another ordinal type Design Issue: How can they be used? Examples: Pascal subrange types behave as their parent types; can be used as for variables and array indices type pos = 0.. MAXINT; Ada subtypes are not new types, just constrained existing types (so they are compatible); can be used as in Pascal, plus case constants subtype Pos_Type is Integer range 0..Integer'Last; Chapter 6: Data Types 17 Evaluation of Ordinal Types Aid readability and writeability Improve reliability restricted ranges add error detection abilitiy Implementation of user-defined ordinal types: Enumeration types are implemented as integers Subrange types are the parent types; code may be inserted (by the compiler) to restrict assignments to subrange variables Chapter 6: Data Types 18 5-9

Arrays An array is an aggregate of homogeneous data elements in which an individual element is identified by its position Design Issues: What types are legal for subscripts? Are subscript values range checked? When are subscript ranges bound? When does allocation take place? What is the maximum number of subscripts? Can array objects be initialized? Are any kind of slices allowed? Chapter 6: Data Types 19 Array Indexing Indexing is a mapping from indices to elements Syntax FORTRAN, PL/I, Ada use parentheses Most others use brackets Chapter 6: Data Types 20 5-10

Array Subscript Types What type(s) are allowed for defining array subscripts? FORTRAN, C int only Pascal any ordinal type int, boolean, char, enum Ada int or enum including boolean and char Java integer types only Chapter 6: Data Types 21 Four Categories of Arrays Four categories, based on subscript binding and storage binding: Static Fixed stack-dynamic Stack-dynamic All three allocated on the runtime stack Heap-dynamic Chapter 6: Data Types 22 5-11

Static Arrays Range of subscripts and storage bindings are static Range : compile time Storage : initial program load time Examples: FORTRAN 77, global arrays in C++, Static arrays (C/C++), some arrays in Ada Advantage: Execution efficiency no need for explicit allocation / deallocation Disadvantages: Size must be known at compile time Bindings are fixed for entire program Chapter 6: Data Types 23 Fixed Stack-Dynamic Arrays Range of subscripts is statically bound, but storage is bound at elaboration time Examples: Pascal locals, C/C++ locals Think: C/C++ arrays declared in callable procedures Advantages: Space efficiency Supports recursion Disadvantage: Must know size at compile time Chapter 6: Data Types 24 5-12

Stack-Dynamic Arrays Range and storage are dynamic, but fixed for the remainder of the time its defining procedure is active Examples: Ada locals in a procedure or block and having range specified by a variable List : array (1..X) of integer Advantage: Flexibility size need not be known until the array is about to be used Disadvantage: Once created, array size is fixed Chapter 6: Data Types 25 Heap-Dynamic Arrays Subscript range and storage bindings are dynamic and and can change at any time Examples: FORTRAN 90, Ada, APL, Perl List : array [*] of integer List = (1, 2, 3, 4) List = (1, 5, 6, 10, 19, 4, 7, 8) Advantage: Ultimate in flexibility Disadvantages: More space (may be) required Run-time overhead Chapter 6: Data Types 26 5-13

Summary: Array Bindings Binding times for Array subscript range storage static: compile time compile time fixed stack dynamic: compile time decl. elaboration time stack dynamic: runtime, but fixed thereafter dynamic: runtime runtime Chapter 6: Data Types 27 Number of Array Subscripts FORTRAN I allowed up to three FORTRAN 77 allows up to seven Some languages have no limits Others allow just one, but elements themselves can be arrays Chapter 6: Data Types 28 5-14

Array Initialization List of values put in array in the order in which the array elements are stored in memory Examples: FORTRAN uses the DATA statement, or put the values in /... / on the declaration C and C++ put the values in braces at declaration lets compiler count them (int stuff [] = {2, 4, 6, 8};) Ada positions for the values can be specified: SCORE : array (1..14, 1..2) := (1 => (24, 10), 2 => (10, 7), 3 =>(12, 30), others => (0, 0)); Pascal and Modula-2 do not allow array initialization Chapter 6: Data Types 29 Array Operations APL Reverse elements in vector Reverse rows or columns Transpose (switch rows and colums), invert elements multiply or compute vector dot product Ada In assignment RHS can be an aggregate, array name, or slice LHS can also be a slice Catenation for single-dimensioned arrays Equality/inequality operators (= and /=) Chapter 6: Data Types 30 5-15

Array Slices A slice is some substructure of an array nothing more than a referencing mechanism Slice Examples: FORTRAN 90 INTEGER MAT (1 : 4, 1 : 4) MAT(1 : 4, 1) The first column (rows 1 4 of column 1) MAT(2, 1 : 4) The second row (2 nd row of columns 1 4) Ada single-dimensioned array slice: LIST(4..10) (elements 4-10) Chapter 6: Data Types 31 Implementation of Arrays Storage is LINEAR Row major: data elements are stored in linear memory by ROWS C/C++, Ada Column major order: data elements are stored in linear memory by columns FORTRAN Chapter 6: Data Types 32 5-16

Access Functions for Arrays Access function maps subscript expressions to a address corresponding to intended position in array A: array [15] of X Compute location of a[k] (Addr of a[1]) + ((k-1) * size of (X)) Chapter 6: Data Types 33 Access Functions for Arrays A: array [8,9] of X Location of a[i,j] assuming row major storage (Addr of a[1,1]) + (((number of rows above i th row) * (size of row)) + (number of elements to left of j th column)) * size of (X) (Addr of a[1,1]) + (((I-1) * 9) + (j-1)) * size of (X) A: array [8,9] of X Location of a[i,j] assuming column major storage (Addr of a[1,1]) + (((number of columns to left of j th column) * (size of col)) + (number of elements above i th row)) * size of (X) (Addr of a[1,1]) + (((j-1) * 8) + (i-1)) * size of (X) Chapter 6: Data Types 34 5-17

Associative Arrays An associative array is an unordered collection of data elements that are indexed by an equal number of values called keys (key, data element) pair Design Issues: What is the form of references to elements? Is the size static or dynamic? Chapter 6: Data Types 35 Perl Associative Arrays (Hashes) Names begin with % Literals are delimited by parentheses %hi_temps = ("Monday" => 77, "Tuesday" => 79, ); Subscripting is done using braces and keys $hi_temps{"wednesday"} = 83; Elements can be removed with delete delete $hi_temps{"tuesday"}; 5-18

Records A record is a possibly heterogeneous aggregate of data elements in which the individual elements are identified by names Design Issues: What is the form of references? What unit operations are defined? Chapter 6: Data Types 37 Record Definition Syntax COBOL uses level numbers to show nested records; others use recursive definitions In C: typedef struct { int field1; float field2;... } MyRecord; In Ada: type MyRecord is record field1 : Integer; field2 : Float;... end record; Chapter 6: Data Types 38 5-19

Record Field References COBOL: field_name OF record_name_1 OF... OF record_name_n Others (dot notation): record_name_1.record_name_2.....record_name_n.field_name Fully qualified references must include all record names Elliptical references allow leaving out record names as long as the reference is unambiguous Pascal and Modula-2 provide a with clause to abbreviate references Chapter 6: Data Types 39 Record Operations Assignment Pascal, Ada, and C++ allow it if the types are identical Initialization Allowed in Ada, using an aggregate Comparison In Ada, = and /=; one operand can be an aggregate MOVE CORRESPONDING In COBOL - it moves all fields in the source record to fields with the same names in the destination record Chapter 6: Data Types 40 5-20

Unions A union is a type whose variables are allowed to store different types of values at different times during execution Design Issues for unions: What kind of type checking, if any, must be done? Should unions be integrated with records? Chapter 6: Data Types 41 Union Example discriminated union tag stores type of current value e.g., Pascal variant record type rec = record case flag : bool of true : (x : integer; y : char); false : (z : real) end var ex : rec; ex.flag := true; ex.x := 5 Chapter 6: Data Types 42 5-21

Type Checking Issues System must check value of flag before each variable access ex.flag := true; ex.x := 10; : print(ex.z); -- error Still not good enough! ex.flag := true; ex.x := 5; ex.y := 'a'; ex.flag := false; print (ex.z); type rec = record case flag : bool of true : (x : integer; y : char); false : (z : real) end -- this should be an error, but how to check Problem is that USER can set tag independently Chapter 6: Data Types 43 Ada Union Types Similar to Pascal, except - No free union -Tag MUST be specified with union declaration - When tag is changed, all appropriate fields must be set too. ex := (flag => false, z => 1.5) So Ada union types are safe. - Ada systems required to check the tag of all references to variants Chapter 6: Data Types 44 5-22

Algol 68 Union Types Declaration union (int, real) ir1, ir2 Can assign either type. ir1 := 5;... ir1 := 3.4; but need conformity clause to access value real x; int count;... count := ir1; case ir1 in (int i) : count := i; (real r) : x := r; esac -- illegal Chapter 6: Data Types 45 Union Type-Checking Problem with Pascal s design: Type checking is ineffective User can create inconsistent unions (because the tag can be individually assigned) Also, the tag is optional (Free Union)! Ada Discriminated Union Tag must be present All assignments to the union must include the tag value tag cannot be assigned by itself It is impossible for the user to create an inconsistent union Chapter 6: Data Types 46 5-23

Pascal Declaration type rec = record case bool of true :... false :... end No tag variable is required Free Unions No storage for tag, so union is inherently unsafe. So Pascal's union type is insecure in at least two ways. C/C++ have free unions (No tags) Chapter 6: Data Types 47 Evaluation of Unions Useful Potentially unsafe in most languages Ada, Algol 68 provide safe versions Chapter 6: Data Types 48 5-24

Pointers A pointer type is a type in which the range of values consists of memory addresses and a special value, nil (or null) Uses: Addressing flexibility Dynamic storage management Chapter 6: Data Types 49 Pointer Design Issues What is the scope and lifetime of pointer variables? What is the lifetime of heap-dynamic variables? Are pointers restricted to pointing at a particular type? Are pointers used for dynamic storage management, indirect addressing, or both? Should a language support pointer types, reference types, or both? Chapter 6: Data Types 50 5-25

Pointers Should be able to point to only one type of object Dereferencing - explicit - implicit Used for - dynamic vars only - any kind of variable Chapter 6: Data Types 51 Dangling Reference Pointer to variable that has been deallocated. Pascal: C: var p,q : ^cell; int *p; begin int fun1(); { new(p); int x; q := p; p = &x; dispose(p);... } main () { fun1 (); } -- q is a dangling ref. -- *p is a dangling ref. Chapter 6: Data Types 52 5-26

Preventing Dangling References Tombstones Pointers can't point directly to a dynamic variable without tombstone: p1 p2 dynamic variable with tombstone: extra level of indirection called a tombstone. p1 p2 tombstone dyn var Safe, but add space and time overhead Chapter 6: Data Types 53 Preventing Dangling References Locks and Keys Additional information stored with pointers and dynamic variables: pointer (key, address) dynamic variable (lock, var) A pointer can only access a dynamic variable if its key matches the lock. When a dynamic variable is deallocated, its lock is changed. Again, space and time overhead. Chapter 6: Data Types 54 5-27

Garbage: Memory Leaks An object is garbage if it is stored in an inaccessible memory address. Pascal: var p,q : ^cell; begin new(p); new(q);... -- assuming no dispose or reassign p := q; original p^'s storage is now garbage Wasteful, but not dangerous. Chapter 6: Data Types 55 Aliasing When two pointers refer to the same address Pointers need not be in the same program unit Changes made through one pointer affect the behavior of code referencing the other pointer When unintended, may cause unpredictability, loss of locality of reasoning Chapter 6: Data Types 56 5-28

Pointer Examples Pascal: used for dynamic storage management only Explicit dereferencing Dangling pointers and memory leaks are possible Ada: a little better than Pascal Implicit dereferencing All pointers are initialized to null Similar dangling pointer and memory leak problems for typical implementations Chapter 6: Data Types 57 Pointer Examples (cont.) C and C++: for both dynamic storage management and addressing Explicit dereferencing and address-of operator Can do address arithmetic in restricted forms Domain type need not be fixed (void * ) FORTRAN 90 Pointers Can point to heap and non-heap variables Implicit dereferencing Special assignment operator for non-dereferenced references Chapter 6: Data Types 58 5-29

Evaluation of Pointers Dangling pointers and dangling objects are problems, as is heap management Pointers are like goto's they widen the range of cells that can be accessed by a variable, but also complicate reasoning and open up new problems Pointers services are necessary so we can't design a language without them Chapter 6: Data Types 59 Heap Management Allocation Maintain a free list of available memory cells Deallocation (Reclamation) method 1: Reference Counting Each cell has a tag with # of pointers to that cell. When reference count = 0 => deallocate cell. Advantage: cost is distributed over time Disadvantages: space/time overhead in maintaining reference counts won't collect circular structures Chapter 6: Data Types 60 5-30

Heap Management Method 2a: Garbage Collection with mark-and-sweep Each cell has a mark bit. Mark and Sweep: set all mark bits to "garbage" for each pointer into the heap, mark all reachable cells "not garbage" look at each cell in memory; if marked "garbage," reclaim. Advantages: reclaims all garbage little space/no time overhead during normal execution Disadvantages: must stop execution to garbage collect fragmentation time ~ memory size Chapter 6: Data Types 61 Heap Management Method 2b: Garbage Collection with copying Start with two heaps of same size working heap + other heap Copying: allocate new cells in working heap when working heap is full, for each pointer into working heap, copy all reachable cells into other heap. other heap is new working heap, working heap is new other heap Advantages: both advantages of mark & sweep (reclaims all garbage, little space/no time overhead during normal execution) time ~ used cells, not total memory size automatic compaction (ameliorates fragmentation) Disadvantages stopping to copy still a problem need twice as much memory for heap => only practical with virtual memory systems Chapter 6: Data Types 62 5-31

Heap Management This is all much easier for fixed-size allocate/deallocate than for variable-size: Fixed size (& format) Know where pointers are within cells Fragmentation not a problem Lisp Variable size (& format) Need header for each object in memory telling: its size where it may contain pointers to other objects Fragmentation is a problem--need compaction Chapter 6: Data Types 63 5-32