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

  • 相关阅读:
    bzoj 3594: [Scoi2014]方伯伯的玉米田
    普通平衡树(指针splay)
    codeforces 475D. CGCDSSQ
    php 购物车功能
    PHP现阶段发现的不足点
    php 多维数据根据某个或多个字段排序
    redis可视化辅助工具
    Redis在window下安装以及配置
    hive数据操作
    hive 表分区操作
  • 原文地址:https://www.cnblogs.com/willhua/p/13458455.html
Copyright © 2011-2022 走看看