|Listed in category:
This listing was ended by the seller on Fri, 20 Sep at 12:18 PM because the item is no longer available.
Postage and deliveryClick "see details" for additional shipping and returns information.
Have one to sell?

Introduction to 64 Bit Intel Assembly Language Programming for Linux

by Seyfarth, Ray | PB | Acceptable
US $8.69
ApproximatelyPHP 488.72
Condition:
Acceptable
Readable copy. Pages may have considerable notes/highlighting. ~ ThriftBooks: Read More, Spend ... Read moreabout condition
    Other people bought this. 1 has already sold.
    Hurry before it's gone. 1 person is watching this item.
    Postage:
    Free Economy Shipping.
    Located in: Aurora, Illinois, United States
    Delivery:
    Estimated between Sat, 28 Sep and Tue, 1 Oct to 43230
    Delivery time is estimated using our proprietary method which is based on the buyer's proximity to the item location, the postage service selected, the seller's postage history, and other factors. Delivery times may vary, especially during peak periods.
    Returns:
    30 days return. Seller pays for return shipping.
    Coverage:
    Read item description or contact seller for details. See all detailsSee all details on coverage
    (Not eligible for eBay purchase protection programmes)

    Shop with confidence

    eBay Premium Service
    Trusted seller, fast shipping, and easy returns. Learn more- Top Rated Plus - opens in a new window or tab
    Seller assumes all responsibility for this listing.
    eBay item number:196188152275
    Last updated on May 15, 2024 13:16:39 PHTView all revisionsView all revisions

    Item specifics

    Condition
    Acceptable
    A book with obvious wear. May have some damage to the cover but integrity still intact. The binding may be slightly damaged but integrity is still intact. Possible writing in margins, possible underlining and highlighting of text, but no missing pages or anything that would compromise the legibility or understanding of the text. See all condition definitionsopens in a new window or tab
    Seller Notes
    “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

    About this product

    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.

    Item description from the seller

    ThriftBooks

    ThriftBooks

    99% positive feedback
    18.3M items sold
    Joined Mar 2015
    Usually responds within 24 hours
    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 ...
    See more

    Detailed Seller Ratings

    Average for the last 12 months
    Accurate description
    4.9
    Reasonable shipping cost
    5.0
    Shipping speed
    5.0
    Communication
    4.9

    Seller feedback (5,355,191)