diff options
| author | Tim Northover <tnorthover@apple.com> | 2016-02-09 23:55:48 +0000 |
|---|---|---|
| committer | Tim Northover <tnorthover@apple.com> | 2016-02-09 23:55:48 +0000 |
| commit | 762b6e702db4089e6195cbc0168487f48ff2294a (patch) | |
| tree | a8f9f5efca69e4af38c2f9cb35ccb98b9d361ff9 | |
| parent | 78b368f1242a3a2593f98e0ac5d04ff93168922e (diff) | |
| download | bcm5719-llvm-762b6e702db4089e6195cbc0168487f48ff2294a.tar.gz bcm5719-llvm-762b6e702db4089e6195cbc0168487f48ff2294a.zip | |
ARM: improve documentation slightly.
It seems the ARMv8 instruction set overview is no longer provided by ARM, so
I've removed it. Since most of the other documents were the same I unified the
two sections.
llvm-svn: 260329
| -rw-r--r-- | llvm/docs/CompilerWriterInfo.rst | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/llvm/docs/CompilerWriterInfo.rst b/llvm/docs/CompilerWriterInfo.rst index 6c3ff4b10f1..9b4b4f8cce3 100644 --- a/llvm/docs/CompilerWriterInfo.rst +++ b/llvm/docs/CompilerWriterInfo.rst @@ -13,25 +13,18 @@ Architecture & Platform Information for Compiler Writers Hardware ======== -ARM ---- +AArch64 & ARM +------------- -* `ARM documentation <http://www.arm.com/documentation/>`_ (`Processor Cores <http://www.arm.com/documentation/ARMProcessor_Cores/>`_ Cores) +* `ARMv8-A Architecture Reference Manual <http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0487a.h/index.html>`_ (authentication required, free sign-up). This document covers both AArch64 and ARM instructions -* `ABI <http://www.arm.com/products/DevTools/ABI.html>`_ +* `ARMv7-M Architecture Reference Manual` <http://infocenter.arm.com/help/topic/com.arm.doc.ddi0403e.b/index.html>`_ (authentication required, free sign-up). This covers the Thumb2-only microcontrollers -* `ABI Addenda and Errata <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0045d/IHI0045D_ABI_addenda.pdf>`_ +* `ARMv6-M Architecture Reference Manual` <http://infocenter.arm.com/help/topic/com.arm.doc.ddi0419c/index.html>_ (authentication required, free sign-up). This covers the Thumb1-only microcontrollers * `ARM C Language Extensions <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0053c/IHI0053C_acle_2_0.pdf>`_ -AArch64 -------- - -* `ARMv8 Architecture Reference Manual <http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0487a.h/index.html>`_ - -* `ARMv8 Instruction Set Overview <http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.genc010197a/index.html>`_ - -* `ARM C Language Extensions <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0053c/IHI0053C_acle_2_0.pdf>`_ +* AArch32 `ABI Addenda and Errata <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0045d/IHI0045D_ABI_addenda.pdf>`_ Itanium (ia64) -------------- |

