返回首页
苏宁会员
购物车 0
易付宝
手机苏宁

服务体验

店铺评分与同行业相比

用户评价:----

物流时效:----

售后服务:----

  • 服务承诺: 正品保障
  • 公司名称:
  • 所 在 地:
本店所有商品

  • [正版] 书籍 深入理解计算机系统(英文版·第3版)
  • 正版图书 品质保障
    • 作者: 无著
    • 出版社: 图书其它
    • 出版时间:2017.3
    送至
  • 由""直接销售和发货,并提供售后服务
  • 加入购物车 购买电子书
    服务

    看了又看

    商品预定流程:

    查看大图
    /
    ×

    苏宁商家

    商家:
    友一个图书专营店
    联系:
    • 商品

    • 服务

    • 物流

    搜索店内商品

    商品分类

    商品参数
    • 作者: 无著
    • 出版社:图书其它
    • 出版时间:2017.3
    • ISBN:9787296327382
    • 出版周期:旬刊
    • 版权提供:图书其它

             店铺公告

      为保障消费者合理购买需求及公平交易机会,避免因非生活消费目的的购买货囤积商品,抬价转售等违法行为发生,店铺有权对异常订单不发货且不进行赔付。异常订单:包括但不限于相同用户ID批量下单,同一用户(指不同用户ID,存在相同/临近/虚构收货地址,或相同联系号码,收件人,同账户付款人等情形的)批量下单(一次性大于5本),以及其他非消费目的的交易订单。

    温馨提示:请务必当着快递员面开箱验货,如发现破损,请立即拍照拒收,如验货有问题请及时联系在线客服处理,(如开箱验货时发现破损,所产生运费由我司承担,一经签收即为货物完好,如果您未开箱验货,一切损失就需要由买家承担,所以请买家一定要仔细验货),

    关于退货运费:对于下单后且物流已发货货品在途的状态下,原则上均不接受退货申请,如顾客原因退货需要承担来回运费,如因产品质量问题(非破损问题)可在签收后,联系在线客服。

      本店存在书、古旧书、收藏书、二手书等特殊商品,因受采购成本限制,可能高于定价销售,明码标价,介意者勿拍!

    1.书籍因稀缺可能导致售价高于定价,图书实际定价参见下方详情内基本信息,请买家看清楚且明确后再拍,避免价格争议!

    2.店铺无纸质均开具电子,请联系客服开具电子版

     

    目录

    Contents
    Preface xix About the Authors xxxv
    1
    A Tour of Computer Systems 1
    1.1Information Is Bits Context 3
    1.2Programs Are Translated by Other Programs into Different Forms 4
    1.3It Pays to Understand How Compilation Systems Work 6
    1.4Processors Read and Interpret Instructions Stored in Memory 7
    1.4.1Hardware Organization of a System 8
    1.4.2Running the helloProgram 10
    1.5Caches Matter 11
    1.6Storage Devices Form a Hierarchy 14
    1.7The Operating System Manages the Hardware 14
    1.7.1Processes 15
    1.7.2Threads 17
    1.7.3Virtual Memory 18
    1.7.4Files 19
    1.8Systems Communicate with Other Systems Using Networks 19
    1.9Important Themes 22
    1.9.1Amdahl’s Law 22
    1.9.2Concurrency and Parallelism 24
    1.9.3The Importance of Abstractions in Computer Systems 26
    1.10Summary 27 Bibliographic Notes 28 Solutions to Practice Problems 28
    Part I Program Structure and Execution
    2
    Representing and Manipulating Information 31
    2.1Information Storage 34
    2.1.1Hexadecimal Notation 36
    2.1.2Data Sizes 39
    2.1.3 Addressing and Byte Ordering 42
    2.1.4 Representing Strings 49
    2.1.5 Representing Code 49
    2.1.6 Introduction to Boolean Algebra 50
    2.1.7 Bit-Level Operations in C 54
    2.1.8 Logical Operations in C 56
    2.1.9 Shift Operations in C 57
    2.2 Integer Representations 59
    2.2.1 Integral Data Types 60
    2.2.2 Unsigned Encodings 62
    2.2.3 Two’s-Complement Encodings 64
    2.2.4 Conversions between Signed and Unsigned 70
    2.2.5 Signed versus Unsigned in C 74
    2.2.6 Expanding the Bit Representation of a Number 76
    2.2.7 Truncating Numbers 81
    2.2.8 Advice on Signed versus Unsigned 83
    2.3 Integer Arithmetic 84
    2.3.1 Unsigned Addition 84
    2.3.2 Two’s-Complement Addition 90
    2.3.3 Two’s-Complement Negation 95
    2.3.4 Unsigned Multiplication 96
    2.3.5 Two’s-Complement Multiplication 97
    2.3.6 Multiplying by Constants 101
    2.3.7 Dividing by Powers of 2 103
    2.3.8 Final Thoughts on Integer Arithmetic 107
    2.4 Floating Point 108
    2.4.1 Fractional Binary Numbers 109
    2.4.2 IEEE Floating-Point Representation 112
    2.4.3 Example Numbers 115
    2.4.4 Rounding 120
    2.4.5 Floating-Point Operations 122
    2.4.6 Floating Point in C 124
    2.5 Summary 126
    Bibliographic Notes 127
    Homework Problems 128
    Solutions to Practice Problems 143
    3
    Machine-Level Representation of Programs 163
    3.1 A Historical Perspective 166
    3.2Program Encodings 169
    3.2.1Machine-Level Code 170
    3.2.2Code Examples 172
    3.2.3Notes on Formatting 175
    3.3Data Formats 177
    3.4Accessing Information 179
    3.4.1Operand Speci.ers 180
    3.4.2Data Movement Instructions 182
    3.4.3Data Movement Example 186
    3.4.4Pushing and Popping Stack Data 189
    3.5Arithmetic and Logical Operations 191
    3.5.1Load Effective Address 191
    3.5.2Unary and Binary Operations 194
    3.5.3Shift Operations 194
    3.5.4Discussion 196
    3.5.5Special Arithmetic Operations 197
    3.6Control 200
    3.6.1Condition Codes 201
    3.6.2Accessing the Condition Codes 202
    3.6.3Jump Instructions 205
    3.6.4Jump Instruction Encodings 207
    3.6.5Implementing Conditional Branches withConditional Control 209
    3.6.6Implementing Conditional Branches withConditional Moves 214
    3.6.7Loops 220
    3.6.8Switch Statements 232
    3.7Procedures 238
    3.7.1The Run-Time Stack 239
    3.7.2Control Transfer 241
    3.7.3Data Transfer 245
    3.7.4Local Storage on the Stack 248
    3.7.5Local Storage in Registers 251
    3.7.6Recursive Procedures 253
    3.8Array Allocation and Access 255
    3.8.1Basic Principles 255
    3.8.2Pointer Arithmetic 257
    3.8.3Nested Arrays 258
    3.8.4Fixed-Size Arrays 260
    3.8.5Variable-Size Arrays 262
    3.9 Heterogeneous Data Structures 265
    3.9.1 Structures 265
    3.9.2 Unions 269
    3.9.3 Data Alignment 273
    3.10 Combining Control and Data in Machine-Level Programs 276
    3.10.1 Understanding Pointers 277
    3.10.2 Life in the Real World: Using the gdbDebugger 279
    3.10.3 Out-of-Bounds Memory References and Buffer Over.ow 279
    3.10.4 Thwarting Buffer Over.ow Attacks 284
    3.10.5 Supporting Variable-S

    内容介绍

    本书从程序员的视角详细阐述计算机系统的本质概念,并展示这些概念如何实实在在地影响应用程序的正确性、性能和实用性。全书共12章,主要包括信息的表示和处理、程序的机器级表示、处理器体系结构、优化程序性能、存储器层次结构、链接、异常控制流、虚拟存储器、系统级I/O、网络编程、并发编程等内容。书中提供了大量的例子和练习题,并给出部分答案,有助于读者加深对正文所述概念和知识的理解。

    作者介绍

    Randal E. Bryant
    1973年获得密歇根大学学士学位,随即就读麻省理工学院的研究生院,并在1981年获得计算机博士学位。从1984年至今一直任教于卡内基-梅隆大学,现在是卡内基-梅隆大学计算机科学学院院长、教授,同时受邀任教于工学院电子与计算机工程系。他还是ACM院士、IEEE院士和美国国家工程院院士。其研究成果获得过数项大奖,其中包括Semiconductor Research Corporation颁发的两个发明荣誉奖和一个技术成就奖,ACM颁发的Kanellakis理论与实践奖,还有IEEE颁发的W. R. G. Baker奖、Emmanuel Piore奖和Phil Kaufman奖。
    David R. O,Hallaron
    拥有弗吉尼亚大学计算机科学博士学位,现为Intel匹兹堡实验室主任,卡内基-梅隆大学计算机科学和电子与计算机工程副教授。他曾获得卡内基-梅隆大学计算机科学学院颁发的Herbert Simon杰出教学奖,并同Quake项目中其他成员一起获得了高性能计算领域中的高国际奖项——Gordon Bell奖。
    基本信息
    商品名称: 深入理解计算机系统(英文版·第3版) 开本: 16开
    作者: [美] 兰德尔 E.布莱恩特 定价: 239.00
    ISBN号: 9787111561279 出版时间: 2017-04-07
    出版社: 机械工业出版社 印刷时间: 2017-04-01
    版次: 1 印次: 1
    1
    • 商品详情
    • 内容简介

    售后保障

    最近浏览

    猜你喜欢

    该商品在当前城市正在进行 促销

    注:参加抢购将不再享受其他优惠活动

    x
    您已成功将商品加入收藏夹

    查看我的收藏夹

    确定

    非常抱歉,您前期未参加预订活动,
    无法支付尾款哦!

    关闭

    抱歉,您暂无任性付资格

    此时为正式期SUPER会员专享抢购期,普通会员暂不可抢购