diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2013-07-24 17:45:11 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2013-07-24 17:45:11 +0000 |
commit | f32ec17b9fb5a011711d8c74efaf29f9caa46091 (patch) | |
tree | 19926c8a7ad11625db8f9ef0ecec7238b9db9d58 /docs/CommandGuide | |
parent | f0639501ea6a71871f916bed5456588d1bb57856 (diff) | |
download | external_llvm-f32ec17b9fb5a011711d8c74efaf29f9caa46091.zip external_llvm-f32ec17b9fb5a011711d8c74efaf29f9caa46091.tar.gz external_llvm-f32ec17b9fb5a011711d8c74efaf29f9caa46091.tar.bz2 |
Update old llc documentation.
Patch by Hafiz Abid!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187056 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide')
-rw-r--r-- | docs/CommandGuide/llc.rst | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/CommandGuide/llc.rst b/docs/CommandGuide/llc.rst index e6a5976..f7ca322 100644 --- a/docs/CommandGuide/llc.rst +++ b/docs/CommandGuide/llc.rst @@ -141,24 +141,24 @@ Tuning/Configuration Options .. option:: --regalloc=<allocator> - Specify the register allocator to use. The default ``allocator`` is *local*. + Specify the register allocator to use. Valid register allocators are: - *simple* + *basic* - Very simple "always spill" register allocator + Basic register allocator. - *local* + *fast* - Local register allocator + Fast register allcator. It is default for unoptimized code. - *linearscan* + *greedy* - Linear scan global register allocator + Greedy register allcator. It is default for optimized code. - *iterativescan* + *pbqp* - Iterative scan global register allocator + Register allocator based on 'Partitioned Boolean Quadratic Programming'. .. option:: --spiller=<spiller> |