See MIPS Run -  Dominic Sweetman

See MIPS Run (eBook)

eBook Download: EPUB | PDF
2010 | 2. Auflage
512 Seiten
Elsevier Science (Verlag)
978-0-08-052523-5 (ISBN)
63,95 € inkl. MwSt
Systemvoraussetzungen
63,70 € inkl. MwSt
Systemvoraussetzungen
  • Download sofort lieferbar
  • Zahlungsarten anzeigen
This second edition is not only a thorough update of the first edition, it is also a marriage of the best-known RISC architecture--MIPS--with the best-known open-source OS--Linux. The first part of the book begins with MIPS design principles and then describes the MIPS instruction set and programmers' resources. It uses the MIPS32 standard as a baseline (the 1st edition used the R3000) from which to compare all other versions of the architecture and assumes that MIPS64 is the main option. The second part is a significant change from the first edition. It provides concrete examples of operating system low level code, by using Linux as the example operating system. It describes how Linux is built on the foundations the MIPS hardware provides and summarizes the Linux application environment, describing the libraries, kernel device-drivers and CPU-specific code. It then digs deep into application code and library support, protection and memory management, interrupts in the Linux kernel and multiprocessor Linux.

Sweetman has revised his best-selling MIPS bible for MIPS programmers, embedded systems designers, developers and programmers, who need an in-depth understanding of the MIPS architecture and specific guidance for writing software for MIPS-based systems, which are increasingly Linux-based.

* Completely new material offers the best explanation available on how Linux runs on real hardware.

* Provides a complete, updated and easy-to-use guide to the MIPS instruction set using the MIPS32 standard as the baseline architecture with the MIPS64 as the main option.

* Retains the same engaging writing style that made the first edition so readable, reflecting the authors 20+ years experience in designing systems based on the MIPS architecture.
See MIPS Run, Second Edition, is not only a thorough update of the first edition, it is also a marriage of the best-known RISC architecture--MIPS--with the best-known open-source OS--Linux. The first part of the book begins with MIPS design principles and then describes the MIPS instruction set and programmers' resources. It uses the MIPS32 standard as a baseline (the 1st edition used the R3000) from which to compare all other versions of the architecture and assumes that MIPS64 is the main option. The second part is a significant change from the first edition. It provides concrete examples of operating system low level code, by using Linux as the example operating system. It describes how Linux is built on the foundations the MIPS hardware provides and summarizes the Linux application environment, describing the libraries, kernel device-drivers and CPU-specific code. It then digs deep into application code and library support, protection and memory management, interrupts in the Linux kernel and multiprocessor Linux. Sweetman has revised his best-selling MIPS bible for MIPS programmers, embedded systems designers, developers and programmers, who need an in-depth understanding of the MIPS architecture and specific guidance for writing software for MIPS-based systems, which are increasingly Linux-based. Completely new material offers the best explanation available on how Linux runs on real hardware Provides a complete, updated and easy-to-use guide to the MIPS instruction set using the MIPS32 standard as the baseline architecture with the MIPS64 as the main option Retains the same engaging writing style that made the first edition so readable, reflecting the authors 20+ years experience in designing systems based on the MIPS architecture

