diff options
| author | Tim Northover <t.p.northover@gmail.com> | 2013-05-23 19:11:20 +0000 |
|---|---|---|
| committer | Tim Northover <t.p.northover@gmail.com> | 2013-05-23 19:11:20 +0000 |
| commit | bc93308489b5513ef3d4e56bad28b7ab4bce7303 (patch) | |
| tree | c621435d3ed3f79b5c2fbe0d638b8bb20b61feda /llvm/docs | |
| parent | cedd48183fed7e1fc7f660d49a048df1a0a2d538 (diff) | |
| download | bcm5719-llvm-bc93308489b5513ef3d4e56bad28b7ab4bce7303.tar.gz bcm5719-llvm-bc93308489b5513ef3d4e56bad28b7ab4bce7303.zip | |
ARM: implement @llvm.readcyclecounter intrinsic
This implements the @llvm.readcyclecounter intrinsic as the specific
MRC instruction specified in the ARM manuals for CPUs with the Power
Management extensions.
Older CPUs had slightly different methods which may also have to be
implemented eventually, but this should cover all v7 cases.
rdar://problem/13939186
llvm-svn: 182603
Diffstat (limited to 'llvm/docs')
| -rw-r--r-- | llvm/docs/LangRef.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index 4eecd15a6fc..5e32eba7f72 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -6663,6 +6663,9 @@ memory. Implementations are allowed to either return a application specific value or a system wide value. On backends without support, this is lowered to a constant 0. +Note that runtime support may be conditional on the privilege-level code is +running at and the host platform. + Standard C Library Intrinsics ----------------------------- |

