SPIM MIPS Simulator

Total Page:16

File Type:pdf, Size:1020Kb

SPIM MIPS Simulator SPIM MIPS Simulator SPIM A MIPS32 Simulator James Larus [email protected] Microsoft Research Formerly: Professor, Computer Sciences Department, University of Wisconsin-Madison spim is a self-contained simulator that will run MIPS32 assembly language programs. It reads and executes assembly language programs written for this processor. spim also provides a simple debugger and minimal set of operating system services. spim does not execute binary (compiled) programs. spim implements almost the entire MIPS32 assembler-extended instruction set. (It omits most floating point comparisons and rounding modes and the memory system page tables.) The MIPS architecture has several variants that differ in various ways (e.g., the MIPS64 architecture supports 64-bit integers and addresses), which means that spim will not run programs compiled for all types of MIPS processors. MIPS compilers also generate a number of assembler directives that spim cannot process. These directives usually can be safely deleted. Earlier versions of spim (before 7.0) implemented the MIPS-I instruction set used on the MIPS R2000/R3000 computers. This architecture is obsolete (though, has never been surpassed for its simplicity and elegance). spim now supports the more modern MIPS32 architecture, which is the MIPS-I instruction set augmented with a large number of occasionally useful instructions. MIPS code from earlier versions of SPIM should run without changes, except code that handles exceptions and interrupts. This part of the architecture changed over time (and was poorly implemented in earlier versions of spim). Code of this sort need to be updated. Examples of the new code are in exceptions.s and Tests/tt.io.s. spim comes with complete source code and documentation. It also include a torture test to verify a port to a new machine. spim implements both a simple, terminal-style interface and a window interface. On Unix, Linux, and Mac OS X the spim program provides a simple terminal interface and the xspim program provides the windowing interface. On Microsoft Windows, the spim program provides a console interface and PCSpim provides a Windows interface. Downloading SPIM Platform Program Form File Unix or Linux system spim http://www.cs.wisc.edu/~larus/SPIM/spim.tar.Z or Source code Mac OS X xspim http://www.cs.wisc.edu/~larus/SPIM/spim.tar.gz spim Binary RPM for Linux http://www.cs.wisc.edu/cbi/downloads/ xspim Fedora Microsoft Windows (Windows NT, 2000, XP) Executable http://www.cs.wisc.edu/~larus/SPIM/pcspim.zip spim PCSpim (spim 7.0 and later versions no longer run on Windows 95/98. Use version Source code http://www.cs.wisc.edu/~larus/SPIM/pcspim_src.zip 6.5 or earlier.) http://pages.cs.wisc.edu/~larus/spim.html 第 1 頁 / 共 9 2008/8/28 下午 05:39:34 SPIM MIPS Simulator ● To run spim or xspim on a Unix, Linux, or Mac OS X system, copy either the compressed tar file (http://www.cs.wisc.edu/~larus/SPIM/spim.tar.Z) or the gzip'ed tar file (http://www.cs.wisc.edu/~larus/SPIM/spim.tar.gz). Both files contains source code and must be compiled for your system. ● Ben Liblit of the Cooperative Bug Isolation Project (http://www.cs.wisc.edu/cbi/) produced a compiled version of spim for Fedora. It contains the project's low-overhead monitoring code, which can help find bugs in spim. If you are running Linux, this package can: save you the time and trouble of compiling and installing spim, help find bugs, and aid an interesting research project. ● To run PCspim under Microsoft Windows, download the file http://www.cs.wisc.edu/~larus/SPIM/pcspim.zip, unzip it, and click on setup.exe. ● Source for the Microsoft Windows version (both PCspim and spim) is available separately in the file http://www.cs.wisc.edu/~larus/SPIM/pcspim_src.zip. ● There is no native Macintosh version of spim. However, the xspim will compiles and runs on Mac OS X. Installation Microsoft Windows 1. Download the file http://www.cs.wisc.edu/~larus/SPIM/pcspim.zip and save it on your machine. 2. Unzip the file. 3. Click on the setup.exe program. Unix, Linux, or Mac OS X (Note: the directions changed slightly for version 7.2, to reflect a new directory structure. Please read carefully.) Installation is a bit more complex for a Unix or Linux system, as you need to compile the program for your particular computer and operating system. 1. Download either the file http://www.cs.wisc.edu/~larus/SPIM/spim.tar.Z or http://www.cs.wisc.edu/~larus/SPIM/spim.tar.gz. 2. Decompress the file, using either the program uncompress for the first file or gzip for the second file: % uncompress spim.tar.Z or % gzip -d spim.tar.gz 3. Move the file spim.tar to the directory in which you want to build spim and untar it: % tar xf spim.tar It will create a directory named spim-7.2 (or the most recent version number). http://pages.cs.wisc.edu/~larus/spim.html 第 2 頁 / 共 9 2008/8/28 下午 05:39:34 SPIM MIPS Simulator 4. The simple terminal interface is contained in the spim-7.2/spim directory and the X-windows interfaces is in the spim-7.2/xspim directory. The other directories are described in the README file. 5. Next, you must set the directories in which spim will be installed by editing the Makefile (the file that contains instructions on building spim). In general, if you are installing spim and want the windowing version (xspim), edit the file xspim/Imakefile. If you don't want xspim or are running on a system without X-windows installed, you use the file spim/Makefile. Set these pathnames to the appropriate locations for your system: EXCEPTION_DIR -- The full pathname of the directory in which to install the spim exception handler (exceptions.s). BIN_DIR -- The full pathname of the directory in which spim and xspim should be installed. MAN_DIR -- The full pathname of the directory in which the manual pages for spim and xspim should be installed. In general, the remaining parameters in a Makefile need not be changed. 6. Then, if you are using Imakefile file, change to the spim-7.2/xspim directory and type: % xmkmf % make If you do not have a copy of xmkmf, you can use the Makefile in the xspim directory, but beware that it may not work on your system because the paths to the X windows libraries could be different. 7. If you do not have X-windows, change to the spim-7.2/spim directory, edit Makefile, and type: % make 8. To run spim or xspim, the exception handler must be installed in the directory specified by the variable EXCEPTION_DIR in the Makefile. If the file exception.s is not installed, spim and xspim fail before they start running. You can either install this file by hand or by typing % make install which also installs spim or xspim, and the manual pages in the directories that you set (above). 9. To test that spim is correctly built, change to the spim-7.2/spim directory and type: % make test and examine the output of the test. (Note: the exception handler must be installed before running the test.) http://pages.cs.wisc.edu/~larus/spim.html 第 3 頁 / 共 9 2008/8/28 下午 05:39:34 SPIM MIPS Simulator Resources ● Elsevier (aka Morgan Kaufmann) has generously provided the spim documentation (Appendix A) from the third edition of Hennessy & Patterson, Computer Organization and Design: The Hardware/Software Interface. This documentation is far more complete and up-to-date than the documentation included in the spim distribution. The COD documentation includes: ❍ Appendix A: Assemblers, Linkers, and the SPIM Simulator (PDF). An overview and reference manual for spim and the MIPS32 instruction set. ❍ Getting Started with spim (PDF). Overview of the console version of spim (both Unix and Windows). ❍ Getting Started with xspim (PDF). Overview of the X-windows version of spim. ❍ Getting Starting with PCSpim (PDF). Overview of the Microsoft Windows version of spim. ❍ SPIM Command-Line Options (PDF). Overview of the command line options of spim (all versions). ● The documentation included with spim is also online (as a postscript or Adobe PDF file). This document is for the original spim (pre-version 7.0), which simulated the MIPS-I architecture rather than MIPS32, and so differs in many minor aspects from the current version of spim. Appendix A of Hennessy & Patterson, Computer Organization and Design: The Hardware/Software Interface (above), is more up-to-date and correct.. ● The best book I have seen on MIPS programming is: Dominic Sweetman, See MIPS Run, Morgan Kaufmann, San Francisco, CA, 1999, ISBN 1-55860-410-3. ● MIPS, Inc. has excellent free documentation on the MIPS32 architecture on their website (registration required) http://www.mips.com/products/resource_library/ product_materials/MIPS_Architecture.php: ❍ MIPS32® Architecture for Programmers Volume I: Introduction to the MIPS32® Architecture (.pdf) ❍ MIPS32® Architecture for Programmers Volume II: The MIPS32® Instruction Set (.pdf) ❍ MIPS32® Architecture for Programmers Volume III: The MIPS32® Privileged Resource Architecture (.pdf) ● An old reference manual for the MIPS architecture (including processors subsequent to the R2000/R3000) is: Gerry Kane and Joe Heinrich, MIPS RISC Architecture, Prentice Hall, Englewood Cliffs, N.J. 07632 ISBN 0-13-1059254. ● Another good book for the MIPS R2000 and R3000 is: Erin Farquhar and Philip Bunce, The MIPS Programmer's Handbook, Morgan Kaufmann, San Francisco, CA, 1994, ISBN 1-55860-297-6. ● The GNU C compiler can generate code for the MIPS R3000 and can be used as a cross compiler.
Recommended publications
  • MIPS Assembly Language Programming Using Qtspim
    MIPS Assembly Language Programming using QtSpim Ed Jorgensen, Ph.D. Version 1.1.50 July 2019 Cover image: MIPS R3000 Custom Chip http://commons.wikimedia.org/wiki/File:RCP-NUS_01.jpg Spim is copyrighted by James Larus and distributed under a BSD license. Copyright (c) 1990-2011, James R. Larus. All rights reserved. Copyright © 2013, 2014, 2015, 2016, 2017 by Ed Jorgensen You are free: To Share — to copy, distribute and transmit the work To Remix — to adapt the work Under the following conditions: Attribution — you must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work). Noncommercial — you may not use this work for commercial purposes. Share Alike — if you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one. Table of Contents 1.0 Introduction...........................................................................................................1 1.1 Additional References.........................................................................................1 2.0 MIPS Architecture Overview..............................................................................3 2.1 Architecture Overview........................................................................................3 2.2 Data Types/Sizes.................................................................................................4 2.3 Memory...............................................................................................................4
    [Show full text]
  • Computer Architectures an Overview
    Computer Architectures An Overview PDF generated using the open source mwlib toolkit. See http://code.pediapress.com/ for more information. PDF generated at: Sat, 25 Feb 2012 22:35:32 UTC Contents Articles Microarchitecture 1 x86 7 PowerPC 23 IBM POWER 33 MIPS architecture 39 SPARC 57 ARM architecture 65 DEC Alpha 80 AlphaStation 92 AlphaServer 95 Very long instruction word 103 Instruction-level parallelism 107 Explicitly parallel instruction computing 108 References Article Sources and Contributors 111 Image Sources, Licenses and Contributors 113 Article Licenses License 114 Microarchitecture 1 Microarchitecture In computer engineering, microarchitecture (sometimes abbreviated to µarch or uarch), also called computer organization, is the way a given instruction set architecture (ISA) is implemented on a processor. A given ISA may be implemented with different microarchitectures.[1] Implementations might vary due to different goals of a given design or due to shifts in technology.[2] Computer architecture is the combination of microarchitecture and instruction set design. Relation to instruction set architecture The ISA is roughly the same as the programming model of a processor as seen by an assembly language programmer or compiler writer. The ISA includes the execution model, processor registers, address and data formats among other things. The Intel Core microarchitecture microarchitecture includes the constituent parts of the processor and how these interconnect and interoperate to implement the ISA. The microarchitecture of a machine is usually represented as (more or less detailed) diagrams that describe the interconnections of the various microarchitectural elements of the machine, which may be everything from single gates and registers, to complete arithmetic logic units (ALU)s and even larger elements.
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • QEMU As a Platform for PLC Virtualization an Analysis from a Cyber Security Perspective
    QEMU as a platform for PLC virtualization An analysis from a cyber security perspective HANNES HOLM, MATS PERSSON FOI Swedish Defence Research Agency Phone: +46 8 555 030 00 www.foi.se FOI-R--4576--SE SE-164 90 Stockholm Fax: +46 8 555 031 00 ISSN 1650-1942 April 2018 Hannes Holm, Mats Persson QEMU as a platform for PLC virtualization An analysis from a cyber security perspective Bild/Cover: Hannes Holm FOI-R--4576--SE Titel QEMU as a platform for PLC virtualization Title Virtualisering av PLC:er med QEMU Rapportnr/Report no FOI-R--4576--SE Månad/Month April Utgivningsår/Year 2018 Antal sidor/Pages 36 ISSN 1650-1942 Kund/Customer MSB Forskningsområde 4. Informationssäkerhet och kommunikation FoT-område Projektnr/Project no E72086 Godkänd av/Approved by Christian Jönsson Ansvarig avdelning Ledningssytem Detta verk är skyddat enligt lagen (1960:729) om upphovsrätt till litterära och konstnärliga verk, vilket bl.a. innebär att citering är tillåten i enlighet med vad som anges i 22 § i nämnd lag. För att använda verket på ett sätt som inte medges direkt av svensk lag krävs särskild överenskommelse. This work is protected by the Swedish Act on Copyright in Literary and Artistic Works (1960:729). Citation is permitted in accordance with article 22 in said act. Any form of use that goes beyond what is permitted by Swedish copyright law, requires the written permission of FOI. FOI-R--4576--SE Sammanfattning IT-säkerhetsutvärderingar är ofta svåra att genomföra inom operativa industriella informations- och styrsystem (ICS) då de medför risk för avbrott, vilket kan få mycket stor konsekvens om tjänsten som ett system realiserar är samhällskritisk.
    [Show full text]
  • Philip Machanick
    MIPS2C programming from the machine up Philip Machanick MIPS2C: PROGRAMMING FROM THE MACHINE UP First edition, 2015 Minor corrections: March 2017, April 2019, October 2020 Copyright © Philip Machanick 2014, 2015, 2016, 2017, 2018, 2019, 2020 Published by Philip Machanick in the RAMpage Research imprint under an Attribution-NonCommercial 4.0 International (CC BY-NC 4.0) licence: http://creativecommons.org/licenses/by-nc/4.0/ The quick summary: free to use however you like but not for commercial purposes. SPIM documentation: Appendix E is copyright to the author as indicated on the first page and using this material does not imply endorsement by James Larus of this book. Picture credits: all illustrations are either by the author or from public domain sources, as acknowledged in the text. Author: Machanick, Philip, 1957- Title: Mips2C: programming from the machine up / Philip Machanick Edition: 1st ed. Publisher: Grahamstown, South Africa : RAMpage Research, 2015. ISBN: 978-0-8681048-7-4 (pbk.) LoC classification : QA76 Last typeset 27 October 2020 Preface HY THIS BOOK? Some years ago I took part in a panel discussion titled “Programming Early Considered Harmful” at the SIGCSE 2001 W conference [Hitchner et al. 2001]. Once of those present was Yale Patt, whom I had met briefly on a sabbatical at University of Michigan, where he was at the time a professor working in computer architecture. His role on the panel was to proselytise his book, Introduction to Computing Systems: From bits & gates to C & beyond [Patt and Patel 2013], which introduced programming from the low level up. I found the idea intriguing particularly as I also was concerned with the problem that students tend to stick with the first thing they learn.
    [Show full text]
  • Simmips a MIPS System Simulator
    SimMips A MIPS System Simulator ; ; Naoki Fujieday, Takefumi Miyoshiy z, and Kenji Kisey z yGraduate School of Information Science and Engineering, Tokyo Institute of Technology zJapan Science and Technology Agency (JST) fujieda, miyo @arch.cs.titech.ac.jp, [email protected] f g Abstract rectly, so it is a merit that users do not need to build a cross development environment. But now this merit gets smaller, We have developed SimMips, a simply coded MIPS sys- because building the environment is not so hard work as in tem simulator written in C++, to meet increasing demands the past by using tools like Buildroot [1]. Instead, the de- for embedded system education. In this paper, we show the merit of not being able to accept compiled binary files is simplicity of SimMips by describing its concept and imple- relatively growing. mentation. And we show the comprehensibility, taking ex- We have developed a system simulator named SimMips, amples of using it as a lecture material. We designed and whose target computer system includes a MIPS32 ISA pro- implemented SimMips considering the hardware organiza- cessor, as a practical simulator for embedded system edu- tion of the target computer system. We introduce a palm- cation and research. SimMips is implemented simply with top hardware embedded system named MieruPC which in- 4,500 lines in C++, and Linux runs on it without modifica- cludes a MIPS-like soft processor based on SimMips, to re- tions. Though there is a tradeoff between readability and veal flexibility of SimMips. simulation speed, processor speedup now enable simulators to satisfy high readability and sufficient speed at the same time.
    [Show full text]
  • SPIM & MIPS Programming
    Islamic University – Gaza Engineering Faculty Department of Computer Engineering ECOM 3010: Computer Architecture Discussion Lecture # 1 SPIM & MIPS Programming Eng. Eman R. Habib September, 2013 2 Computer Architecture Discussion SPIM Spim is a self-contained simulator that runs MIPS32 programs. It reads and executes assembly language programs written for this processor. Spim also provides a simple debugger and minimal set of operating system services. Spim does not execute binary (compiled) programs. Spim implements both a terminal and windows interfaces. On Microsoft Windows, Linux, and Mac OS X, the spim program offers a simple terminal interface and the QtSpim program provides the windowing interface. QtSpim The newest version of Spim is called QtSpim, and unlike all of the other version, it runs on Microsoft Windows, Mac OS X, and Linux—the same source code and the same user interface on all three platforms! QtSpim is the version of Spim that currently being actively maintained. It has a modern user interface, extensive help, and is consistent across all three platforms. When you open QtSpim, A window will open as shown in Figure 1. The window is divided into different sections: 1. The Register tabs display the content of all registers. 2. Buttons across the top are used to load and run a simulation 3. The Text tab displays the MIPS instructions loaded into memory to be executed. (From left-to-right, the memory address of an instruction, the contents of the address in hex, the actual MIPS instructions – where register numbers are used, the MIPS assembly that you wrote, and any comments you made in your code are displayed.) 4.
    [Show full text]
  • Exceptions and Interrupts (New Version1- by Robert Britton – [email protected])
    CHAPTER 9 Exceptions and Interrupts (New version1- by Robert Britton – [email protected]) How much do pirates pay for ear rings? A Buccaneer. 9.1 Introduction This update is a work in progress, so users of my book “MIPS Assembly Language Programming” http://www.pearsonhighered.com/educator/product/MIPS should check back occasionally to determine if they have the latest version. QtSpim is a new user interface for spim built on the. Qt is cross-platform, so the same user interface and same code will run on Windows, Linux, and Mac OS X. For more information go to: http://pages.cs.wisc.edu/~larus/spim.html . This new version is highly recommended. You have observed that under normal circumstances anytime the mouse button is pushed or the mouse is moved, or a key on the keyboard is depressed, your personal computer responds. The natural question to ask is, “What feature of a computer is needed to provide this kind of interactive response?” The answer is that the CPU must have the capability to respond to exceptions. Interrupts from external devices are classified as exceptions. Internal CPU situations such as an arithmetic overflow or address error are classified as exceptions. An exception is an event that initiates a change in the normal flow of program execution. Exception capability eliminates the need to constantly poll the keyboard and mouse. This is obviously an essential capability because if the computer were constantly polling external devices it would not be doing any other work. The key to building a computer system that provides superior processing throughput and provide an interactive response is to include within the hardware design some method for interrupting the program currently running when an exception occurs.
    [Show full text]
  • Improving Usability of Pedagogical Computer
    IMPROVING USABILITY OF PEDAGOGICAL COMPUTER EMULATION INTERFACES By Stephen D. Williams ([email protected]) Submitted to the Faculty of the College of Arts and Sciences of American University in Partial Fulfillment of the Requirements for the Degree of Master of Science In Computer Science Chair: Michael Black, PhD Mohammad Owrang Ojaboni, PhD Chris Powell, DM Dean of the College Date 2013 American University Washington, D.C. 20016 c COPYRIGHT by Stephen D. Williams ([email protected]) 2013 ALL RIGHTS RESERVED ii IMPROVING USABILITY OF PEDAGOGICAL COMPUTER EMULATION INTERFACES by Stephen D. Williams ([email protected]) ABSTRACT Computer emulations, simulating real or imagined computer systems, are a valuable tool to quickly gain understanding of computer architecture and software. Existing computer emulation systems offer useful but limited visualization and in- teraction. This paper addresses improving usability of pedagogical computer em- ulator interfaces with the application of published design principles informed by research into visuospatial ability. The results include a survey of promising tech- niques addressing similar problems and suggestions for application. Along with sup- porting work extending a publicly available Java-based PC emulator to enable use of the popular Processing visualization development environment, this provides a well-developed design and implementation framework for future improvements by interested parties. iii ACKNOWLEDGEMENTS I want to thank my committee for their time, diligence, and attention. I want to particularly thank Dr. Michael Black for attention, patience, flexibility, and enthusiasm for this subject. I appreciate the opportunity to be involved in an interesting project that promises to develop into an effective, useful, and fun asset to computer architecture, computer science, and human computer interaction education and practice.
    [Show full text]
  • TABLE DRIVEN ADAPTIVE, EFFECTIVELY HETEROGENEOUS MULTI-CORE ARCHITECTURE by SURPRIYA TIKE Bachelor of Science in Electronics
    TABLE DRIVEN ADAPTIVE, EFFECTIVELY HETEROGENEOUS MULTI-CORE ARCHITECTURE By SURPRIYA TIKE Bachelor of Science in Electronics and Telecommunication Pune University Pune, India 2007 Submitted to the Faculty of the Graduate College of the Oklahoma State University in partial fulfillment of the requirements for the Degree of MASTER OF SCIENCE December, 2011 TABLE DRIVEN ADAPTIVE, EFFECTIVELY HETEROGENEOUS MULTI-CORE ARCHITECTURE Thesis Approved: Dr. James E. Stine Jr. Thesis Adviser Dr. Chris Hutchens Dr. Louis G. Johnson Dr. Sheryl A. Tucker Dean of the Graduate College ii TABLE OF CONTENTS Chapter Page 1. INTRODUCTION .............................................................................................................. 1 2. BACKGROUND ................................................................................................................ 1 2.1. Processor based platforms ........................................................................................... 1 2.1.1. OpenSPARC ..................................................................................................... 1 2.1.2. SimpleScalar .................................................................................................... 2 2.1.3. SPIM ................................................................................................................ 2 2.1.4. Simics ............................................................................................................... 2 2.2. Other Related Work ...................................................................................................
    [Show full text]
  • Assemblers, Linkers, and the SPIM Simulator
    A APPENDIX Assemblers, Linkers, and the SPIM Simulator James R. Larus Microsoft Research Microsoft Fear of serious injury cannot alone justify suppression of free speech and assembly. Louis Brandeis Whitney v. California, 1927 A.1 Introduction A-3 A.2 Assemblers A-10 A.3 Linkers A-18 A.4 Loading A-19 A.5 Memory Usage A-20 A.6 Procedure Call Convention A-22 A.7 Exceptions and Interrupts A-33 A.8 Input and Output A-38 A.9 SPIM A-40 A.10 MIPS R2000 Assembly Language A-45 A.11 Concluding Remarks A-81 A.12 Exercises A-82 A.1 Introduction A.1 Encoding instructions as binary numbers is natural and efficient for computers. Humans, however, have a great deal of difficulty understanding and manipulating these numbers. People read and write symbols (words) much better than long sequences of digits. Chapter 2 showed that we need not choose between numbers and words because computer instructions can be represented in many ways. Humans can write and read symbols, and computers can execute the equivalent binary numbers. This appendix describes the process by which a human-readable program is translated into a form that a computer can execute, provides a few hints about writing assembly programs, and explains how to run these programs on SPIM, a simulator that executes MIPS programs. UNIX, Windows, and Mac OS X versions of the SPIM simulator are available on the CD. Assembly language is the symbolic representation of a computer’s binary machine language Binary rep- encoding—machine language. Assembly language is more readable than machine resentation used for communi- language because it uses symbols instead of bits.
    [Show full text]
  • Philip Machanick
    MIPS2C programming from the machine up Philip Machanick C part omitted from this printing MIPS2C: PROGRAMMING FROM THE MACHINE UP First edition, 2015 Minor corrections: March 2017, April 2019, October 2020 – re- formatted without C March 2018 Copyright © Philip Machanick 2014, 2015, 2016, 2017, 2018, 2019, 2020 Published by Philip Machanick in the RAMpage Research imprint under an Attribution-NonCommercial 4.0 International (CC BY-NC 4.0) licence: http://creativecommons.org/licenses/by-nc/4.0/ The quick summary: free to use however you like but not for commercial purposes. SPIM documentation: Appendix E is copyright to the author as indicated on the first page and using this material does not imply endorsement by James Larus of this book. Picture credits: all illustrations are either by the author or from public domain sources, as acknowledged in the text. Publication details apply to full version with C Author: Machanick, Philip, 1957- Title: Mips2C: programming from the machine up / Philip Machanick Edition: 1st ed. Publisher: Grahamstown, South Africa : RAMpage Research, 2015. ISBN: 978-0-8681048-7-4 (pbk.) LoC classification : QA76 Note: this printing differs slightly in layout and omits the C section so do not cite with ISBN. Last typeset 27 October 2020 Preface HY THIS BOOK? Some years ago I took part in a panel discussion titled “Programming Early Considered Harmful” at the SIGCSE 2001 W conference [Hitchner et al. 2001]. Once of those present was Yale Patt, whom I had met briefly on a sabbatical at University of Michigan, where he was at the time a professor working in computer architecture.
    [Show full text]