1 / 34

The C Programming Environment

The C Programming Environment. Jeff Chase Duke University. Today. What is a program? A little bit of C on “classical OS” (Unix, but not limited to Unix) How are programs built? What does the machine look like to a program?

jara
Download Presentation

The C Programming Environment

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. The C Programming Environment Jeff Chase Duke University

  2. Today • What is a program? • A little bit of C on “classical OS” (Unix, but not limited to Unix) • How are programs built? • What does the machine look like to a program? • What environment does the operating system provide to user code (application software)? • What does the OS assume about user code? • What machine details does the OS expose to user code? • Goal: understand the system abstractions at the ABI: Application Binary Interface.

  3. Basic hints on using Unix • Find a properly installed Unix system: linux.cs.duke.edu, or MacOS with Xcode and its command line tools will do nicely. • Learn a little about the Unix shell command language: e.g., look ahead to the shell lab, Lab #2. On MacOS open the standard Terminal utility. • Learn some basic commands: cd, ls, cat, grep, more/less, pwd, rm, cp, mv, diff, and an editor of some kind (vi, emacs, …). Spend one hour. • Learn basics of make. Look at the makefile. Run “make –i” to get it to tell you what it is doing. Understand what it is doing. • Wikipedia is a good source for basics. Use the man command to learn about commands (1), syscalls (2), or C libraries (3). E.g.: type “man man”. • Know how to run your programs under a debugger: gdb. If it crashes you can find out where. It’s easy to set breakpoints, print variables, etc. • If your program doesn’t compile, deal with errors from the top down. Try “make >out 2>out”. It puts all output in the file “out” to examine at leisure. • Put source in a revision system like git or svn, but Do. Not. Share. It. See http://gitorious.oit.duke.edu/about.

  4. The “shell”: Unix CLI chase:scratch> curlhttp:…/lab1.tgz >lab1.tgz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 212k 100 212k 0 0 148k 0 0:00:01 0:00:01 --:--:-- 163k chase:scratch> ls lab1.tgz chase:scratch> tarzxvf lab1.tgz … chase:scratch> ls lab1.tgz chase:scratch> cd lab1 chase:lab1> ls Makefiledmm.clab1.pdf test_coalesce.c test_stress2.c README dmm.htest_basic.c test_stress1.c test_stress3.c chase:lab1> CLI == Command Line Interface E.g., the Terminal application on MacOS

  5. A simple C program int main() { }

  6. Find it on the course web [From Essential C: Pointers and Memory: http://cslibrary.stanford.edu/101]

  7. C variables and memory Allocation and Deallocation Variables represent storage space in the computer's memory. Each variable presents a convenient names like length or sum in the source code. Behind the scenes at runtime, each variable uses an area of the computer's memory to store its value. It is not the case that every variable in a program has a permanently assigned area of memory. Instead, modern languages are smart about giving memory to a variable only when necessary. The terminology is that a variable is allocated when it is given an area of memory to store its value. While the variable is allocated, it can operate as a variable in the usual way to hold a value. A variable is deallocated when the system reclaims the memory from the variable, so it no longer has an area to store its value. For a variable, the period of time from its allocation until its deallocation is called its lifetime. [From Essential C: Pointers and Memory: http://cslibrary.stanford.edu/101]

  8. “Local” variables (stack) The most common variables you use are "local" variables within functions such as the variables num and result in the following function. All of the local variables and parameters taken together are called its "local storage" or just its "locals", such as num and result in the following code... // Local storage example intSquare(intnum) { intresult; result = num * num; return result; } The variables are called "local" to capture the idea that their lifetime is tied to the function where they are declared. Whenever the function runs, its local variables are allocated. When the function exits, its locals are deallocated. For the above example, that means that when the Square() function is called, local storage is allocated for num and result. Statements like result = num * num; in the function use the local storage. When the function finally exits, its local storage is deallocated. [From Essential C: Pointers and Memory: http://cslibrary.stanford.edu/101]

  9. Dynamic memory (heap) "Heap" memory, also known as "dynamic" memory, is an alternative to local stack memory….The programmer explicitly requests the allocation of a memory "block" of a particular size, and the block continues to be allocated until the programmer explicitly requests that it be deallocated. Nothing happens automatically. So the programmer has much greater control of memory, but with greater responsibility since the memory must now be actively managed. The advantages are... Lifetime. Because the programmer now controls exactly when memory is allocated and deallocated, it is possible to build a data structure in memory, and return that data structure to the caller. This was never possible with local memory which was automatically deallocated when the function exited. Size. The size of allocated memory can be controlled with more detail. For example, a string buffer can be allocated at run-time which is exactly the right size to hold a particular string. With local memory, the code is more likely to declare a buffer size 1000 and hope for the best…. [From Essential C: Pointers and Memory: http://cslibrary.stanford.edu/101]

  10. C structs, global, stack, heap Local variables intmain() { struct stuff sstuff; struct stuff *hstuffp= (struct stuff *) malloc(sizeof(struct stuff)); gstuff.i = 13; gstuff.j = 14; gstuff.c[0] = 'z'; gstuff.c[1] = '\0'; printf("%s\n", gstuff.c); sstuff.i = 13; sstuff.j = 14;… hstuffp->i = 13; hstuffp->j = 14;… } Heap allocation #include <stdio.h> #include <stdlib.h> struct stuff { inti; long j; char c[2]; }; struct stuff gstuff; Accessing a global structure Data structure type definition Local data of a procedure (on the stack) A global structure Accessing a heap-allocated struct through a pointer.

  11. Spelling it out • That C program is in a C source file called structs.cin the C samples directory on the course web. • On any properly installed Unix/Linux or MacOSX system, you can compile it into an executable program by typing: • cc –o structsstructs.c • That says: “run the C compiler (cc or gcc) on the input structs.c, and put the output in a new file called structs”. • This is a shell command line. Much more on that later (Lab #2). You will need to learn some shell command language. • This command secretly runs other system utilities to finish the job. • The compiler outputs a file with compiled assembly language code. • Assembler reads that and generates a partial executable (object file). • A linker combines the object file with code from system libraries, and outputs the executable file structs.

  12. Building and running a program chase:lab1> make gcc -I. -Wall -lm -DNDEBUG -c dmm.c … gcc -I. -Wall -lm -DNDEBUG -o test_basictest_basic.cdmm.o gcc -I. -Wall -lm -DNDEBUG -o test_coalescetest_coalesce.cdmm.o gcc -I. -Wall -lm -DNDEBUG -o test_stress1 test_stress1.c dmm.o gcc -I. -Wall -lm -DNDEBUG -o test_stress2 test_stress2.c dmm.o chase:lab1> chase:lab1> ./test_basic calling malloc(10) call to dmalloc() failed chase:lab1>

  13. The Birth of a Program (C/Ux) data data data data data myprogram.c myprogram.o int j; char* s = “hello\n”; int p() { j = write(1, s, 6); return(j); } object file assembler libraries and other object files or archives linker ….. p: store this store that push jsr _write ret etc. compiler program myprogram.s myprogram header files (executable file)

  14. Linking (from cs:app) Source files main.c swap.c Translators (cpp, cc1, as) Translators (cpp, cc1, as) Relocatable object files main.o swap.o Linker (ld) Fully linked executable object file p

  15. Static linking with libraries main2.c vector.h Translators (cpp, cc1, as) Static libraries libvector.a libc.a printf.o and any other modules called by printf.o main2.o addvec.o Linker (ld) Fully linked executable object file p2

  16. What’s in an Object File or Executable? header text data idata wdata symbol table relocation records Header “magic number” indicates type of file/image. Section table an array of (offset, len, startVA) program instructions p immutable data (constants) “hello\n” sections writable global/static data j, s j, s ,p,sbuf Used by linker; may be removed after final link step and strip. Also includes info for debugger. int j = 327; char* s = “hello\n”; char sbuf[512]; int p() { int k = 0; j = write(1, s, 6); return(j); }

  17. The otool –vt command shows contents of the text section of an executable file. Here are the instructions for the structs program. When the program runs, the OS loads them into a contiguous block of virtual memory (the text segment) at the listed virtual addresses. cc –o structsstructs.c otool –vtstructs 0000000100000ea0pushq %rbp 0000000100000ea1 movq %rsp, %rbp 0000000100000ea4 subq $48, %rsp 0000000100000ea8movabsq $24, %rdi 0000000100000eb2 callq 0x100000f42 0000000100000eb7 leaq 182(%rip), %rdi 0000000100000ebe leaq 347(%rip), %rcx 0000000100000ec5 movq %rcx, %rdx 0000000100000ec8 addq $16, %rdx 0000000100000ecf movq %rax, -32(%rbp) 0000000100000ed3 movl $13, (%rcx) 0000000100000ed9 movq $14, 8(%rcx) 0000000100000ee1 movb $122, 16(%rcx) 0000000100000ee5 movb $0, 17(%rcx) 0000000100000ee9 movq %rdx, %rsi 0000000100000eec movb $0, %al 0000000100000eee callq 0x100000f48 0000000100000ef3 movl $0, %r8d 0000000100000ef9movl $13, -24(%rbp) 0000000100000f00 movq $14, -16(%rbp) 0000000100000f08 movb $122, -8(%rbp) 0000000100000f0c movb $0, -7(%rbp) 0000000100000f10 movq -32(%rbp), %rcx 0000000100000f14 movl $13, (%rcx) 0000000100000f1a movq -32(%rbp), %rcx 0000000100000f1e movq $14, 8(%rcx) 0000000100000f26 movq -32(%rbp), %rcx 0000000100000f2a movb $122, 16(%rcx) 0000000100000f2e movq -32(%rbp), %rcx 0000000100000f32 movb $0, 17(%rcx) 0000000100000f36 movl %eax, -36(%rbp) 0000000100000f39 movl %r8d, %eax 0000000100000f3c addq $48, %rsp 0000000100000f40 popq %rbp 0000000100000f41 ret

  18. Code: instructions • The text section contains executable code for the program: a sequence of machine instructions. • Most instructions just move data in and out of named registers, or do arithmetic in registers. • These x86 instructions move the contents of the %rsp register (stack pointer) into the %rbp register (base pointer), then subtract 48 from %rsp. • Some instructions load from or store to memory at a virtual address in a register, plus some offset (displacement). • This x86 instruction loads a quadword (8-byte) value at the address in the %rbp register, minus 32, and puts that value in the %rcx register. movq %rsp, %rbp subq $48, %rsp movq -32(%rbp), %rcx

  19. Registers • The next few slides give some pictures of the register sets for various processors. • x86 (IA32 and x86-64): Intel and AMD chips, MIPS • The details aren’t important, but there’s always an SP (stack pointer) and PC (program counter or instruction pointer: the address of the current/next instruction to execute). • The system’s Application Binary Interface (ABI) defines conventions for use of the registers by executable code. • Each processor core has at least one register set for use by a code stream running on that core. • Multi-threaded cores (“SMT”) have multiple register sets and can run multiple streams of instructions simultaneously.

  20. x86user registers The register model is machine-dependent. The compiler and linker must generate code that uses the registers correctly, conforming to conventions, so that separately compiled code modules will work together.

  21. AL/AH/AX/EAX/RAX: Accumulator BL/BH/BX/EBX/RBX: Base index (for use with arrays) CL/CH/CX/ECX/RCX: Counter (for use with loops and strings) DL/DH/DX/EDX/RDX: Extend the precision of the accumulator SI/ESI/RSI: Source index for string operations. DI/EDI/RDI: Destination index for string operations. SP/ESP/RSP: Stack pointer for top address of the stack. BP/EBP/RBP: Stack base pointer for holding the address of the current stack frame. IP/EIP/RIP: Instruction pointer/program counter, the current instruction address.

  22. Simplified… pushq %rbp movq %rsp, %rbp subq $48, %rsp movabsq $24, %rdi callq 0x100000f42 movq %rax, -32(%rbp) leaq 347(%rip), %rcx ...address global data relative to (%rcx) ...addressstackdata relative to (%rbp) ; movepointertoheap block into %rcx movq -32(%rbp), %rcx ...addressheap block relative to (%rcx) addq$48, %rsp popq %rbp ret Push a frame on the stack: this one is 48 bytes. Who decided that? intmain() { struct stuff sstuff; struct stuff *hstuffp= (struct stuff *) malloc(24); gstuff.i= 13; gstuff.j = 14; gstuff.c[0] = 'z'; gstuff.c[1] = '\0'; sstuff.i = 13; sstuff.j = 14;… hstuffp->i = 13; hstuffp->j = 14;… } Call malloc(24): move return value into a local variable (at an offset from the stack base pointer). Address global data relative to the code address (%rip=PC). position-independent Pop procedure frame from the stack before returning from main().

  23. Addressing stuff %rcx 0x0 struct stuff { inti; long j; char c[2]; }; 24bytes (=0x18) 0x18 %rbp sstuff.i= 13; sstuff.j = 14; sstuff.c[0] = 'z'; sstuff.c[1] = '\0’; movl $13, -24(%rbp) movq $14, -16(%rbp) movb $122, -8(%rbp) movb $0, -7(%rbp) hstuffp->i = 13; hstuffp->j = 14; hstuffp->c[0] = 'z'; hstuffp->c[1] = '\0'; movl $13, (%rcx) movq $14, 8(%rcx) movb $122, 16(%rcx) movb $0, 17(%rcx)

  24. Basic C data types (64-bit) 0x0 struct stuff { inti; long j; char c[2]; }; 24bytes (=0x18) 0x18 %rbp

  25. Addressing stuff struct stuff { inti; long j; char c[2]; }; global data segment 0x0 &gstuff 0x18 (24) 347(%rip) heap data segment (BSS) hstuffp stack data segment RCX &sstuffp x RIP y RBP registers -xx(%rbp)

  26. Memory model: the view from C • Globals: • fixed size segment • Writable by user program • May have initial values • Text (instructions) • fixed size segment • executable • not writable • Heap and stack • variable size segments • writable • zero-filled on demand globals text heap RCX x PC/RIP y SP/RBP stack registers CPU core segments

  27. VAS example (32-bit) 0x7fffffff Reserved Stack • The program uses virtual memory through its process’ Virtual Address Space: • An addressable array of bytes… • Containing every instruction the process thread can execute… • And every piece of data those instructions can read/write… • i.e., read/write == load/store on memory • Partitioned into logical segments(regions) with distinct purpose and use. • Every memory reference by a thread is interpreted in the context of its VAS. • Resolves to a location in machine memory Dynamic data (heap/BSS) Static data Text (code) 0x0

  28. Extra slides • These just add more detail or other examples. • These are for your interest: they won’t be tested.

  29. “Classic Linux Address Space” N http://duartes.org/gustavo/blog/category/linux

  30. .section __TEXT,__text,regular,pure_instructions .globl _p1 .align 4, 0x90 _p1: ## @p1 .cfi_startproc ## BB#0: pushq %rbp Ltmp2: .cfi_def_cfa_offset 16 Ltmp3: .cfi_offset %rbp, -16 movq %rsp, %rbp Ltmp4: .cfi_def_cfa_register %rbp movl $1, %eax movq %rdi, -8(%rbp) popq %rbp ret .cfi_endproc .globl _p2 .align 4, 0x90 _p2: ## @p2 .cfi_startproc …. ret .cfi_endproc .section __TEXT,__cstring,cstring_literals L_.str: ## @.str .asciz "hello\n" .comm _val,4,2 ## @val .subsections_via_symbols

  31. Global data (“static”) .globl _g0 ## @g0 .zerofill __DATA,__common,_g0,4,2 .section __DATA,__data .globl _g1 ## @g1 .align 2 _g1: .long 1 ## 0x1 .comm _g,4,2 ## @g int g; int g0 = 0; int g1 = 1;

  32. Assembler directives: quick peek From x86 Assembly Language Reference Manual The .align directive causes the next data generated to be aligned modulo integer bytes. The .ascii directive places the characters in string into the object module at the current location but does not terminate the string with a null byte (\0). The .comm directive allocates storage in the data section. The storage is referenced by the identifier name. Size is measured in bytes and must be a positive integer. The .globl directive declares each symbol in the list to be global. Each symbol is either defined externally or defined in the input file and accessible in other files. The .long directive generates a long integer (32-bit, two's complement value) for each expression into the current section. Each expression must be a 32–bit value and must evaluate to an integer value.

More Related