Programmers' Guide

Total Page:16

File Type:pdf, Size:1020Kb

Programmers' Guide Free Pascal Programmers’ manual Programmers’ manual for Free Pascal, version 2.0.4 Document version 2.0 August 2006 Michaël Van Canneyt Contents 0.1 About this document .................................. 12 1 Compiler directives 13 1.1 Local directives ..................................... 13 1.1.1 $A or $ALIGN : Align Data .......................... 13 1.1.2 $ASMMODE : Assembler mode (Intel 80x86 only) ............... 13 1.1.3 $B or $BOOLEVAL : Complete boolean evaluation .............. 14 1.1.4 $C or $ASSERTIONS : Assertion support ................... 14 1.1.5 $CALLING : Specify calling convention .................... 14 1.1.6 $CHECKPOINTER : Check pointer values ................... 15 1.1.7 $CODEALIGN : Set the code alignment .................... 15 1.1.8 $COPERATOR : Allow C like operators .................... 15 1.1.9 $DEFINE : Define a symbol .......................... 16 1.1.10 $ELSE : Switch conditional compilation ................... 16 1.1.11 $ELSEC : Switch conditional compilation ................... 16 1.1.12 $ENDC : End conditional compilation ..................... 16 1.1.13 $ENDIF : End conditional compilation .................... 16 1.1.14 $ERROR : Generate error message ....................... 17 1.1.15 $EXTENDEDSYM: Ignored ........................... 17 1.1.16 $F : Far or near functions ........................... 17 1.1.17 $FATAL : Generate fatal error message .................... 18 1.1.18 $FPUTYPE : Select coprocessor type ..................... 18 1.1.19 $GOTO : Support Goto and Label ...................... 18 1.1.20 $H or $LONGSTRINGS : Use AnsiStrings .................. 19 1.1.21 $HINT : Generate hint message ........................ 19 1.1.22 $HINTS : Emit hints .............................. 19 1.1.23 $HPPEMIT: Ignored .............................. 19 1.1.24 $IF : Start conditional compilation ...................... 19 1.1.25 $IFC : Start conditional compilation ..................... 19 1.1.26 $IFDEF Name : Start conditional compilation ................ 19 1.1.27 $IFNDEF : Start conditional compilation ................... 20 1 CONTENTS 1.1.28 $IFOPT : Start conditional compilation .................... 20 1.1.29 $IMPLICITEXCEPTIONS : Do not generate finalization code ....... 20 1.1.30 $INFO : Generate info message ........................ 20 1.1.31 $INLINE : Allow inline code. ......................... 20 1.1.32 $INTERFACES : Specify Interface type. ................... 21 1.1.33 $I or $IOCHECKS : Input/Output checking .................. 21 1.1.34 $I or $INCLUDE : Include file ........................ 21 1.1.35 $I or $INCLUDE : Include compiler info ................... 22 1.1.36 $I386_XXX : Specify assembler format (Intel 80x86 only) ......... 23 1.1.37 $J or $WRITABLECONSTS : Allow typed consts .............. 23 1.1.38 $L or $LINK : Link object file ......................... 23 1.1.39 $LINKLIB : Link to a library ......................... 24 1.1.40 $M or $TYPEINFO : Generate type info .................... 24 1.1.41 $MACRO : Allow use of macros. ........................ 24 1.1.42 $MAXFPUREGISTERS : Maximum number of FPU registers for variables . 25 1.1.43 $MESSAGE : Generate info message ...................... 25 1.1.44 $MMX : Intel MMX support (Intel 80x86 only) ................ 25 1.1.45 $NODEFINE : Ignored ............................. 26 1.1.46 $NOTE : Generate note message ........................ 26 1.1.47 $NOTES : Emit notes .............................. 26 1.1.48 $OBJECTCHECK : Check Object ....................... 26 1.1.49 $OUTPUT_FORMAT : Specify the output format ............... 27 1.1.50 $PACKENUM : Minimum enumeration type size ................ 27 1.1.51 $PACKRECORDS : Alignment of record elements ............... 27 1.1.52 $Q $OVERFLOWCHECKS: Overflow checking ................ 28 1.1.53 $R or $RANGECHECKS : Range checking ................... 28 1.1.54 $R or $RESOURCE : Include resource ..................... 28 1.1.55 $SATURATION : Saturation operations (Intel 80x86 only) .......... 29 1.1.56 $SETC : Define and assign a value to a symbol ................ 29 1.1.57 $STATIC : Allow use of Static keyword. ................. 29 1.1.58 $STOP : Generate fatal error message ..................... 29 1.1.59 $T or $TYPEDADDRESS : Typed address operator (@) ........... 30 1.1.60 $UNDEF : Undefine a symbol ......................... 30 1.1.61 $V or $VARSTRINGCHECKS : Var-string checking ............. 30 1.1.62 $W or $STACKFRAMES : Generate stackframes ................ 30 1.1.63 $WAIT : Wait for enter key press ....................... 30 1.1.64 $WARNING : Generate warning message ................... 31 1.1.65 $WARNINGS : Emit warnings ......................... 31 1.2 Global directives .................................... 31 1.2.1 $APPID : Specify application ID. ....................... 31 2 CONTENTS 1.2.2 $APPID : Specify application name. ..................... 31 1.2.3 $APPTYPE : Specify type of application. ................... 31 1.2.4 $CALLING : Default calling convention .................... 32 1.2.5 $CODEPAGE : Set the source codepage .................... 33 1.2.6 $COPYRIGHT specify copyright info ..................... 33 1.2.7 $D or $DEBUGINFO : Debugging symbols .................. 33 1.2.8 $DESCRIPTION : Application description .................. 33 1.2.9 $D $DEBUGINFO : Include debug info .................... 33 1.2.10 $E : Emulation of coprocessor ......................... 33 Intel 80x86 version ............................... 33 Motorola 680x0 version ............................ 34 1.2.11 $G : Generate 80286 code ........................... 34 1.2.12 $INCLUDEPATH : Specify include path. ................... 34 1.2.13 $INTERFACES : Default interface type .................... 34 1.2.14 $L or $LOCALSYMBOLS : Local symbol information ............ 34 1.2.15 $LIBRARYPATH : Specify library path. .................... 35 1.2.16 $M or $MEMORY : Memory sizes ........................ 35 1.2.17 $MODE : Set compiler compatibility mode ................... 35 1.2.18 $N : Numeric processing ........................... 36 1.2.19 $O : Overlay code generation ......................... 36 1.2.20 $OBJECTPATH : Specify object path. ..................... 36 1.2.21 $P or $OPENSTRINGS : Use open strings .................. 36 1.2.22 $PROFILE : Profiling ............................. 36 1.2.23 $S : Stack checking .............................. 36 1.2.24 $SCREENNAME : Specify screen name .................... 37 1.2.25 $SMARTLINK : Use smartlinking ....................... 37 1.2.26 $THREADNAME : Set thread name in Netware ................. 37 1.2.27 $THREADING : Allow use of threads. ..................... 37 1.2.28 $UNITPATH : Specify unit path. ....................... 37 1.2.29 $VERSION : Specify DLL version. ...................... 38 1.2.30 $WEAKPACKAGEUNIT : ignored ....................... 38 1.2.31 $X or $EXTENDEDSYNTAX : Extended syntax ................ 38 1.2.32 $Y or $REFERENCEINFO : Insert Browser information ........... 39 2 Using conditionals, messages and macros 40 2.1 Conditionals ....................................... 40 2.1.1 Predefined symbols ............................... 41 2.2 Macros ......................................... 41 2.3 Compile time variables ................................. 43 2.4 Compile time expressions ................................ 43 3 CONTENTS 2.4.1 Definition .................................... 43 2.4.2 Usage ...................................... 44 2.5 Messages ........................................ 48 3 Using Assembly language 50 3.1 Using assembler in the sources ............................. 50 3.2 Intel 80x86 Inline assembler .............................. 51 3.2.1 Intel syntax ................................... 51 3.2.2 AT&T Syntax .................................. 54 3.3 Motorola 680x0 Inline assembler ............................ 55 3.4 Signaling changed registers ............................... 56 4 Generated code 57 4.1 Units ........................................... 57 4.2 Programs ........................................ 58 5 Intel MMX support 59 5.1 What is it about? .................................... 59 5.2 Saturation support .................................... 60 5.3 Restrictions of MMX support .............................. 60 5.4 Supported MMX operations .............................. 61 5.5 Optimizing MMX support ............................... 61 6 Code issues 62 6.1 Register Conventions .................................. 62 6.1.1 accumulator register .............................. 62 6.1.2 accumulator 64-bit register ........................... 62 6.1.3 float result register ............................... 62 6.1.4 self register ................................... 62 6.1.5 frame pointer register .............................. 62 6.1.6 stack pointer register .............................. 63 6.1.7 scratch registers ................................. 63 6.1.8 Processor mapping of registers ......................... 63 Intel 80x86 version ............................... 63 Motorola 680x0 version ............................ 63 6.2 Name mangling ..................................... 64 6.2.1 Mangled names for data blocks ........................ 64 6.2.2 Mangled names for code blocks ........................ 65 6.2.3 Modifying the mangled names ......................... 67 6.3 Calling mechanism ................................... 67 6.4 Nested procedure and functions ............................. 68 4 CONTENTS 6.5 Constructor and Destructor calls ............................ 68 6.5.1 objects ..................................... 68 6.5.2 classes ....................................
Recommended publications
  • Architectural Support for Dynamic Linking Varun Agrawal, Abhiroop Dabral, Tapti Palit, Yongming Shen, Michael Ferdman COMPAS Stony Brook University
    Architectural Support for Dynamic Linking Varun Agrawal, Abhiroop Dabral, Tapti Palit, Yongming Shen, Michael Ferdman COMPAS Stony Brook University Abstract 1 Introduction All software in use today relies on libraries, including All computer programs in use today rely on software standard libraries (e.g., C, C++) and application-specific libraries. Libraries can be linked dynamically, deferring libraries (e.g., libxml, libpng). Most libraries are loaded in much of the linking process to the launch of the program. memory and dynamically linked when programs are Dynamically linked libraries offer numerous benefits over launched, resolving symbol addresses across the applica- static linking: they allow code reuse between applications, tions and libraries. Dynamic linking has many benefits: It conserve memory (because only one copy of a library is kept allows code to be reused between applications, conserves in memory for all applications that share it), allow libraries memory (because only one copy of a library is kept in mem- to be patched and updated without modifying programs, ory for all the applications that share it), and allows enable effective address space layout randomization for libraries to be patched and updated without modifying pro- security [21], and many others. As a result, dynamic linking grams, among numerous other benefits. However, these is the predominant choice in all systems today [7]. benefits come at the cost of performance. For every call To facilitate dynamic linking of libraries, compiled pro- made to a function in a dynamically linked library, a trampo- grams include function call trampolines in their binaries. line is used to read the function address from a lookup table When a program is launched, the dynamic linker maps the and branch to the function, incurring memory load and libraries into the process address space and resolves external branch operations.
    [Show full text]
  • CS429: Computer Organization and Architecture Linking I & II
    CS429: Computer Organization and Architecture Linking I & II Dr. Bill Young Department of Computer Sciences University of Texas at Austin Last updated: April 5, 2018 at 09:23 CS429 Slideset 23: 1 Linking I A Simplistic Translation Scheme m.c ASCII source file Problems: Efficiency: small change Compiler requires complete re-compilation. m.s Modularity: hard to share common functions (e.g., printf). Assembler Solution: Static linker (or Binary executable object file linker). p (memory image on disk) CS429 Slideset 23: 2 Linking I Better Scheme Using a Linker Linking is the process of m.c a.c ASCII source files combining various pieces of code and data into a Compiler Compiler single file that can be loaded (copied) into m.s a.s memory and executed. Linking could happen at: Assembler Assembler compile time; Separately compiled m.o a.o load time; relocatable object files run time. Linker (ld) Must somehow tell a Executable object file module about symbols p (code and data for all functions defined in m.c and a.c) from other modules. CS429 Slideset 23: 3 Linking I Linking A linker takes representations of separate program modules and combines them into a single executable. This involves two primary steps: 1 Symbol resolution: associate each symbol reference throughout the set of modules with a single symbol definition. 2 Relocation: associate a memory location with each symbol definition, and modify each reference to point to that location. CS429 Slideset 23: 4 Linking I Translating the Example Program A compiler driver coordinates all steps in the translation and linking process.
    [Show full text]
  • Protecting Against Unexpected System Calls
    Protecting Against Unexpected System Calls C. M. Linn, M. Rajagopalan, S. Baker, C. Collberg, S. K. Debray, J. H. Hartman Department of Computer Science University of Arizona Tucson, AZ 85721 {linnc,mohan,bakers,collberg,debray,jhh}@cs.arizona.edu Abstract writing the return address on the stack with the address of the attack code). This then causes the various actions This paper proposes a comprehensive set of techniques relating to the attack to be carried out. which limit the scope of remote code injection attacks. These techniques prevent any injected code from mak- In order to do any real damage, e.g., create a root ing system calls and thus restrict the capabilities of an shell, change permissions on a file, or access proscribed attacker. In defending against the traditional ways of data, the attack code needs to execute one or more sys- harming a system these techniques significantly raise the tem calls. Because of this, and the well-defined system bar for compromising the host system forcing the attack call interface between application code and the underly- code to take extraordinary steps that may be impractical ing operating system kernel, many researchers have fo- in the context of a remote code injection attack. There cused on the system call interface as a convenient point are two main aspects to our approach. The first is to for detecting and disrupting such attacks (see, for exam- embed semantic information into executables identify- ple, [5, 13, 17, 19, 29, 32, 35, 38]; Section 7 gives a more ing the locations of legitimate system call instructions; extensive discussion).
    [Show full text]
  • Cray XT Programming Environment's Implementation of Dynamic Shared Libraries
    Cray XT Programming Environment’s Implementation of Dynamic Shared Libraries Geir Johansen, Cray Inc. Barb Mauzy, Cray Inc. ABSTRACT: The Cray XT Programming Environment will support the implementation of dynamic shared libraries in future Cray XT CLE releases. The Cray XT implementation will provide the flexibility to allow specific library versions to be chosen at both link and run times. The implementation of dynamic shared libraries allows dynamically linked executables built with software other than the Cray Programming Environment to be run on the Cray XT. KEYWORDS: Cray XT, Programming Environment CUG 2009 Proceedings 1 of 10 information in physical memory that can be shared among 1.0 Introduction multiple processes. This feature potentially reduces the memory allocated for a program on a compute node. This The goal of this paper is provide application analysts advantage becomes more important as the number of a description of Cray XT Programming Environment‟s available cores increases. implementation of dynamic shared libraries. Topics Another advantage of dynamically linked executables covered include the building of dynamic shared library is that the system libraries can be upgraded and take effect programs, configuring the version of dynamic shared without the need to relink applications. The ability to libraries to be used at execution time, and the execution of install library changes without having to rebuild a program a dynamically linked program not built with the Cray XT is a significant advantage in quickly addressing problems, Programming Environment. While a brief description of such as a security issue with a library code. The the Cray XT system implementation of dynamic shared experiences of system administrators have shown that libraries will be given, the Cray XT system architecture codes using dynamic shared libraries are more resilient to and system administration issues of dynamic shared system upgrades than codes using static libraries [1].
    [Show full text]
  • Dynamic Linking Considered Harmful
    DYNAMIC LINKING CONSIDERED HARMFUL 1 WHY WE NEED LINKING ¡ Want to access code/data defined somewhere else (another file in our project, a library, etc) ¡ In compiler-speak, “we want symbols with external linkage” § I only really care about functions here ¡ Need a mechanism by which we can reference symbols whose location we don’t know ¡ A linker solves this problem. Takes symbols annotated by the compiler (unresolved symbols) and patches them 2 DYNAMIC LINKING ¡ We want to: ¡ use code defined somewhere else, but we don’t want to have to recompile/link when it’s updated ¡ be able to link only those symbols used as runtime (deferred/lazy linking) ¡ be more efficient with resources (may get to this later) 3 CAVEATS ¡ Applies to UNIX, particularly Linux, x86 architecture, ELF Relevant files: -glibcX.X/elf/rtld.c -linux-X.X.X/fs/exec.c, binfmt_elf.c -/usr/include/linux/elf.h ¡ (I think) Windows linking operates similarly 4 THE BIRTH OF A PROCESS 5 THE COMPILER ¡ Compiles your code into a relocatable object file (in the ELF format, which we’ll get to see more of later) ¡ One of the chunks in the .o is a symbol table ¡ This table contains the names of symbols referenced and defined in the file ¡ Unresolved symbols will have relocation entries (in a relocation table) 6 THE LINKER ¡ Patches up the unresolved symbols it can. If we’re linking statically, it has to fix all of them. Otherwise, at runtime ¡ Relocation stage. Will not go into detail here. § Basically, prepares program segments and symbol references for load time 7 THE SHELL fork(), exec() 8 THE KERNEL (LOADER) ¡ Loaders are typically kernel modules.
    [Show full text]
  • Linker Script Guide Emprog
    Linker Script Guide Emprog Emprog ThunderBench™ Linker Script Guide Version 1.2 ©May 2013 Page | 1 Linker Script Guide Emprog 1 - Linker Script guide 2 -Arm Specific Options Page | 2 Linker Script Guide Emprog 1 The Linker Scripts Every link is controlled by a linker script. This script is written in the linker command language. The main purpose of the linker script is to describe how the sections in the input files should be mapped into the output file, and to control the memory layout of the output file. Most linker scripts do nothing more than this. However, when necessary, the linker script can also direct the linker to perform many other operations, using the commands described below. The linker always uses a linker script. If you do not supply one yourself, the linker will use a default script that is compiled into the linker executable. You can use the ‘--verbose’ command line option to display the default linker script. Certain command line options, such as ‘-r’ or ‘-N’, will affect the default linker script. You may supply your own linker script by using the ‘-T’ command line option. When you do this, your linker script will replace the default linker script. You may also use linker scripts implicitly by naming them as input files to the linker, as though they were files to be linked. 1.1 Basic Linker Script Concepts We need to define some basic concepts and vocabulary in order to describe the linker script language. The linker combines input files into a single output file. The output file and each input file are in a special data format known as an object file format.
    [Show full text]
  • Sta C Linking
    Carnegie Mellon Linking 15-213: Introduc;on to Computer Systems 13th Lecture, Oct. 13, 2015 Instructors: Randal E. Bryant and David R. O’Hallaron Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspec;ve, Third Edi;on 1 Carnegie Mellon Today ¢ Linking ¢ Case study: Library interposioning Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspec;ve, Third Edi;on 2 Carnegie Mellon Example C Program int sum(int *a, int n);! int sum(int *a, int n)! ! {! int array[2] = {1, 2};! int i, s = 0;! ! ! int main()! for (i = 0; i < n; i++) {! {! s += a[i];! int val = sum(array, 2);! }! return val;! return s;! }! }! main.c ! sum.c Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspec;ve, Third Edi;on 3 Carnegie Mellon Sta7c Linking ¢ Programs are translated and linked using a compiler driver: § linux> gcc -Og -o prog main.c sum.c § linux> ./prog main.c sum.c Source files Translators Translators (cpp, cc1, as) (cpp, cc1, as) main.o sum.o Separately compiled relocatable object files Linker (ld) Fully linked executable object file prog (contains code and data for all func;ons defined in main.c and sum.c) Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspec;ve, Third Edi;on 4 Carnegie Mellon Why Linkers? ¢ Reason 1: Modularity § Program can be wriNen as a collec;on of smaller source files, rather than one monolithic mass. § Can build libraries of common func;ons (more on this later) § e.g., Math library, standard C library Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspec;ve, Third Edi;on 5 Carnegie Mellon Why Linkers? (cont) ¢ Reason 2: Efficiency § Time: Separate compilaon § Change one source file, compile, and then relink.
    [Show full text]
  • Introduction to Computer Systems 15-213/18-243, Spring 2009
    Carnegie Mellon Linking 15-213: Introduction to Computer Systems 13th Lecture, February 23rd, 2016 Instructors: Franz Franchetti & Seth Copen Goldstein, Ralf Brown, and Brian Railing Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 1 Carnegie Mellon Today Linking Case study: Library interpositioning Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 2 Carnegie Mellon Example C Program int sum(int *a, int n); int sum(int *a, int n) { int array[2] = {1, 2}; int i, s = 0; int main() for (i = 0; i < n; i++) { { s += a[i]; int val = sum(array, 2); } return val; return s; } } main.c sum.c Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 3 Carnegie Mellon Static Linking Programs are translated and linked using a compiler driver: . linux> gcc -Og -o prog main.c sum.c . linux> ./prog main.c sum.c Source files Translators Translators (cpp, cc1, as) (cpp, cc1, as) main.o sum.o Separately compiled relocatable object files Linker (ld) Fully linked executable object file prog (contains code and data for all functions defined in main.c and sum.c) Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 4 Carnegie Mellon Why Linkers? Reason 1: Modularity . Program can be written as a collection of smaller source files, rather than one monolithic mass. Can build libraries of common functions (more on this later) . e.g., Math library, standard C library Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition 5 Carnegie Mellon Why Linkers? (cont) Reason 2: Efficiency .
    [Show full text]
  • Linkers and Loaders Do?
    Linkers & Loaders by John R. Levine Table of Contents 1 Table of Contents Chapter 0: Front Matter ........................................................ 1 Dedication .............................................................................................. 1 Introduction ............................................................................................ 1 Who is this book for? ......................................................................... 2 Chapter summaries ............................................................................. 3 The project ......................................................................................... 4 Acknowledgements ............................................................................ 5 Contact us ........................................................................................... 6 Chapter 1: Linking and Loading ........................................... 7 What do linkers and loaders do? ............................................................ 7 Address binding: a historical perspective .............................................. 7 Linking vs. loading .............................................................................. 10 Tw o-pass linking .............................................................................. 12 Object code libraries ........................................................................ 15 Relocation and code modification .................................................... 17 Compiler Drivers .................................................................................
    [Show full text]
  • Let Your Mach-O fly
    Let your Mach-O fly Vincenzo Iozzo [email protected] January 15, 2009 Abstract Mac OS X is starting to spread among users, so new exploitation techniques have to be discovered. Even if a lot of interesting ways of exploitation on OSX were presented in the past, the lack of anti-forensics techniques is clear. The talk is focused on an in-memory injection technique. Specifically, how it is possible to inject into a victim's machine any kind of binaries ranging from your own piece of code to real applications like Safari. This is accomplished without leaving traces on the hard disk and without creating a new process, since the whole exploitation is performed in memory. If an attacker is able to execute code in the target machine, it is possible to run this attack instead of a classic shellcode and to use it as a trampoline for higher-lever payloads. Other similar payloads like meterpreter or meterpretux[11] exist but none of them is able to run on Mac OS X. Besides, many of these techniques require to run specific crafted binaries, that way precompiled applications are left out from the possible range of payloads. 1 Introduction Mac OS X is constantly attracting new users. Given that fact, in the last few years researchers focused more and more on this topic highlighting a number of security concerns, mainly caused by the lack of modern security counter mea- sures. Nonetheless there is a lack of advanced techniques and tools that are already present and used on other OSes instead.
    [Show full text]
  • Mach-O Programming Topics
    Mach-O Programming Topics Tools > Compiling & Debugging 2006-11-28 subsidiaries in the United States and other Apple Inc. countries. © 2003, 2006 Apple Computer, Inc. Java and all Java-based trademarks are All rights reserved. trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other No part of this publication may be countries. reproduced, stored in a retrieval system, or transmitted, in any form or by any means, PowerPC and and the PowerPC logo are mechanical, electronic, photocopying, trademarks of International Business recording, or otherwise, without prior Machines Corporation, used under license written permission of Apple Inc., with the therefrom. following exceptions: Any person is hereby UNIX is a registered trademark of The Open authorized to store documentation on a Group single computer for personal use only and Simultaneously published in the United to print copies of documentation for States and Canada. personal use provided that the documentation contains Apple’s copyright Even though Apple has reviewed this document, APPLE MAKES NO WARRANTY OR notice. REPRESENTATION, EITHER EXPRESS OR IMPLIED, WITH RESPECT TO THIS The Apple logo is a trademark of Apple Inc. DOCUMENT, ITS QUALITY, ACCURACY, MERCHANTABILITY, OR FITNESS FOR A Use of the “keyboard” Apple logo PARTICULAR PURPOSE. AS A RESULT, THIS (Option-Shift-K) for commercial purposes DOCUMENT IS PROVIDED “AS IS,” AND YOU, THE READER, ARE ASSUMING THE without the prior written consent of Apple ENTIRE RISK AS TO ITS QUALITY AND may constitute trademark infringement and ACCURACY. unfair competition in violation of federal IN NO EVENT WILL APPLE BE LIABLE FOR and state laws.
    [Show full text]
  • “Hello, World”* (*But Were Afraid to Ask.)
    Everything you ever wanted to know about “hello, world”* (*but were afraid to ask.) Brooks Davis SRI International <[email protected]> 1 Abstract compile with a modern compiler in C11 mode. In practice we need to specify a return type (or at least The first example in the classic book “The C Pro- void for returning nothing) and arguments. In the- gramming Language” by Kernighan and Ritchie[1] ory the main() function is defined to return an inte- is in fact a remarkably complete test of the C pro- ger and take two arguments for the command line gramming language. This paper provides a guided argument list; however, compilers tend to accept tour of a slightly more complex program, where this alternative form for compatibility sake. printf() is called with multiple arguments. Along #include <stdio.h> the way from the initial processes’s call to exec() void to the final _exit(), we’ll tour the program loading main (void) code in the kernel, the basics of system-call imple- { mentation, the implementation of the memory allo- printf ("hello, world\n"); cator, and of course printf(). We’ll also touch on } localization, a little on threading support, and a brief One of the more interesting features of the overview of the dynamic linker. printf() function is that it takes a variable number of arguments. Varidac functions such as printf() 2 Introduction are both interesting and error prone, so it’s useful to understand how they work. As such, we’ll use the The first example in the classic K&R C book is a following enhanced version of helloworld with a simple program that prints the text “hello, world” string argument and an integer argument.
    [Show full text]