Advanced Design and Implementation of Virtual Machines
Autor Xiao-Feng Lien Limba Engleză Paperback – 30 iun 2020
This book takes a holistic approach to the design of VM architecture, with contents organized into a consistent framework, introducing topics and algorithms in an easily understood step by step process. It focuses on the critical aspects of VM design, which are often overlooked in other works, such as runtime helpers, stack unwinding and native interface. The algorithms are fully illustrated in figures and implemented in easy to digest code snippets, making the abstract concepts tangible and programmable for system software developers.
Toate formatele și edițiile | Preț | Express |
---|---|---|
Paperback (1) | 289.29 lei 43-57 zile | |
CRC Press – 30 iun 2020 | 289.29 lei 43-57 zile | |
Hardback (1) | 863.28 lei 43-57 zile | |
CRC Press – 20 dec 2016 | 863.28 lei 43-57 zile |
Preț: 289.29 lei
Preț vechi: 361.61 lei
-20% Nou
Puncte Express: 434
Preț estimativ în valută:
55.36€ • 57.51$ • 45.99£
55.36€ • 57.51$ • 45.99£
Carte tipărită la comandă
Livrare economică 03-17 februarie 25
Preluare comenzi: 021 569.72.76
Specificații
ISBN-13: 9780367574031
ISBN-10: 0367574039
Pagini: 464
Dimensiuni: 178 x 254 x 25 mm
Greutate: 0.82 kg
Ediția:1
Editura: CRC Press
Colecția CRC Press
ISBN-10: 0367574039
Pagini: 464
Dimensiuni: 178 x 254 x 25 mm
Greutate: 0.82 kg
Ediția:1
Editura: CRC Press
Colecția CRC Press
Cuprins
Basics of Virtual Machines: Introduction of the Virtual Machine. Inside of a Virtual Machine. Data Structures in a Virtual Machine.
Design of Virtual Machines: Design of Execution Engine. Design of Garbage Collection. Design of Threading.
Supports in Virtual Machine: Native Interface. Stack Unwinding. Garbage Collection Support. Runtime-Helpers. Exception-Throwing. Finalization and Weak References. Modularity Design of VM.
Optimizations of Garbage Collection: Optimizing Garbage Collection for Throughput. Optimizing Garbage Collection for Scalability. Optimizing Garbage Collection for Responsiveness. Concurrent Moving Collection.
Optimizations of Thread Interactions: Optimizing Monitor Performance. Hardware Transactional Memory (HTM)-Based Design.
Design of Virtual Machines: Design of Execution Engine. Design of Garbage Collection. Design of Threading.
Supports in Virtual Machine: Native Interface. Stack Unwinding. Garbage Collection Support. Runtime-Helpers. Exception-Throwing. Finalization and Weak References. Modularity Design of VM.
Optimizations of Garbage Collection: Optimizing Garbage Collection for Throughput. Optimizing Garbage Collection for Scalability. Optimizing Garbage Collection for Responsiveness. Concurrent Moving Collection.
Optimizations of Thread Interactions: Optimizing Monitor Performance. Hardware Transactional Memory (HTM)-Based Design.
Notă biografică
Xiao-Feng Li has been working with Intel for 15 years, with extensive technical experience in parallel computing, operating system, compiler and runtime technologies. He was the major contributor to the JVM of Apache Harmony and the creator of a micro-kernel VM that later became Intel Micro Runtime. Xiao-Feng built and led a software lab on runtime technologies in Intel and published 20 academic papers in the related areas. Xiao-Feng holds a PhD degree in computer science.
Descriere
Virtual machines have been critical software systems for decades and now platforms such as Apple iOS, Google Android, and Microsoft Windows Phone all need them as primary application execution engines. This book provides a systematic description that combines high-level design and low-level implementations and integrates advanced academic topics