Front Cover 1
See MIPS® Run 4
Copyright Page 5
Contents 8
Foreword 6
Preface 16
Style and Limits 19
Conventions 19
Acknowledgments 20
Chapter 1. RISCs and MIPS Architectures 22
1.1 Pipelines 23
1.2 The MIPS Five-Stage Pipeline 26
1.3 RISC and CISC 28
1.4 Great MIPS Chips of the Past and Present 29
1.5 MIPS Compared with CISC Architectures 44
Chapter 2. MIPS Architecture 50
2.1 A Flavor of MIPS Assembly Language 54
2.2 Registers 55
2.3 Integer Multiply Unit and Registers 59
2.4 Loading and Storing: Addressing Modes 60
2.5 Data Types in Memory and Registers 60
2.6 Synthesized Instructions in Assembly Language 63
2.7 MIPS I to MIPS64 ISAs: 64-Bit (and Other) Extensions 64
2.8 Basic Address Space 68
2.9 Pipeline Visibility 71
Chapter 3. Coprocessor 0: MIPS Processor Control 74
3.1 CPU Control Instructions 76
3.2 Which Registers Are RelevantWhen? 79
3.3 CPU Control Registers and Their Encoding 80
3.4 CP0 Hazards—A Trap for the Unwary 96
Chapter 4. How CachesWork on MIPS Processors 100
4.1 Caches and Cache Management 100
4.2 How CachesWork 101
4.3 Write-Through Caches in Early MIPS CPUs 104
4.4 Write-Back Caches in MIPS CPUs 104
4.5 Other Choices in Cache Design 105
4.6 Managing Caches 106
4.7 L2 and L3 Caches 109
4.8 Cache Configurations for MIPS CPUs 109
4.9 Programming MIPS32/64 Caches 111
4.10 Cache Efficiency 119
4.11 Reorganizing Software to Influence Cache Efficiency 121
4.12 Cache Aliases 123
Chapter 5. Exceptions, Interrupts, and Initialization 126
5.1 Precise Exceptions 128
5.2 When Exceptions Happen 130
5.3 Exception Vectors:Where Exception Handling Starts 130
5.4 Exception Handling: Basics 134
5.5 Returning from an Exception 135
5.6 Nesting Exceptions 135
5.7 An Exception Routine 136
5.8 Interrupts 136
5.9 Starting Up 145
5.10 Emulating Instructions 149
Chapter 6. Low-level Memory Management and the TLB 152
6.1 The TLB/MMU Hardware andWhat It Does 152
6.2 TLB/MMU Registers Described 153
6.3 TLB/MMU Control Instructions 161
6.4 Programming the TLB 162
6.5 Hardware-Friendly Page Tables and Refill Mechanism 164
6.6 Everyday Use of the MIPS TLB 168
6.7 Memory Management in a Simpler OS 170
Chapter 7. Floating-Point Support 172
7.1 A Basic Description of Floating Point 172
7.2 The IEEE 754 Standard and Its Background 173
7.3 How IEEE Floating-Point Numbers Are Stored 175
7.4 MIPS Implementation of IEEE 754 179
7.5 Floating-Point Registers 180
7.6 Floating-Point Exceptions/Interrupts 182
7.7 Floating-Point Control: The Control/Status Register 182
7.8 Floating-Point Implementation Register 186
7.9 Guide to FP Instructions 187
7.10 Paired-Single Floating-Point Instructions and the MIPS-3D ASE 194
7.11 Instruction Timing Requirements 200
7.12 Instruction Timing for Speed 200
7.13 Initialization and Enabling on Demand 201
7.14 Floating-Point Emulation 202
Chapter 8. Complete Guide to the MIPS Instruction Set 204
8.1 A Simple Example 204
8.2 Assembly Instructions andWhat They Mean 206
8.3 Floating-Point Instructions 231
8.4 Differences in MIPS32/64 Release 1 237
8.5 Peculiar Instructions and Their Purposes 239
8.6 Instruction Encodings 254
8.7 Instructions by Functional Group 273
Chapter 9. Reading MIPS Assembly Language 284
9.1 A Simple Example 285
9.2 Syntax Overview 289
9.3 General Rules for Instructions 290
9.4 Addressing Modes 292
9.5 Object File and Memory Layout 295
Chapter 10. Porting Software to the MIPS Architecture 300
10.1 Low-Level Software for MIPS Applications: A Checklist of Frequently Encountered Problems 301
10.2 Endianness:Words, Bytes, and Bit Order 302
10.3 Trouble with Visible Caches 317
10.4 Memory Access Ordering and Reordering 322
10.5 Writing it in C 326
Chapter 11. MIPS Software Standards (ABIs) 332
11.1 Data Representations and Alignment 333
11.2 Argument Passing and Stack Conventions for MIPS ABIs 340
Chapter 12. Debugging MIPS Designs—Debug and Profiling Features 360
12.1 The “EJTAG” On-chip Debug Unit 362
12.2 Pre-EJTAG Debug Support—Break Instruction and CP0 Watchpoints 379
12.3 PDtrace 380
12.4 Performance Counters 381
Chapter 13. GNU/Linux from Eight Miles High 384
13.1 Components 385
13.2 Layering in the Kernel 389
Chapter 14. How Hardware and SoftwareWork Together 392
14.1 The Life and Times of an Interrupt 392
14.2 Threads, Critical Regions, and Atomicity 396
14.3 What Happens on a System Call 399
14.4 How Addresses Get Translated in Linux/MIPS Systems 401
Chapter 15. MIPS Specific Issues in the Linux Kernel 420
15.1 Explicit Cache Management 420
15.2 CP0 Pipeline Hazards 424
15.3 Multiprocessor Systems and Coherent Caches 424
15.4 Demon Tweaks for a Critical Routine 427
Chapter 16. Linux Application Code, PIC, and Libraries 430
16.1 How Link Units Get into a Program 432
16.2 Global Offset Table (GOT) Organization 433
Appendix A. MIPS Multithreading 436
A.1 What Is Multithreading? 436
A.2 Why Is MT Useful? 438
A.3 How to Do Multithreading for MIPS 438
A.4 MT in Action 442
Appendix B. Other Optional Extensions to the MIPS Instruction Set 446
B.1 MIPS16 and MIPS16e ASEs 446
B.2 The MIPS DSP ASE 449
B.3 The MDMX ASE 450
MIPS Glossary 452
References 498
Books and Articles 498
Online Resources 499
Index 502

