电子文档交易市场
安卓APP | ios版本
电子文档交易市场
安卓APP | ios版本
换一换
首页 金锄头文库 > 资源分类 > DOC文档下载
分享到微信 分享到微博 分享到QQ空间

c++内存算法

  • 资源ID:89122749       资源大小:5.82MB        全文页数:333页
  • 资源格式: DOC        下载积分:12金贝
快捷下载 游客一键下载
账号登录下载
微信登录下载
三方登录下载: 微信开放平台登录   支付宝登录   QQ登录  
二维码
微信扫一扫登录
下载资源需要12金贝
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
如填写123,账号就是123,密码也是123。
支付方式: 支付宝    微信支付   
验证码:   换一换

 
账号:
密码:
验证码:   换一换
  忘记密码?
    
1、金锄头文库是“C2C”交易模式,即卖家上传的文档直接由买家下载,本站只是中间服务平台,本站所有文档下载所得的收益全部归上传人(卖家)所有,作为网络服务商,若您的权利被侵害请及时联系右侧客服;
2、如你看到网页展示的文档有jinchutou.com水印,是因预览和防盗链等技术需要对部份页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有jinchutou.com水印标识,下载后原文更清晰;
3、所有的PPT和DOC文档都被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;下载前须认真查看,确认无误后再购买;
4、文档大部份都是可以预览的,金锄头文库作为内容存储提供商,无法对各卖家所售文档的真实性、完整性、准确性以及专业性等问题提供审核和保证,请慎重购买;
5、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据;
6、如果您还有什么不清楚的或需要我们协助,可以点击右侧栏的客服。
下载须知 | 常见问题汇总

c++内存算法

