zoukankan      html  css  js  c++  java
  • ARM架构简介

    ARM架构简介

    Arm architesture分为三种系类(profiles):

    image-20200808155528595

    不同系类的应用情况:

    image-20200808155659151

    Arm Cortex是Arm architecture对应处理器产品的商标名,就和奔腾,酷睿一样

    架构是对一个处理器的功能性规范,functional specification,定义how a processor will behave。也可以把它理解为软件和硬件之间的一个桥梁,规范硬件提供一些什么样的功能来供软件所调用

    架构规范如下东西:

    image-20200808160645364

    除此之外,还有一些特性是可选的,这部分由微架构micro-architecture 所决定,微架构包括但不限于如下:

    • Pipeline length and layout.
    • Number and sizes of caches.
    • Cycle counts for individual instructions.
    • Which optional features are implemented.

    比如Cortex-A53Cortex-A72都属于Armv8-A架构architecture,但是他们属于不同的微架构micro-architectures

    Cortex-A53 Cortex-A72
    Target Optimized for power efficiency Optimized for performance
    Pipeline 8 stages
    In-order
    15+ stages
    Out-of-order
    Caches L1 I cache: 8KB - 64KB
    L1 D cache: 8KB - 64KB
    L2 cache: optional, up to 2MB
    L1 I cache: 48KB fixed
    L1 D cache: 48KB fixed
    L2 cache: mandatory, up to 2MB

    Arm架构发展

    image-20200808161921277

  • 相关阅读:
    总结几个面试题
    产生下一个排列数的算法
    所谓码农
    简记微软实习生面试
    二维数组作为函数的参数传递
    详细解说 STL 排序(Sort)
    copy()之绝版应用
    STL标准模板库(简介)
    访问控制和继承方式
    常用软件开发模型比较分析
  • 原文地址:https://www.cnblogs.com/willhua/p/13458455.html
Copyright © 2011-2022 走看看