|Eingestellt in Kategorie:
Dieses Angebot wurde vom Verkäufer am Fr, 20. Sep um 06:18 beendet, da der Artikel nicht mehr verfügbar ist.
Versand und LieferungMehr zu Versand und Rückgabe finden Sie unter „Weitere Details“.
Ähnlichen Artikel verkaufen?

Einführung in die 64-Bit Intel Assemblersprache Programmierung für Linux

by Seyfarth, Ray | PB | Acceptable
ThriftBooks
  • (3700347)
  • Angemeldet als gewerblicher Verkäufer
US $8,69
Ca.CHF 7,35
Artikelzustand:
Akzeptabel
Readable copy. Pages may have considerable notes/highlighting. ~ ThriftBooks: Read More, Spend ... Mehr erfahrenÜber den Artikelzustand
    Schnell, bevor er weg ist. 1 Person beobachtet diesen Artikel.
    Wurde auch von anderen Nutzern gekauft. Schon 1 verkauft.
    Versand:
    Kostenlos Economy Shipping.
    Standort: Aurora, Illinois, USA
    Lieferung:
    Lieferung zwischen Sa, 28. Sep und Di, 1. Okt nach 43230 bei heutigem Zahlungseingang
    Wir wenden ein spezielles Verfahren zur Einschätzung des Liefertermins an – in diese Schätzung fließen Faktoren wie die Entfernung des Käufers zum Artikelstandort, der gewählte Versandservice, die bisher versandten Artikel des Verkäufers und weitere ein. Insbesondere während saisonaler Spitzenzeiten können die Lieferzeiten abweichen.
    Rücknahme:
    30 Tage Rückgabe. Verkäufer zahlt Rückversand.
    Zahlungen:
        

    Sicher einkaufen

    eBay-Käuferschutz
    Geld zurück, wenn etwas mit diesem Artikel nicht stimmt. Mehr erfahreneBay-Käuferschutz - wird in neuem Fenster oder Tab geöffnet
    Der Verkäufer ist für dieses Angebot verantwortlich.
    eBay-Artikelnr.:196188152275
    Zuletzt aktualisiert am 15. Mai. 2024 07:16:39 MESZAlle Änderungen ansehenAlle Änderungen ansehen

    Artikelmerkmale

    Artikelzustand
    Akzeptabel
    Buch mit deutlichen Gebrauchsspuren. Der Einband kann einige Beschädigungen aufweisen, ist aber in seiner Gesamtheit noch intakt. Die Bindung ist möglicherweise leicht beschädigt, in ihrer Gesamtheit aber noch intakt. In den Randbereichen wurden evtl. Notizen gemacht, der Text kann Unterstreichungen und Markierungen enthalten, es fehlen aber keine Seiten und es ist alles vorhanden, was für die Lesbarkeit oder das Verständnis des Textes notwendig ist. Genauere Einzelheiten sowie eine Beschreibung eventueller Mängel entnehmen Sie bitte dem Angebot des Verkäufers. Alle Zustandsdefinitionen ansehenwird in neuem Fenster oder Tab geöffnet
    Hinweise des Verkäufers
    “Readable copy. Pages may have considerable notes/highlighting. ~ ThriftBooks: Read More, Spend ...
    Binding
    Paperback
    Weight
    1 lbs
    Product Group
    Book
    IsTextBook
    No
    ISBN
    9781478119203
    Subject Area
    Computers
    Publication Name
    Introduction to 64 Bit Intel Assembly Language Programming for Linux
    Publisher
    CreateSpace
    Item Length
    9.2 in
    Subject
    Programming Languages / Assembly Language
    Publication Year
    2012
    Type
    Textbook
    Format
    Trade Paperback
    Language
    English
    Item Height
    0.7 in
    Author
    Ray Seyfarth
    Item Weight
    19.6 Oz
    Item Width
    6.1 in
    Number of Pages
    308 Pages

    Über dieses Produkt

    Product Identifiers

    Publisher
    CreateSpace
    ISBN-10
    1478119209
    ISBN-13
    9781478119203
    eBay Product ID (ePID)
    117213394

    Product Key Features

    Number of Pages
    308 Pages
    Language
    English
    Publication Name
    Introduction to 64 Bit Intel Assembly Language Programming for Linux
    Publication Year
    2012
    Subject
    Programming Languages / Assembly Language
    Type
    Textbook
    Author
    Ray Seyfarth
    Subject Area
    Computers
    Format
    Trade Paperback

    Dimensions

    Item Height
    0.7 in
    Item Weight
    19.6 Oz
    Item Length
    9.2 in
    Item Width
    6.1 in

    Additional Product Features

    Edition Number
    2
    Intended Audience
    Trade
    Synopsis
    This is the second edition of this assembly language programming textbook introducing programmers to 64 bit Intel assembly language. The primary addition to the second edition is the discussion of the free integrated development environment, ebe, designed by the author specifically to meet the needs of assembly language programmers. Ebe is a Python program which uses the Tkinter and Pwm widget sets to implement a GUI environment consisting of a source window, a data window, a registers window, a console window, a terminal window and a project window. The source window includes a full-featured text editor with convenient controls for assembling, linking and debugging a program. The project facility allows a program to be built from C source code files and assembly source files. Assembly is performed automatically using the yasm assembler and linking is performed with ld or gcc. Debugging operates by transparently sending commands into the gdb debugger while automatically displaying registers and variables after each debugging step. Additional information about ebe can be found at http: //www.rayseyfarth.com. The book is intended as a first assembly language book for programmers experienced in high level programming in a language like C or C++. The assembly programming is performed using the yasm assembler automatically from the ebe IDE under the Linux operating system. The book primarily teaches how to write assembly code compatible with C programs. The reader will learn to call C functions from assembly language and to call assembly functions from C in addition to writing complete programs in assembly language. The gcc compiler is used internally to compile C programs. The book starts early emphasizing using ebe to debug programs, along with teaching equivalent commands using gdb. Being able to single-step assembly programs is critical in learning assembly programming. Ebe makes this far easier than using gdb directly. Highlights of the book include doing input/output programming using the Linux system calls and the C library, implementing data structures in assembly language and high performance assembly language programming. Early chapters of the book rely on using the debugger to observe program behavior. After a chapter on functions, the user is prepared to use printf and scanf from the C library to perform I/O. The chapter on data structures covers singly linked lists, doubly linked circular lists, hash tables and binary trees. Test programs are presented for all these data structures. There is a chapter on optimization techniques and 3 chapters on specific optimizations. One chapter covers how to efficiently count the 1 bits in an array with the most efficient version using the recently-introduced popcnt instruction. Another chapter covers using SSE instructions to create an efficient implementation of the Sobel filtering algorithm. The final high performance programming chapter discusses computing correlation between data in 2 arrays. There is an AVX implementation which achieves 20.5 GFLOPs on a single core of a Core i7 CPU. A companion web site, http: //www.rayseyfarth.com, has a collection of PDF slides which instructors can use for in-class presentations and source code for sample programs., This is the second edition of this assembly language programming textbook introducing programmers to 64 bit Intel assembly language. The primary addition to the second edition is the discussion of the free integrated development environment, ebe, designed by the author specifically to meet the needs of assembly language programmers. Ebe is a Python program which uses the Tkinter and Pwm widget sets to implement a GUI environment consisting of a source window, a data window, a registers window, a console window, a terminal window and a project window. The source window includes a full-featured text editor with convenient controls for assembling, linking and debugging a program. The project facility allows a program to be built from C source code files and assembly source files. Assembly is performed automatically using the yasm assembler and linking is performed with ld or gcc. Debugging operates by transparently sending commands into the gdb debugger while automatically displaying registers and variables after each debugging step. Additional information about ebe can be found at http://www.rayseyfarth.com.The book is intended as a first assembly language book for programmers experienced in high level programming in a language like C or C++. The assembly programming is performed using the yasm assembler automatically from the ebe IDE under the Linux operating system. The book primarily teaches how to write assembly code compatible with C programs. The reader will learn to call C functions from assembly language and to call assembly functions from C in addition to writing complete programs in assembly language. The gcc compiler is used internally to compile C programs.The book starts early emphasizing using ebe to debug programs, along with teaching equivalent commands using gdb. Being able to single-step assembly programs is critical in learning assembly programming. Ebe makes this far easier than using gdb directly.Highlights of the book include doing input/output programming using the Linux system calls and the C library, implementing data structures in assembly language and high performance assembly language programming.Early chapters of the book rely on using the debugger to observe program behavior. After a chapter on functions, the user is prepared to use printf and scanf from the C library to perform I/O. The chapter on data structures covers singly linked lists, doubly linked circular lists, hash tables and binary trees. Test programs are presented for all these data structures. There is a chapter on optimization techniques and 3 chapters on specific optimizations. One chapter covers how to efficiently count the 1 bits in an array with the most efficient version using the recently-introduced popcnt instruction. Another chapter covers using SSE instructions to create an efficient implementation of the Sobel filtering algorithm. The final high performance programming chapter discusses computing correlation between data in 2 arrays. There is an AVX implementation which achieves 20.5 GFLOPs on a single core of a Core i7 CPU.A companion web site, http://www.rayseyfarth.com, has a collection of PDF slides which instructors can use for in-class presentations and source code for sample programs.

    Artikelbeschreibung des Verkäufers

    ThriftBooks

    ThriftBooks

    99% positive Bewertungen
    18.3 Mio. Artikel verkauft
    Shop besuchenKontakt
    Mitglied seit Mär 2015
    Antwortet meist innerhalb 24 Stunden
    ThriftBooks is a fully independent seller of used books, having sold more than 160 million used and new books since we started in 2003. Each quality used book is sorted, graded, shelved and shipped by ...
    Mehr anzeigen

    Detaillierte Verkäuferbewertungen

    Durchschnitt in den letzten 12 Monaten
    Genaue Beschreibung
    4.9
    Angemessene Versandkosten
    5.0
    Lieferzeit
    5.0
    Kommunikation
    4.9
    Angemeldet als gewerblicher Verkäufer

    Verkäuferbewertungen (5'354'626)