Chapter 1 Memory Management Mechanisms11.1 Overview11.2 Mechanism Versus Policy11.3 Memory Hierarchy31.4 Address Lines and Buses61.5 Intel Pentium Architecture81.5.1 Real Mode Operation111.5.2 Protected Mode Operation151.5.2.1 Protected Mode Paging211.5.2.2 Paging as Protection251.5.2.3 Addresses: Logical, Linear, and Physical261.5.2.4 Page Frames and Pages271.6 Closing Thoughts331.7 References34Chapter 2: Memory Management Policies352.1 Overview352.2 Case Study: MS-DOS352.2.1 DOS Segmentation and Paging362.2.2 DOS Memory Map362.2.3 Memory Usage382.2.4 Example: A Simple Video Driver392.2.5 Example: Usurping DOS412.2.6 Jumping the 640KB Hurdle452.3 Case Study: MMURTL482.3.1 Background and Design Goals482.3.2 MMURTL and Segmentation492.3.3 Paging Variations512.3.4 MMURTL and Paging512.3.5 Memory Allocation532.4 Case Study: Linux552.4.1 History and MINIX552.4.2 Design Goals and Features552.4.3 Linux and Segmentation562.4.4 Linux and Paging582.4.5 Page Fault Handling622.4.6 Memory Allocation622.4.7 Memory Usage662.4.8 Example: Siege Warfare672.4.9 Example: Siege Warfare, More Treachery712.5 Case Study: Windows762.5.1 Historical Forces762.5.2 Memory Map Overview792.5.3 Windows and Segmentation812.5.3.1 Special Weapons and Tactics822.5.3.2 Crashing Windows with a Keystroke832.5.3.3 Reverse Engineering the GDT842.5.4 Windows and Paging862.5.4.1 Linear Address Space Taxonomy862.5.4.2 Musical Chairs for Pages882.5.4.3 Memory Protection892.5.4.4 Demand Paging902.5.5 Memory Allocation912.5.6 Memory Usage942.5.7 Turning Off Paging972.5.8 Example: Things That Go Thunk in the Night982.6 Closing Thoughts1012.7 References1022.7.1 Books and Articles1022.7.2 Web Sites103Chapter 3: High-Level Services1053.1 View from 10,000 Feet1053.2 Compiler-Based Allocation1063.2.1 Data Section1093.2.2 Code Section1123.2.3 Stack1133.2.3.1 Activation Records1153.2.3.2 Scope1213.2.3.3 Static or Dynamic?1273.3 Heap Allocation1273.3.1 System Call Interface1283.3.2 The Heap1313.3.2.1 Manual Memory Management1323.3.2.2 Example: C Standard Library Calls1333.3.2.3 Automatic Memory Management1353.3.2.4 Example: The BDW Conservative Garbage Collector1363.3.2.5 Manual Versus Automatic?1383.4 The Evolution of Languages1423.4.1 Language Features1633.4.2 Virtual Machine Architecture1653.4.3 Java Memory Management1663.5 Memory Management: The Three-layer Cake1723.6 References173Chapter 4: Manual Memory Management1754.0 Replacements for malloc() and free()1754.1 System Call Interface and Porting Issues1764.2 Keep It Simple.Stupid!1784.3 Measuring Performance1784.3.1 The Ultimate Measure: Time1794.3.2 ANSI and Native Time Routines1804.3.3 Testing Methodology1854.4 Indexing: The General Approach1894.5 malloc() Version 1: Bitmapped Allocation1904.5.1 Theory1904.5.2 Implementation1914.5.2.1 tree.cpp1924.5.2.2 bitmap.cpp1984.5.2.3 memmgr.cpp2024.5.2.4 mallocV1.cpp2064.5.2.5 perform.cpp2084.5.2.6 driver.cpp2084.5.2.7 Tests2094.5.3 Trade-Offs2154.6 malloc() Version 2: Sequential Fit2154.6.1 Theory2164.6.2 Implementation2184.6.2.1 memmgr.cpp2184.6.2.2 mallocV2.cpp2284.6.2.3 driver.cpp2294.6.3 Tests2304.6.4 Trade-Offs2324.7 malloc() Version 3: Segregated Lists2334.7.1 Theory2334.7.2 Implementation2344.7.2.2 memmgr.cpp2344.7.2.3 mallocV3.cpp2434.7.3 Tests2444.7.4 Trade-Offs2484.8 Performance Comparison248Chapter 5: Automatic Memory Management2505.1 Garbage Collection Taxonomy2505.2 malloc() Version 4: Reference Counting2515.2.1 Theory2515.2.2 Implementation2535.2.2.1 driver.cpp2535.2.2.2 mallocV4.cpp2555.2.2.3 perform.cpp2565.2.2.4 memmgr.cpp2585.2.3 Tests2695.2.4 Trade-Offs2725.3 malloc() Version 5: Mark-Sweep2745.3.1 Theory2745.3.2 Implementation2775.3.2.1 driver.cpp2775.3.2.2 mallocV5.cpp2795.3.2.3 perform.cpp2805.3.2.4 memmgr.cpp2825.3.3 Tests2975.4 Performance Comparison3035.5 Potential Additions3035.5.1 Object Format Assumptions3045.5.2 Variable Heap Size3055.5.3 Indirect Addressing3065.5.4 Real-Time Behavior3075.5.5 Life Span Characteristics3085.5.6 Multithreaded Support309Chapter 6: Miscellaneous Topics3116.1 Suballocators3116.2 Monolithic Versus Microkernel Architectures3156.3 Closing Thoughts318Index321Organization334Chapter 1 - Memory Management Mechanisms334Chapter 2 - Memory Management Policies334Chapter 3 - High-Level Services334Chapter 4 - Manual Memory Management335Chapter 5 - Automatic Memory Management335Chapter 6 - Miscellaneous Topics335330Chapter 1Memory Management Mechanisms1.1Overview"Everyone has a photographic memory. Some people just don't have film." -Mel BrooksNote: In the text of this book, italics are used to define or emphasize a term. The Courier font is used to denote code, memory addresses, input/output, and f

注意事项

本文(c++内存算法)为本站会员(小**)主动上传,金锄头文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即阅读金锄头文库的“版权提示”【网址:https://www.jinchutou.com/h-59.html】,按提示上传提交保证函及证明材料,经审查核实后我们立即给予删除!

温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




关于金锄头网 - 版权申诉 - 免责声明 - 诚邀英才 - 联系我们
手机版 | 川公网安备 51140202000112号 | 经营许可证(蜀ICP备13022795号)
©2008-2016 by Sichuan Goldhoe Inc. All Rights Reserved.