Erscheint lt. Verlag 8.7.2010
Sprache englisch
Themenwelt Sachbuch/Ratgeber
Mathematik / Informatik Informatik Betriebssysteme / Server
Mathematik / Informatik Informatik Theorie / Studium
Technik Elektrotechnik / Energietechnik
ISBN-10 0-08-052523-7 / 0080525237
ISBN-13 978-0-08-052523-5 / 9780080525235
Haben Sie eine Frage zum Produkt?
EPUBEPUB (Adobe DRM)
Größe: 9,0 MB

Kopierschutz: Adobe-DRM
Adobe-DRM ist ein Kopierschutz, der das eBook vor Mißbrauch schützen soll. Dabei wird das eBook bereits beim Download auf Ihre persönliche Adobe-ID autorisiert. Lesen können Sie das eBook dann nur auf den Geräten, welche ebenfalls auf Ihre Adobe-ID registriert sind.
Details zum Adobe-DRM

Dateiformat: EPUB (Electronic Publication)
EPUB ist ein offener Standard für eBooks und eignet sich besonders zur Darstellung von Belle­tristik und Sach­büchern. Der Fließ­text wird dynamisch an die Display- und Schrift­größe ange­passt. Auch für mobile Lese­geräte ist EPUB daher gut geeignet.

Systemvoraussetzungen:
PC/Mac: Mit einem PC oder Mac können Sie dieses eBook lesen. Sie benötigen eine Adobe-ID und die Software Adobe Digital Editions (kostenlos). Von der Benutzung der OverDrive Media Console raten wir Ihnen ab. Erfahrungsgemäß treten hier gehäuft Probleme mit dem Adobe DRM auf.
eReader: Dieses eBook kann mit (fast) allen eBook-Readern gelesen werden. Mit dem amazon-Kindle ist es aber nicht kompatibel.
Smartphone/Tablet: Egal ob Apple oder Android, dieses eBook können Sie lesen. Sie benötigen eine Adobe-ID sowie eine kostenlose App.
Geräteliste und zusätzliche Hinweise

Zusätzliches Feature: Online Lesen
Dieses eBook können Sie zusätzlich zum Download auch online im Webbrowser lesen.

Buying eBooks from abroad
For tax law reasons we can sell eBooks just within Germany and Switzerland. Regrettably we cannot fulfill eBook-orders from other countries.

PDFPDF (Adobe DRM)

Kopierschutz: Adobe-DRM
Adobe-DRM ist ein Kopierschutz, der das eBook vor Mißbrauch schützen soll. Dabei wird das eBook bereits beim Download auf Ihre persönliche Adobe-ID autorisiert. Lesen können Sie das eBook dann nur auf den Geräten, welche ebenfalls auf Ihre Adobe-ID registriert sind.
Details zum Adobe-DRM

Dateiformat: PDF (Portable Document Format)
Mit einem festen Seiten­layout eignet sich die PDF besonders für Fach­bücher mit Spalten, Tabellen und Abbild­ungen. Eine PDF kann auf fast allen Geräten ange­zeigt werden, ist aber für kleine Displays (Smart­phone, eReader) nur einge­schränkt geeignet.

Systemvoraussetzungen:
PC/Mac: Mit einem PC oder Mac können Sie dieses eBook lesen. Sie benötigen eine Adobe-ID und die Software Adobe Digital Editions (kostenlos). Von der Benutzung der OverDrive Media Console raten wir Ihnen ab. Erfahrungsgemäß treten hier gehäuft Probleme mit dem Adobe DRM auf.
eReader: Dieses eBook kann mit (fast) allen eBook-Readern gelesen werden. Mit dem amazon-Kindle ist es aber nicht kompatibel.
Smartphone/Tablet: Egal ob Apple oder Android, dieses eBook können Sie lesen. Sie benötigen eine Adobe-ID sowie eine kostenlose App.
Geräteliste und zusätzliche Hinweise

Buying eBooks from abroad
For tax law reasons we can sell eBooks just within Germany and Switzerland. Regrettably we cannot fulfill eBook-orders from other countries.

Mehr entdecken
aus dem Bereich
Das Praxisbuch für Administratoren und DevOps-Teams

von Axel Miesen

eBook Download (2022)
Rheinwerk Computing (Verlag)
39,90