mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-11-09 12:31:04 +00:00
This brings in some memory leak fixes for LLVMCOntext.
Squashed commit of the following:
commit 4cfaf41d499ce05b11ecb62746c3e86b04440f62
Author: Bill Wendling <isanbard@gmail.com>
Date: Mon Aug 31 18:26:48 2009 +0000
Output a hex value, because all of the others are hex.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80601 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7829e5a6558bb97589d47d61da3142f7ebbdaeac
Author: Dale Johannesen <dalej@apple.com>
Date: Mon Aug 31 18:05:23 2009 +0000
Fix some misspellings of XTARGET.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80598 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8364630e4cb67b6f64a704960e73ae44ce3f10ed
Author: Dale Johannesen <dalej@apple.com>
Date: Mon Aug 31 17:49:20 2009 +0000
Mark test as passing on all x86, which it should,
although I don't think anyone cares about this
feature except Darwin. PR 4825.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80596 91177308-0d34-0410-b5e6-96231b3b80d8
commit cf91fb4cb2e15b1fa07dc1282ac59c3659d80015
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 17:08:30 2009 +0000
cleanups pointed out by duncan
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80595 91177308-0d34-0410-b5e6-96231b3b80d8
commit 752d366fe7a9d0f68258465ce554cdf40af2918e
Author: Duncan Sands <baldrick@free.fr>
Date: Mon Aug 31 16:45:16 2009 +0000
Revert commit 80428. It completely broke exception
handling on x86-32 linux.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80592 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3c8dfbb88bb125c2b7d1105645937b14dce9bcd3
Author: Edwin Török <edwintorok@gmail.com>
Date: Mon Aug 31 16:14:59 2009 +0000
Free the constants that have no uses in ~LLVMContext.
This fixes leaks from LLVMContext in multithreaded apps.
Since constants are only deleted if they have no uses, it is safe to not delete
a Module on shutdown, as many single-threaded tools do.
Multithreaded apps should however delete the Module before destroying the
Context to ensure that there are no leaks (assuming they use a different context
for each thread).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80590 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6d5f43b77a907a2b42ff405ab16e078c6598c70e
Author: Edwin Török <edwintorok@gmail.com>
Date: Mon Aug 31 16:12:29 2009 +0000
Fix ExplicitSymbols leak.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80589 91177308-0d34-0410-b5e6-96231b3b80d8
commit b759ebc5bc48ee93a9f4b031ec6ed3247028d77c
Author: Benjamin Kramer <benny.kra@googlemail.com>
Date: Mon Aug 31 13:05:24 2009 +0000
Normalize makefile comments and sort cmake file lists.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80584 91177308-0d34-0410-b5e6-96231b3b80d8
commit d79f43204be2893e74872f1062e2a44f023d39e1
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:09:28 2009 +0000
llvm-mc: Pass values to MCStreamer as MCExprs, not MCValues.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80578 91177308-0d34-0410-b5e6-96231b3b80d8
commit f4c67959b5ea0bbd3a39085c91c2d3162c6fd973
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:09:09 2009 +0000
llvm-mc: Simplify EmitAssignment ('.set' is identical to '=').
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80577 91177308-0d34-0410-b5e6-96231b3b80d8
commit b6a03e093598d90c10c8d1cab8425e3d107b12cf
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:08:50 2009 +0000
llvm-mc: Remove MCAsmParser::Parse[Paren]RelocatableExpression.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80576 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6e96621a502ddebc12cd4d139756b7a90fd1ca8a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:08:38 2009 +0000
llvm-mc: Switch MCInst to storing an MCExpr* instead of an MCValue.
Also, use MCInst::print instead of custom code in MCAsmPrinter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80575 91177308-0d34-0410-b5e6-96231b3b80d8
commit 667cfd44ac3394697e60f54f72bfd190436c061a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:08:17 2009 +0000
llvm-mc: Add MCAsmParser::Parse[Paren]Expression forms which return an MCExpr.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80574 91177308-0d34-0410-b5e6-96231b3b80d8
commit 22ad5f80f751da3ba986022d09c49fcc4416048a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:08:06 2009 +0000
llvm-mc: Make MCSymbolData symbol member const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80573 91177308-0d34-0410-b5e6-96231b3b80d8
commit 29efe7e0c9d32aaefa2a2924a8ded5fd4c76ff28
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:55 2009 +0000
llvm-mc: Add MCContext to MCAssembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80572 91177308-0d34-0410-b5e6-96231b3b80d8
commit 890ebe2d940760796e088902a2613cdf30b16e76
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:44 2009 +0000
llvm-mc: Add MCAsmParser::getContext.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80571 91177308-0d34-0410-b5e6-96231b3b80d8
commit 510c1a5512b7de68dc9b272eaba0e5d6c3ddc8b9
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:33 2009 +0000
llvm-mc: Add MCExpr::{dump,print}.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80570 91177308-0d34-0410-b5e6-96231b3b80d8
commit bc4d607b1a5fd13c1f19ef812ebb6fe814831d56
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:22 2009 +0000
llvm-mc: Switch MCExpr construction to using static member functions, and taking the MCContext (which now owns all MCExprs).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80569 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6e3b031540ae25a464bfa37cdbd19e2cad301ee7
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:08 2009 +0000
llvm-mc: Add some doxyment markers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80568 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3679d2f3156d001053bae8fa5a162852b7700a27
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:06:59 2009 +0000
llvm-mc: Move AsmExpr into MC lib (as MCExpr).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80567 91177308-0d34-0410-b5e6-96231b3b80d8
commit 298ea10f4da28d9be51f8be5af59f88ea86ce7ec
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 07:23:46 2009 +0000
Step #1 to giving Callgraph some sane invariants. The problems with callgraph
stem from the fact that we have two types of passes that need to update it:
1. callgraphscc and module passes that are explicitly aware of it
2. Functionpasses (and loop passes etc) that are interlaced with CGSCC passes
by the CGSCC Passmgr.
In the case of #1, we can reasonably expect the passes to update the call
graph just like any analysis. However, functionpasses are not and generally
should not be CG aware. This has caused us no end of problems, so this takes
a new approach. Logically, the CGSCC Pass manager can rescan every function
after it runs a function pass over it to see if the functionpass made any
updates to the IR that affect the callgraph. This allows it to catch new calls
introduced by the functionpass.
In practice, doing this would be slow. This implementation keeps track of
whether or not the current scc is dirtied by a function pass, and, if so,
delays updating the callgraph until it is actually needed again. This was
we avoid extraneous rescans, but we still have good invariants when the
callgraph is needed.
Step #2 of the "give Callgraph some sane invariants" is to change CallGraphNode
to use a CallBackVH for the callsite entry of the CallGraphNode. This way
we can immediately remove entries from the callgraph when a FunctionPass is
active instead of having dangling pointers. The current pass tries to tolerate
these dangling pointers, but it is just an evil hack.
This is related to PR3601/4835/4029. This also reverts r80541, a hack working
around the sad lack of invariants.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80566 91177308-0d34-0410-b5e6-96231b3b80d8
commit 21d79e26df48405ff2fdfde682c4fdf6c646ef8a
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 06:57:37 2009 +0000
fix some cases where instcombine would change hte IR but not return true
from runOnFunction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80562 91177308-0d34-0410-b5e6-96231b3b80d8
commit 223479b6087a6d9a1470c857c459e408ba51df84
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 06:01:21 2009 +0000
cleanups, factor some code out to a helper function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80542 91177308-0d34-0410-b5e6-96231b3b80d8
commit f5313424550268526a14fd910cfb59efb95e0f30
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 05:46:59 2009 +0000
fix a crash building SPASS by tolerating a callsite that doesn't exist
in the callgraph, see the big comment at the top of the testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80541 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4c76b7e8e15bf7ed6607393535f64a9070b6df8c
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 05:34:32 2009 +0000
comment and simplify some code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80540 91177308-0d34-0410-b5e6-96231b3b80d8
commit d441cd63a37ec3589fed1cfba11bbb177dab8fa6
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 05:22:48 2009 +0000
add -debug output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80539 91177308-0d34-0410-b5e6-96231b3b80d8
commit 26b7f945b3a935e44755202ef7be13fdee8c75b5
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 05:17:58 2009 +0000
improve -debug output, so that -debug is more likely to print when
instcombine is changing stuff.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80538 91177308-0d34-0410-b5e6-96231b3b80d8
commit adba7ea53650f26a6752f606041ac6d741c1fd4f
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 04:36:22 2009 +0000
fix a bug I introduced with my 'instcombine builder' refactoring
changes: SimplifyDemandedBits can't use the builder yet because it
has the wrong insertion point. This fixes a crash building
MultiSource/Benchmarks/PAQ8p
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80537 91177308-0d34-0410-b5e6-96231b3b80d8
commit b74203603b43d08ddef33e9a4c9c03752d86aee6
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 04:09:04 2009 +0000
simplify some code by making the SCCNodes set contain Function*'s
instead of CallGraphNode*'s. This also papers over a callgraph
problem where a pass (in this case, MemCpyOpt) introduces a new
function into the module (llvm.memset.i64) but doesn't add it to
the call graph (nor should it, since it is a function pass).
While it might be a good idea for MemCpyOpt to not synthesize
functions in a runOnFunction(), there is no need for FunctionAttrs
to be boneheaded, so fix it there. This fixes an assertion building
176.gcc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80535 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3e30f91f1c190b8f3ba93de2c8746e0addaf056e
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 03:22:35 2009 +0000
only print the override triple if it exists!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80534 91177308-0d34-0410-b5e6-96231b3b80d8
commit fd7079292b43ca5eceae2c585fc2899033a448f7
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 03:15:49 2009 +0000
Fix PR4834, a tricky case where the inliner would resolve an
indirect function pointer, inline it, then go to delete the body.
The problem is that the callgraph had other references to the function,
though the inliner had no way to know it, so we got a dangling pointer
and an invalid iterator out of the deal.
The fix to this is pretty simple: stop the inliner from deleting the
function by knowing that there are references to it. Do this by making
CallGraphNodes contain a refcount. This requires moving deletion of
available_externally functions to the module-level cleanup sweep where
it belongs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80533 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7d7776f7adca3f51d05c3bbfbacaf65a5ae5167f
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 02:24:20 2009 +0000
use an accessor instead of poking internals of a node.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80532 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7032b5cbb5282c844008e780c7bbdddf8f8cf096
Author: Oscar Fuentes <ofv@wanadoo.es>
Date: Mon Aug 31 01:58:50 2009 +0000
CMake: updated library dependencies.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80531 91177308-0d34-0410-b5e6-96231b3b80d8
commit 54b6adfbb882f2f9b96c241fb87d0128ce840960
Author: Jim Grosbach <grosbach@apple.com>
Date: Mon Aug 31 01:35:03 2009 +0000
PR4747
Shared landing pads run into trouble with SJLJ, as the dispatch table is
mapped to call sites, and merging the pads will throw that off. There needs
to be a one-to-one mapping of landing pad exception table entries to invoke
call points.
Detecting the shared pad during lowering of SJLJ info insn't sufficient, as
the dispatch function may still need separate destinations to properly
handle phi-nodes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80530 91177308-0d34-0410-b5e6-96231b3b80d8
commit 86ab47ae9c388e9e046dedd9d9d554268290e450
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 00:28:46 2009 +0000
update unit test for previous change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80528 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3dab7152eedc0d822a9499102303eba526026021
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 00:19:58 2009 +0000
Fix some nasty callgraph dangling pointer problems in
argpromotion and structretpromote. Basically, when replacing
a function, they used the 'changeFunction' api which changes
the entry in the function map (and steals/reuses the callgraph
node).
This has some interesting effects: first, the problem is that it doesn't
update the "callee" edges in any callees of the function in the call graph.
Second, this covers for a major problem in all the CGSCC pass stuff, which
is that it is completely broken when functions are deleted if they *don't*
reuse a CGN. (there is a cute little fixme about this though :).
This patch changes the protocol that CGSCC passes must obey: now the CGSCC
pass manager copies the SCC and preincrements its iterator to avoid passes
invalidating it. This allows CGSCC passes to mutate the current SCC. However
multiple passes may be run on that SCC, so if passes do this, they are now
required to *update* the SCC to be current when they return.
Other less interesting parts of this patch are that it makes passes update
the CG more directly, eliminates changeFunction, and requires clients of
replaceCallSite to specify the new callee CGN if they are changing it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80527 91177308-0d34-0410-b5e6-96231b3b80d8
commit 637d133ffeaa961837ebc87ee6934be5ef401b8f
Author: Erick Tryzelaar <idadesub@users.sourceforge.net>
Date: Sun Aug 30 23:41:20 2009 +0000
Fix header comment for bindings/ocaml/llvm/Makefile.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80526 91177308-0d34-0410-b5e6-96231b3b80d8
commit ad465d7013a6ec529a34605d51377202af71b418
Author: Erick Tryzelaar <idadesub@users.sourceforge.net>
Date: Sun Aug 30 23:38:06 2009 +0000
Make sure we specify no arguments for context functions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80525 91177308-0d34-0410-b5e6-96231b3b80d8
commit ba263e5f1b2320558e3935bbfbdc10c6d581c19d
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 22:24:32 2009 +0000
add a dump() method on callgraph.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80524 91177308-0d34-0410-b5e6-96231b3b80d8
commit 72489759fa9fb63fdfa9f2e363222f0c45bf1340
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 22:14:17 2009 +0000
rename test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80523 91177308-0d34-0410-b5e6-96231b3b80d8
commit fae478e46e8ba5192eebbe569a627fdb954e587f
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 22:13:26 2009 +0000
merge all sinking tests into one and convert them to filecheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80522 91177308-0d34-0410-b5e6-96231b3b80d8
commit a94b6974dd77e6457eba731fc6bf760d150f4207
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 22:08:19 2009 +0000
convert scalar_promote to filecheck style and merge 2003-12-13-VolatilePromote.ll into it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80521 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9e2f641e11c20fa64e5f605e00168ecc7c0207b6
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:45:23 2009 +0000
eliminate some uses of prcontext. Any help here would be appreciated :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80520 91177308-0d34-0410-b5e6-96231b3b80d8
commit b5d911fe3ad0daa3bab9f6ddb24931db969fed00
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:36:39 2009 +0000
rename test so that name reflects what it is testing for.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80519 91177308-0d34-0410-b5e6-96231b3b80d8
commit 16078ca613ec085b395afbabf5b68b7062e0ac1c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:36:06 2009 +0000
convert to filecheck format.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80518 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0799dd19d3f0c2f1beb1b17ef7842ae5b61043d2
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:31:34 2009 +0000
suck a bunch more gep tests into getelementptr.ll and filecheckize them all.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80517 91177308-0d34-0410-b5e6-96231b3b80d8
commit 16d7262e7a2e523c97e2c8bb2b4ab8823cf05772
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 21:14:05 2009 +0000
Tweak comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80516 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6a8458c86c784f7955ab7815b4840fc21f27b2d8
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 21:13:58 2009 +0000
Fix some possible-use-of-uninitialized warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80515 91177308-0d34-0410-b5e6-96231b3b80d8
commit 909749e25e3d5442e5b407781d2de92871f81a64
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:02:36 2009 +0000
consolodate various GEP tests into getelementptr.ll using filecheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80514 91177308-0d34-0410-b5e6-96231b3b80d8
commit ccf7551a0445599b24a0eae667242e67b5f5d298
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:02:02 2009 +0000
another huge testcase, this time from 'gs' in llvm-test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80513 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1fa629a0ffe6aa837bda41389c098e236a5b0f0c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:01:14 2009 +0000
remove another poorly-reduced testcase which came from ldecod in llvm-test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80512 91177308-0d34-0410-b5e6-96231b3b80d8
commit 36d9c48134861d576a78c09e001d7773a502ea76
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:00:11 2009 +0000
this testcase is 500 lines long and is distilled from bzip2, just
remove it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80511 91177308-0d34-0410-b5e6-96231b3b80d8
commit 586de4da4bffce2aae9110a60a39a3318014674c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:48:15 2009 +0000
convert to filecheck
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80510 91177308-0d34-0410-b5e6-96231b3b80d8
commit 83288fa512830d723318bf99060d3ec4fbf53abc
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:38:21 2009 +0000
Fix PR4748: don't fold gep(bitcast(x)) into bitcast(gep) when x
is itself a bitcast. Since we have gep(bitcast(bitcast(y))) in this
case, just wait for the two bitcasts to get zapped. This prevents
instcombine from confusing some aliasing stuff, and allows it to
directly eliminate the load in the testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80508 91177308-0d34-0410-b5e6-96231b3b80d8
commit f3a2359906e6939a2552c7c23877592693d757f1
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:36:46 2009 +0000
misc cleanup
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80507 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6807a24de176e563843a0c5a21c9358b5eeefc2d
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:06:40 2009 +0000
add getPointerAddressSpace() to GEP instruction, use the method
in a few scalar xforms to simplify things.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80506 91177308-0d34-0410-b5e6-96231b3b80d8
commit d6164c20cdaaa27a2cc7b340604b4df3f2b97129
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:01:10 2009 +0000
eliminate InsertCastBefore, use the builder instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80505 91177308-0d34-0410-b5e6-96231b3b80d8
commit 78628294ebe9a062fbd7e55edf5240e9b7c53fce
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 19:47:22 2009 +0000
eliminate InsertBitCastBefore, just use the builder instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80504 91177308-0d34-0410-b5e6-96231b3b80d8
commit b77b0464ba62108a07af655f626f5bfe3bd63162
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 19:45:21 2009 +0000
add a "getPointerAddressSpace" helper method to LoadInst and StoreInst.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80503 91177308-0d34-0410-b5e6-96231b3b80d8
commit d33527768525e6447c6fdcf521ffb975165dbc7a
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Sun Aug 30 19:06:39 2009 +0000
Add missed pattern
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80502 91177308-0d34-0410-b5e6-96231b3b80d8
commit ad7516ac00ede459691feba7f448a4c3654ea6fc
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 18:50:58 2009 +0000
convert a bunch more calls to InsertNewInstBefore to use
the new Instcombine builder.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80501 91177308-0d34-0410-b5e6-96231b3b80d8
commit 36ec3b4e9828905bdc6bf7ef91ac808ab11e7d45
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 17:53:59 2009 +0000
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80500 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8ba22dd113839d66b3f2912aff6bdd27776b1608
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 17:44:10 2009 +0000
hopefully unbreak the build by making this-> explicit for dependent
base class lookup.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80499 91177308-0d34-0410-b5e6-96231b3b80d8
commit 243874430bb02c8f76b7603cbc8f31ebf2749785
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Sun Aug 30 17:14:54 2009 +0000
EXTRACT_VECTOR_ELEMENT can have result type different from element type.
Remove the assertion and generalize the code for ARM NEON stuff.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80498 91177308-0d34-0410-b5e6-96231b3b80d8
commit 42cee05a28e87ba96760daaf9699f8355ea53f6e
Author: Edwin Török <edwintorok@gmail.com>
Date: Sun Aug 30 08:24:09 2009 +0000
Add regular expression matching support, based on OpenBSD regexec()/regcomp()
implementation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80493 91177308-0d34-0410-b5e6-96231b3b80d8
commit c769485a593b86360597d913c083292279730695
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 07:44:24 2009 +0000
give instcombine a custom IRBuilder that adds new instructions to the
workslist and is set to insert new instructions before the current one.
Convert a bunch of stuff that used to call InsertNewInstBefore over to
use it, greatly simplifying code and making it more natural.
There is still a lot more to go, but this is a good start.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80492 91177308-0d34-0410-b5e6-96231b3b80d8
commit f0b47f327e20f338c90202ea21001dd9b06f7ef5
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 07:01:09 2009 +0000
Update test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80490 91177308-0d34-0410-b5e6-96231b3b80d8
commit c5ad98f04a19b2b7d463713a77634471578d1a64
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 06:27:41 2009 +0000
add a new InstCombineWorklist::AddValue method that works even
if the operand is not an instruction.
Simplify most uses of AddOperandsToWorkList to use AddValue and
inline it into the one remaining callsite.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80488 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4796b62fccd6f8c414b5a642ebe0f6dbbabd5b61
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 06:22:51 2009 +0000
move AddUsersToWorkList to the worklist processing class, make the
argument stronger typed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80487 91177308-0d34-0410-b5e6-96231b3b80d8
commit 059cfc7570d47711c1b53c909ab0f9c347cb23c3
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 06:20:05 2009 +0000
rename AddUsesToWorkList -> AddOperandsToWorkList. The
former looks too much like AddUsersToWorkList and keeps
confusing me.
Remove AddSoonDeadInstToWorklist and change its two callers
to do the same thing in a simpler way.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80486 91177308-0d34-0410-b5e6-96231b3b80d8
commit a8d310b5231890e926000c6939540b93fe094b61
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 06:17:49 2009 +0000
llvm-mc/X86: Encode constant MCValue's correctly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80485 91177308-0d34-0410-b5e6-96231b3b80d8
commit b03d1179e934cb99e30190835fea1e7f4a59ecad
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 06:17:16 2009 +0000
llvm-mc: MCStreamer cleanups. - Remove EmitLocalSymbol, this is unsupported for now.
- Switch Emit{CommonSymbol,Zerofill} to take alignment in bytes (for consistency).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80484 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3183fb6b613c15627c33a8257cbbfe10dbf0bb7f
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 06:13:40 2009 +0000
inline the trivial AddToWorkList/RemoveFromWorkList methods
into their callers. simplify ReplaceInstUsesWith. Make
EraseInstFromFunction only add operands to the worklist if
there aren't too many of them (this was a scalability win
for crazy programs that was only infrequently enforced).
Switch more code to using EraseInstFromFunction instead of
duplicating it inline. Change some fcmp/icmp optimizations
to modify fcmp/icmp in place instead of creating a new one
and deleting the old one just to change the predicate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80483 91177308-0d34-0410-b5e6-96231b3b80d8
commit bf09d6330ea039406e250493d7e45d001f81734d
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:56:44 2009 +0000
fix a bug I introduced in r80478 found by the build bot.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80482 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5119c70d1620b79288c50ca2ad6a3ea4f11a3f35
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:55:36 2009 +0000
refactor instcombine's worklist processing stuff out to its own class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80481 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1dde4eb8a0aef903bfd53d8dabfc61a560e1b327
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:55:04 2009 +0000
make DenseMap::clear() early exit if there is nothing to do.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80480 91177308-0d34-0410-b5e6-96231b3b80d8
commit 69af0ff152a949c41ea8ff4550c74627306262f7
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:42:59 2009 +0000
some minor cleanups to IRBuilder, factor the insertion
hook out of the main IRBuilder class to allow clients to
override it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80479 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1c641fc37fc42d878883b0325810a5c8c02a436c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:30:55 2009 +0000
more cleanups: remove some redundant code, and simplify some
other places.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80478 91177308-0d34-0410-b5e6-96231b3b80d8
commit c2c8a0ac3f529c9e536862b213e18f67de05f422
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:08:50 2009 +0000
eliminate the temporary SrcGEPOperands smallvector.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80477 91177308-0d34-0410-b5e6-96231b3b80d8
commit 95ba1ec4cbb14614f9ac26c9aabe5cac6640c4b0
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:00:50 2009 +0000
simplify/detangle some control flow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80476 91177308-0d34-0410-b5e6-96231b3b80d8
commit c0f553e874121b6a0feb35e580040c02da05ac3c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 04:49:01 2009 +0000
simplify and cleanup some code, remove some code that just
does constant folding of gep's: this is already handled in
a more general way.
No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80475 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9da50553ef4596ea75c3a5434bf9ad356fb574ee
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 04:25:40 2009 +0000
default count-aa to -print-all. The whole reason to use count-aa is
to see what queries are being made by a transformation, we might as well
default to printing them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80474 91177308-0d34-0410-b5e6-96231b3b80d8
commit 09880947395319ff0df656549ddf0b080b7af385
Author: Bill Wendling <isanbard@gmail.com>
Date: Sun Aug 30 00:28:57 2009 +0000
Nuke moribund "std::string" version of EOL(..., Encoding).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80466 91177308-0d34-0410-b5e6-96231b3b80d8
commit cdfb9b17b94bffa0de0e4862d22369fa1dcd9099
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:54:26 2009 +0000
Add AutoGenerated.inc to svn:ignore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80455 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5d138f96f048cc7009397708ed10edea7cede5a6
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:39:38 2009 +0000
Remove an unnecessary Context argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80454 91177308-0d34-0410-b5e6-96231b3b80d8
commit f928ad4af07aaac5e7e81757dcd514acbb5cb39c
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:37:49 2009 +0000
Minor logic simplification.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80453 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3d9354c841746f1802babcd465e542d7a7ea2a10
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:36:57 2009 +0000
Add some comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80452 91177308-0d34-0410-b5e6-96231b3b80d8
commit 18e06cf39d0313f80b055eb98dba8d8f42fd08cd
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:35:16 2009 +0000
Cleanup whitespace and indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80451 91177308-0d34-0410-b5e6-96231b3b80d8
commit b006a1010559be4bc9d5e577c50fc750194f34a6
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:34:14 2009 +0000
Remove some unused fields.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80450 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1596dd23f3e2df5225cdfcea0904a017f96aaa90
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 22:19:15 2009 +0000
CMOV_GR8 clobbers EFLAGS when its expansion involves an xor to set
a register to 0. This fixes PR4814.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80445 91177308-0d34-0410-b5e6-96231b3b80d8
commit ac09afaf40216429fad53899cce2f9fde8e267d4
Author: Benjamin Kramer <benny.kra@googlemail.com>
Date: Sat Aug 29 13:38:21 2009 +0000
Inline empty destructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80431 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3c5374802712a3d28cd13207ed3979a95457075c
Author: Bill Wendling <isanbard@gmail.com>
Date: Sat Aug 29 12:31:38 2009 +0000
Fix warning about non-virtual destructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80429 91177308-0d34-0410-b5e6-96231b3b80d8
commit b4ac493684cdeb2147000a6816a563269fcf3c70
Author: Bill Wendling <isanbard@gmail.com>
Date: Sat Aug 29 12:20:54 2009 +0000
- Add target lowering methods to get the preferred format for the FDE and LSDA
encodings.
- Make some of the values emitted by the FDEs dependent upon the pointer
size. This is in line with how GCC does things. And it has the benefit of
working for Darwin in 64-bit mode now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80428 91177308-0d34-0410-b5e6-96231b3b80d8
commit 946b521498866b3d83c4447c9c0ece6095a56874
Author: Bill Wendling <isanbard@gmail.com>
Date: Sat Aug 29 12:17:53 2009 +0000
Add a form of EOL which emits the text version of a DWARF format encoding. This
doesn't handle all values of the formatting. Those can be added as needed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80427 91177308-0d34-0410-b5e6-96231b3b80d8
commit 502c35e863882790a94ad432d0a03c4a7e1a0aad
Author: Bob Wilson <bob.wilson@apple.com>
Date: Sat Aug 29 05:53:25 2009 +0000
PR4795: Remove EEVT::isFP, isInt and isVec types used by TableGen's type
inferencing. As far as I can tell, these are equivalent to the existing
MVT::fAny, iAny and vAny types, and having both of them makes it harder
to reason about and modify the type inferencing code.
The specific problem in PR4795 occurs when updating a vAny type to be fAny
or iAny, or vice versa. Both iAny and fAny include vector types -- they
intersect with the set of types represented by vAny. When merging them,
choose fAny/iAny to represent the intersection. This is not perfect, since
fAny/iAny also include scalar types, but it is good enough for TableGen's
type inferencing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80423 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0ac7faa993d472be4a23e0e58fa6e9372960cfe8
Author: Eric Christopher <echristo@apple.com>
Date: Sat Aug 29 01:12:46 2009 +0000
Make the augmentation size and next set of bytes agree on size,
and make the reference pointer size as it should be.
Fixes an abort on a testcase derived from libunwind's personality
test in 64-bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80414 91177308-0d34-0410-b5e6-96231b3b80d8
commit 83b551c5efdc49183f744103cd8e22a75117d07f
Author: Jeffrey Yasskin <jyasskin@google.com>
Date: Sat Aug 29 00:44:16 2009 +0000
Fix OProfile support after r80406 changed the DebugInfo interface from
GlobalVariables to MDNodes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80411 91177308-0d34-0410-b5e6-96231b3b80d8
commit e54c004ea5ea6c7e89b1cef9531ce05096122bbf
Author: David Goodwin <david_goodwin@apple.com>
Date: Sat Aug 29 00:11:13 2009 +0000
Another stab at fixing up register kill flags after post-RA scheduling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80410 91177308-0d34-0410-b5e6-96231b3b80d8
commit cb7c98d9ef32354166106ff8218fb9fcbb8b2d24
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Sat Aug 29 00:08:18 2009 +0000
Do not assert on too wide splats we don't support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80409 91177308-0d34-0410-b5e6-96231b3b80d8
commit 44e0a6cee931258a05b190f9e6e411a6d276c96a
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Fri Aug 28 23:41:26 2009 +0000
Add missed extract_element pattern
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80408 91177308-0d34-0410-b5e6-96231b3b80d8
commit 15e723d2c6021bbeacad9baa9c0d946d4a19867e
Author: Devang Patel <dpatel@apple.com>
Date: Fri Aug 28 23:24:31 2009 +0000
Reapply 79977.
Use MDNodes to encode debug info in llvm IR.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80406 91177308-0d34-0410-b5e6-96231b3b80d8
commit c299914a58baed2d7cf594494dbba60880d476cd
Author: Evan Cheng <evan.cheng@apple.com>
Date: Fri Aug 28 23:18:09 2009 +0000
Let Darwin linker auto-synthesize stubs and lazy-pointers. This deletes a bunch of nasty code in ARM asm printer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80404 91177308-0d34-0410-b5e6-96231b3b80d8
commit a14f4474b2d915579e9e9bd8bf4080d7f25e7dcd
Author: Eric Christopher <echristo@apple.com>
Date: Fri Aug 28 22:33:43 2009 +0000
Nuke trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80401 91177308-0d34-0410-b5e6-96231b3b80d8
commit c6750c9bc8e555f632777eb1c69793b3b0dc40f6
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 16:14:46 2009 +0000
Fix creation of .bca libraries with EXPORTED_SYMBOLS_LIST, this was putting the
llvm-ld shell wrapper script in the archive, not the relinked object!
Also, rename the temp file to avoid conflicts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80373 91177308-0d34-0410-b5e6-96231b3b80d8
commit 72d34e1a91e3f2b58559f92e5c1716ba10586bf1
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 16:13:45 2009 +0000
Read Makefile.config before using LLVMGCC.
See http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090824/085828.html
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80372 91177308-0d34-0410-b5e6-96231b3b80d8
commit ab4193ba50b6b5fcda5e2230e4705676ec07b463
Author: Edwin Török <edwintorok@gmail.com>
Date: Fri Aug 28 16:12:48 2009 +0000
install-sh chmods to 0755 by default, and this causes 'git diff' to show
that all the Makefiles changed mode.
Fix this by tellint install-sh to chmod
only to 0644, these are not executable files after all!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80371 91177308-0d34-0410-b5e6-96231b3b80d8
commit b5cc6d8ae5a5813f059b0f03511b29c101c3a8ba
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Fri Aug 28 16:06:41 2009 +0000
Short-term workaround for frame-related weirdness on win64.
Some other minor win64 fixes as well.
Patch by Michael Beck!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80370 91177308-0d34-0410-b5e6-96231b3b80d8
commit 422cc43971693fd61517993472065277cb0cc903
Author: Edwin Török <edwintorok@gmail.com>
Date: Fri Aug 28 14:05:07 2009 +0000
rm needs -f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80363 91177308-0d34-0410-b5e6-96231b3b80d8
commit da6633bee39686d02cd348b5c79c9dfc14eea6fd
Author: Edwin Török <edwintorok@gmail.com>
Date: Fri Aug 28 13:35:44 2009 +0000
Remove the llvmprof.out from the test output, otherwise running
make check in a non-clean directory causes it to fail (for example when running
make check twice), since execution counts will differ.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80362 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3f10e8664f46c60e4153da5da0ce33cd6b0b2ea3
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 11:28:24 2009 +0000
Preparation for Optimal Edge Profiling:
This implements the maximum spanning tree algorithm on CFGs according to
weights given by the ProfileEstimator. This is then used to implement Optimal
Edge Profiling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80358 91177308-0d34-0410-b5e6-96231b3b80d8
commit c99a43a3864aee1121af69db21545a3974226d41
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 10:38:26 2009 +0000
Remove profiling output file because two consecutive runs of make check give
error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80357 91177308-0d34-0410-b5e6-96231b3b80d8
commit 354f75a94252e20f1d61ff7b047f34070dcccfc9
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 10:07:41 2009 +0000
Removed unnecessary file creation during test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80356 91177308-0d34-0410-b5e6-96231b3b80d8
commit 975ad9a72fa60d0e8946c9ec584eb5c29d14386e
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 10:00:28 2009 +0000
Pulled all tests into one test. Removed some redundant tests. Rename.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80355 91177308-0d34-0410-b5e6-96231b3b80d8
commit f14af431e0f9724474dfa923ba940ecaf19316c7
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 08:08:22 2009 +0000
Fix -Asserts warning, round two.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80354 91177308-0d34-0410-b5e6-96231b3b80d8
commit 796a639383578ff065b5c32539c88f9adb5327c2
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 07:08:47 2009 +0000
llvm-mc: .lsym is more unsupported than unimplemented, pending a use case appearing.
Also, all one of the file level flags are implemented.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80352 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8388a8fed449aa79d848dd2e7b0cf8650e063028
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 07:08:35 2009 +0000
llvm-mc: Support .comm emission.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80351 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3ab6715ba17ac6726bd92a4514c68c5e58c3c884
Author: Evan Cheng <evan.cheng@apple.com>
Date: Fri Aug 28 06:59:37 2009 +0000
Print a nl before pic labels so they start at a new line. This makes assembly more readable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80350 91177308-0d34-0410-b5e6-96231b3b80d8
commit fd5e315e8d6dca8cab80789552b6bbfef4d960e0
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 06:48:25 2009 +0000
Since all std::cout is gone, also remove iostream include.
(See http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090824/085620.html)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80349 91177308-0d34-0410-b5e6-96231b3b80d8
commit a2aca168e5c7bbb35569f6f77a3cd4e8bc17520a
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 06:41:00 2009 +0000
Readded test from r79615, this tests the complete profiling tool chain. Furhter
tests can test only parts of this system.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80348 91177308-0d34-0410-b5e6-96231b3b80d8
commit df98a14701fe2de1d0b83205f32edcdfef8ca141
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:49:21 2009 +0000
llvm-mc: Support .zerofill emission.
- I'm still trying to figure out the cleanest way to implement this and match the assembler, currently there are some substantial differences.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80347 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1c215be1a50bfd6f0b994d61d0c0548fefa52795
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:49:04 2009 +0000
llvm-mc: Tweak section alignment and size computation to match 'as' closer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80345 91177308-0d34-0410-b5e6-96231b3b80d8
commit 91e7ee60faaf7867aebddbf4915e1422c6895337
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:54 2009 +0000
llvm-mc: Factor getSectionData out of SwitchSection.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80344 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3f952b45c4791659fe6b6addfdc2812f11a21a41
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:46 2009 +0000
llvm-mc: Emit .lcomm as .zerofill.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80343 91177308-0d34-0410-b5e6-96231b3b80d8
commit c12c27bdbc93d517025612eab112f28366256839
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:29 2009 +0000
llvm-mc: Unique zero fill sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80342 91177308-0d34-0410-b5e6-96231b3b80d8
commit 15f1a5cc63c5f08b31c8a67884efd2604067711e
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:22 2009 +0000
llvm-mc: Add const to EmitZeroFill section argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80341 91177308-0d34-0410-b5e6-96231b3b80d8
commit b6eff3bcb6f481500df60e028ceaff6b60336a1d
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:10 2009 +0000
llvm-mc: Fix thinko in emitting values.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80340 91177308-0d34-0410-b5e6-96231b3b80d8
commit a8425d44b7ffa3397ac7d010598e9caab54e1ed4
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:04 2009 +0000
Add MathExtras.h OffsetToAlignment, like RoundUpToAlignment but returns the
offset to the next aligned integer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80339 91177308-0d34-0410-b5e6-96231b3b80d8
commit c24bcdb66bd5b6904147ac443ca44da2660f9223
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:47:56 2009 +0000
Fix -Asserts warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80338 91177308-0d34-0410-b5e6-96231b3b80d8
commit d7e5bacf57cba6f139d726a0c63cb195f38cd39d
Author: Chris Lattner <sabre@nondot.org>
Date: Fri Aug 28 04:48:54 2009 +0000
finish a half formed thought :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80334 91177308-0d34-0410-b5e6-96231b3b80d8
commit ac6a9258ed6e7fa1e1e40ef505799ac54e852be4
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 03:06:28 2009 +0000
Another NO_RUNTIME_LIBRARIES tweak...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80331 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1497c39481d4d8616d4ba1fb2cde490cfc100baa
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 02:20:39 2009 +0000
Tweak NO_RUNTIME_LIBS.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80330 91177308-0d34-0410-b5e6-96231b3b80d8
commit c4823b9ee92e32a666e03406c46a530fcdbdda1a
Author: Chris Lattner <sabre@nondot.org>
Date: Fri Aug 28 00:45:47 2009 +0000
Mark Andersen's as experimental.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80328 91177308-0d34-0410-b5e6-96231b3b80d8
commit a8b647dc112f792cb21b0b675e6d2b300207a4fa
Author: Chris Lattner <sabre@nondot.org>
Date: Fri Aug 28 00:43:14 2009 +0000
Fix PR3913, patch by Jakub Staszak!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80327 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5e1d21856de4bf387cccf8365885c45c87642dfb
Author: Evan Cheng <evan.cheng@apple.com>
Date: Fri Aug 28 00:31:43 2009 +0000
v4, v5 does not support sxtb / sxth.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80322 91177308-0d34-0410-b5e6-96231b3b80d8
commit 66f3f9e7356761c91f8063a38b37293ce750c1c2
Author: Bob Wilson <bob.wilson@apple.com>
Date: Fri Aug 28 00:21:13 2009 +0000
Disable optional bindings for Apple-style builds.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80319 91177308-0d34-0410-b5e6-96231b3b80d8
commit dc8f15c7a771649ab75bdf2dea1b27067ee9f269
Author: Bob Wilson <bob.wilson@apple.com>
Date: Fri Aug 28 00:10:15 2009 +0000
Revert 76080. This broke some powerpc cross compiles.
It also makes the llvmCore build dependent on whatever version of llvm-gcc
happens to be installed on the build machine.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80316 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6decb644026d266aaed9bc51e5840529a4af8df0
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 23:58:10 2009 +0000
Revert r80305, I forgot a dependent change.
--- Reverse-merging r80305 into '.':
U tools/llvm-mc/AsmParser.cpp
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80309 91177308-0d34-0410-b5e6-96231b3b80d8
commit 20b3210d23b9c5633787e3d8bbd98d7cc0083c32
Author: Devang Patel <dpatel@apple.com>
Date: Thu Aug 27 23:51:51 2009 +0000
Closure is a very generic name. Use AppleBlock instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80307 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3edc5f01bcfec50757d8cbdb7cd0fb6abb561d67
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 23:45:06 2009 +0000
llvm-mc: Unique sections in .zerofill.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80305 91177308-0d34-0410-b5e6-96231b3b80d8
commit ab36e15e689a516f8ff2af4c2c0210a90a423652
Author: Gabor Greif <ggreif@gmail.com>
Date: Thu Aug 27 23:44:33 2009 +0000
eliminate all 80-col violations that I have introduced in my recent checkins (and some others more)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80304 91177308-0d34-0410-b5e6-96231b3b80d8
commit 41d850e034d4f33728c8d8d51a3811dbe0fccf8c
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 23:43:28 2009 +0000
Don't build runtime libraries in an Apple style build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80303 91177308-0d34-0410-b5e6-96231b3b80d8
commit f5b6d86316d71c3eae687ecb56abfdfd12679a54
Author: Bruno Cardoso Lopes <bruno.cardoso@gmail.com>
Date: Thu Aug 27 19:57:56 2009 +0000
Revert 80278 for now, it caused a lot of MIPS tests to fail
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80280 91177308-0d34-0410-b5e6-96231b3b80d8
commit 862f67b71f0aaeccdd24a0cbd4d99a9a9413c43a
Author: Bruno Cardoso Lopes <bruno.cardoso@gmail.com>
Date: Thu Aug 27 19:40:40 2009 +0000
Revamp our friend Mips :)
Add MO flags to simplify the printing of relocations.
Remove the support for printing large code model relocs (which
aren't supported anyway).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80278 91177308-0d34-0410-b5e6-96231b3b80d8
commit 90adb6c4bd8c285660db59e5ac10fd71fa3c1076
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 18:16:24 2009 +0000
Don't mark CMOV_GR8 as two-address, or commutable, since it's a pseudo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80271 91177308-0d34-0410-b5e6-96231b3b80d8
commit fa4c3253f6dd9f328549aa73e2710981ac3a2881
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 18:14:26 2009 +0000
Adjust the MachineBasicBlock verifier rules to be more
tolerant of blocks that end with "unreachable".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80270 91177308-0d34-0410-b5e6-96231b3b80d8
commit 20391ca63ee850ffd6fb86bfd058ff61b698197d
Author: Eric Christopher <echristo@apple.com>
Date: Thu Aug 27 18:08:16 2009 +0000
Add FIXME for when we support more specific XMM registers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80269 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3d82bbd2ddfb775d59f271cc25cade73551f976c
Author: Eric Christopher <echristo@apple.com>
Date: Thu Aug 27 18:07:15 2009 +0000
Nuke trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80268 91177308-0d34-0410-b5e6-96231b3b80d8
commit f8b840f45084d2486be3fd074807d9a37564a33d
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 18:02:03 2009 +0000
Use stripPointerCasts instead of doing the same manually.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80267 91177308-0d34-0410-b5e6-96231b3b80d8
commit a578538e9fde98cb05ce9740d7c63aafbd1c69f4
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:59:08 2009 +0000
Minor code simplification.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80266 91177308-0d34-0410-b5e6-96231b3b80d8
commit c99596ddbf78116260c177edcfad9261bf186b68
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:55:13 2009 +0000
Teach getUnderlyingObject and skipPointerCasts about GlobalAliases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80265 91177308-0d34-0410-b5e6-96231b3b80d8
commit fe1256903404065be182735c1402411c4940e9e5
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:54:15 2009 +0000
Be somewhat more consistent about const qualifiers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80264 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3c8455152e3d41b8e5f7b33c3ed99c7a8105f5a8
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:52:56 2009 +0000
Global Aliases are not identifiable objects.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80263 91177308-0d34-0410-b5e6-96231b3b80d8
commit 54e98d921f7eabfd3baae5399e835ddc39a75e6c
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:51:25 2009 +0000
Handle TargetData with const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80262 91177308-0d34-0410-b5e6-96231b3b80d8
commit ec966442362eeff9b24c9eee2b11188ab4a5246b
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:29:49 2009 +0000
Strip trailing whitespace from blank lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80259 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7bec0f5f90c6d917beb4b1433c847aa132cdfacf
Author: Gabor Greif <ggreif@gmail.com>
Date: Thu Aug 27 17:07:35 2009 +0000
re-apply r80197, now that iterator.h is not mentioned any more
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80254 91177308-0d34-0410-b5e6-96231b3b80d8
commit aa152ae811d8e0ffd01c7a8b454d595cb1a1a31f
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 16:25:49 2009 +0000
Hopefully the final missing part :(
scalar_to_vector is fully legal now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80251 91177308-0d34-0410-b5e6-96231b3b80d8
commit 872393c20ee29eaae1746deed115f06192526f64
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 16:10:17 2009 +0000
Forgot about actual change :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80250 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0a21bce095161b98a3671b2aa0e63a020b03e120
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 16:04:47 2009 +0000
scalar_to_vector is fully legal now (implemented as subreg accesses)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80249 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2b6e274f8669337cb148c1df4e060a41af14cc1e
Author: Devang Patel <dpatel@apple.com>
Date: Thu Aug 27 15:32:38 2009 +0000
Remove an entry from ValueMap before removing elements.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80247 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6e8275030925dbd3beeb873d0bf605f0c0c67f0b
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 14:51:42 2009 +0000
Ok, sometimes it's profitable to turn scalar_to_vector stuff into subreg access.
Add a testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80246 91177308-0d34-0410-b5e6-96231b3b80d8
commit baee7b2a5501a45a59554b5bafd87264a2edc442
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 14:38:44 2009 +0000
Transform float scalar_to_vector into subreg accesses.
No idea whether this is profitable or not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80245 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9daa0677ac901b0f54bdba31dc3913b92df58e50
Author: Misha Brukman <brukman+llvm@gmail.com>
Date: Thu Aug 27 14:14:21 2009 +0000
STRD and LDRD require ARMv5TE, not just ARMv5T.
See http://llvm.org/PR4687 for more info and links.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80244 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4dd75744b70c1a3f686ce5a43952124fb0de7ad9
Author: Benjamin Kramer <benny.kra@googlemail.com>
Date: Thu Aug 27 12:02:34 2009 +0000
Inverse logic to increase portability.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80240 91177308-0d34-0410-b5e6-96231b3b80d8
commit 07f1cdae7f327c15cdfc0d68c8500a275dba72b2
Author: Sanjiv Gupta <sanjiv.gupta@microchip.com>
Date: Thu Aug 27 11:54:38 2009 +0000
To make mcc16 run correctly on mac.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80239 91177308-0d34-0410-b5e6-96231b3b80d8
commit 006e46ee524c49f00fdfa4d0b582c7ecd693c95b
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 08:17:51 2009 +0000
llvm-mc/Mach-O: Add MCCodeEmitter support, for encoding instructions.
- No relocations yet, of course.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80235 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2f37963b50b496c99300850683ed41db4f9431b6
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 08:12:55 2009 +0000
llvm-mc/X86: Implement single instruction encoding interface for MC.
- Note, this is a gigantic hack, with the sole purpose of unblocking further
work on the assembler (its also possible to test the mathcer more completely
now).
- Despite being a hack, its actually good enough to work over all of 403.gcc
(although some encodings are probably incorrect). This is a testament to the
beauty of X86's MachineInstr, no doubt! ;)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80234 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1f32816fdaf9ba3a7e6e5705f94be145fafde497
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 07:58:57 2009 +0000
llvm-mc: Print encodings after the instruction, and only when we have an asm
printer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80233 91177308-0d34-0410-b5e6-96231b3b80d8
commit 75513bd24edb8ea2142145b448df7a4cdaeaa335
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 07:58:05 2009 +0000
X86: Mark EH_RETURN as code-gen-only.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80232 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0125384b4a902da228354e5a201cd4cf4f2f1a4a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 07:57:12 2009 +0000
Add {MCInst,MCOperand}::{print,dump}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80231 91177308-0d34-0410-b5e6-96231b3b80d8
commit 160f252aa8189beba57b0b025b0206a3910c4ae9
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 07:56:39 2009 +0000
llvm-mc: Only show instruction encodings with --show-encoding.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80230 91177308-0d34-0410-b5e6-96231b3b80d8
commit f449eb343e70f1e4e8f982939d53c083a1bc5ba3
Author: Gabor Greif <ggreif@gmail.com>
Date: Thu Aug 27 06:59:20 2009 +0000
the buildbots revealed one more breakage. fix. (why didn't I see this?)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80227 91177308-0d34-0410-b5e6-96231b3b80d8
commit 765f012f22956a3085e1e84441af9d880bf65f35
Author: Gabor Greif <ggreif@gmail.com>
Date: Thu Aug 27 06:41:46 2009 +0000
Clean up the minor mess I caused with removing iterator.h. I shall take care of 80-col violations and the FIXME later. (Thanks goodness that I live in another continent, so the monkeypox did not strike me :-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80224 91177308-0d34-0410-b5e6-96231b3b80d8
commit bc42440879f2a302f2801e224828cfdccd5a92a7
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 06:29:33 2009 +0000
Implement a new optimization in the inliner: if inlining multiple
calls into a function and if the calls bring in arrays, try to merge
them together to reduce stack size. For example, in the testcase
we'd previously end up with 4 allocas, now we end up with 2 allocas.
As described in the comments, this is not really the ideal solution
to this problem, but it is surprisingly effective. For example, on
176.gcc, we end up eliminating 67 arrays at "gccas" time and another
24 at "llvm-ld" time.
One piece of concern that I didn't look into: at -O0 -g with
forced inlining this will almost certainly result in worse debug
info. I think this is acceptable though given that this is a case
of "debugging optimized code", and we don't want debug info to
prevent the optimizer from doing things anyway.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80215 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2d1272cbbc0ba9bffbc702e67c59a8d12ec93660
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 06:20:45 2009 +0000
the inliner shouldn't crash on this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80214 91177308-0d34-0410-b5e6-96231b3b80d8
commit ea3bccb555f65187ecbb134d26aab8103ca167b2
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 06:11:15 2009 +0000
For now, only run MC tests if X86 is configured.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80213 91177308-0d34-0410-b5e6-96231b3b80d8
commit 17d1a4db879f7af0fd20dd78f704ff9f82aabbe1
Author: Bill Wendling <isanbard@gmail.com>
Date: Thu Aug 27 05:49:50 2009 +0000
This is passing for PPC on Mac OS X.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80210 91177308-0d34-0410-b5e6-96231b3b80d8
commit cf5d1d8ceb34c56f21bd3f41f5329407e8d090ce
Author: Bill Wendling <isanbard@gmail.com>
Date: Thu Aug 27 05:35:28 2009 +0000
Revert accidental commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80208 91177308-0d34-0410-b5e6-96231b3b80d8
commit f659a56d993743e0d51beb2c94fbe187637e5918
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 04:43:05 2009 +0000
unbreak the build, yay for symlinks + makefiles. :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80205 91177308-0d34-0410-b5e6-96231b3b80d8
commit d1586b1a1d27d5efeb8e487bbeb7ed255159e53b
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 04:32:07 2009 +0000
reduce header #include'age
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80204 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1ba292d8cfe7b5bf705c5bb307f63f0c0bbe8979
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 04:20:52 2009 +0000
enhance InlineFunction to be able to optionally return
a the list of static allocas that it inlined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80203 91177308-0d34-0410-b5e6-96231b3b80d8
commit eb87590c5346b7c17032242e2232a6c1d217f964
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 04:02:30 2009 +0000
smallvectorize the list of returns built by CloneAndPruneFunctionInto.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80202 91177308-0d34-0410-b5e6-96231b3b80d8
commit 612956220f38126feaacceb378cf105043739271
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 03:56:43 2009 +0000
remove CloneTrace, which appears to be dead since 2004.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80201 91177308-0d34-0410-b5e6-96231b3b80d8
commit ae56c0de911bf5328ffda48e51ce37bcd7aa0d76
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 03:51:50 2009 +0000
reduce inlining factor some stuff out to a static helper function,
and other code cleanups. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80199 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5537c20c55869fac64e4f5738f8eab2080cc79c6
Author: Bill Wendling <isanbard@gmail.com>
Date: Thu Aug 27 03:32:50 2009 +0000
Revert accidental commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80198 91177308-0d34-0410-b5e6-96231b3b80d8
commit 25cd944a98bcf3b1542c71d2654fe61e28562867
Author: Bill Wendling <isanbard@gmail.com>
Date: Thu Aug 27 03:29:26 2009 +0000
--- Reverse-merging r80147 into '.':
A include/llvm/ADT/iterator.cmake
U autoconf/configure.ac
--- Reverse-merging r80161 into '.':
U cmake/config-ix.cmake
--- Reverse-merging r80171 into '.':
U Makefile
--- Reverse-merging r80173 into '.':
U configure
U include/llvm/Config/config.h.in
--- Reverse-merging r80180 into '.':
A include/llvm/ADT/iterator.h.in
Despite common miscomceptions, iterator.h is alive and well. It broke the build
bots for several hours. And yet no one bothered to look at them.
Gabor and Doug, please review your changes and make sure that they actually
build before resubmitting them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80197 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0d0598f6281c0b1ae107b2fa2fabd69ec21263c4
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 02:43:49 2009 +0000
Add some checks for MachineCFG consistency. Use AnalyzeBranch and
do extra checking when it succeeds, as those are cases where
CodeGen will be doing particularly interesting CFG modifications.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80196 91177308-0d34-0410-b5e6-96231b3b80d8
commit 92e5548870b7945deb93f7956ea816f67d34b73f
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 02:08:37 2009 +0000
Update CMake
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80195 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2f377df6bba8110c3bc0bf5185d33d1f46b54c6b
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 01:34:22 2009 +0000
llvm-mc: Tweak MCCodeEmitter skeleton.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80193 91177308-0d34-0410-b5e6-96231b3b80d8
commit cdde2975f55c43493f3318630985e7a1e8e14384
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 01:25:57 2009 +0000
Initialize the PoisonMemory member before initializing
members that call methods that read the PoisonMemory member.
This fixes potential spurious (though probably otherwise
harmless) poising of unused memory, and fixes the
associated valgrind error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80192 91177308-0d34-0410-b5e6-96231b3b80d8
commit 363cd759d4186bdae7b49e89a0d434749d6198aa
Author: Evan Cheng <evan.cheng@apple.com>
Date: Thu Aug 27 01:23:50 2009 +0000
Fix PR4789. Teach eliminateFrameIndex how to handle VLDRQ and VSTRQ which cannot fold any immediate offset.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80191 91177308-0d34-0410-b5e6-96231b3b80d8
commit 511e71114c34c8ddae2b44b996502a5efe1adc3a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 01:15:54 2009 +0000
Add missing declarations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80190 91177308-0d34-0410-b5e6-96231b3b80d8
commit 12266adfd9dc571aafb7ec7f8b69d85c7a6e352a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 00:51:57 2009 +0000
Sketch TargetRegistry support for MCCodeEmitter abstract interface.
- Of course, nothing actually can provide this interface yet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80188 91177308-0d34-0410-b5e6-96231b3b80d8
commit adb77e4c37d183af9a2f29b6df8b0dfee562bbba
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 00:38:04 2009 +0000
Try to make MSVC just a little happier.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80187 91177308-0d34-0410-b5e6-96231b3b80d8
commit b59f15a1d2c40f978d93f43b006546f455a65f04
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 00:31:47 2009 +0000
X86FastISel support for loading and storing values of type i1.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80186 91177308-0d34-0410-b5e6-96231b3b80d8
commit 29b998f5248398e6cfe323a5ebd7419bb77975b4
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 00:14:12 2009 +0000
Expand i8 selects into control flow instead of 16-bit conditional
moves. This avoids the need to promote the operands (or implicitly
extend them, a partial register update condition), and can reduce
i8 register pressure. This substantially speeds up code such as
write_hex in lib/Support/raw_ostream.cpp.
subclass-coalesce.ll is too trivial and no longer tests what it was
originally intended to test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80184 91177308-0d34-0410-b5e6-96231b3b80d8
commit a7bddb52ed1bb68e8c654c522b885f941c540d04
Author: Gabor Greif <ggreif@gmail.com>
Date: Wed Aug 26 23:35:33 2009 +0000
now that include/llvm/ADT/iterator.h.in is not attempted to be built, its prerequisite can go away too
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80180 91177308-0d34-0410-b5e6-96231b3b80d8
commit b5b99e6fa820047460b362d5d981766ac313b1ce
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 23:12:33 2009 +0000
Simplify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80176 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2eff5fff4d600df3d29f74dd195bc564a48206b4
Author: Douglas Gregor <doug.gregor@gmail.com>
Date: Wed Aug 26 22:59:05 2009 +0000
Regenerate configure
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80173 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3eace462948ecfec5ee53127c445e4d0d5f1ae89
Author: Gabor Greif <ggreif@gmail.com>
Date: Wed Aug 26 22:55:19 2009 +0000
eliminate references to ADT/iterator.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80171 91177308-0d34-0410-b5e6-96231b3b80d8
commit d68b1af98ca9bb39ac51d046a37266ceb24e38b5
Author: Owen Anderson <resistor@mac.com>
Date: Wed Aug 26 22:55:11 2009 +0000
Make this into a static method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80170 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2f01e9983a054713a49d2ac2124e8ca26d128574
Author: Bob Wilson <bob.wilson@apple.com>
Date: Wed Aug 26 22:50:39 2009 +0000
Fix bad length argument to substr calls. Apparently I'm the first one to
attempt more than 2 constraints on an instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80169 91177308-0d34-0410-b5e6-96231b3b80d8
commit 418706d9a8a304630ddecc3709598d823bee8188
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 22:49:51 2009 +0000
llvm-mc/Mach-O: Unique sections properly, so we don't get duplicate text
sections, etc.
- The quick and dirty way, just clone the TargetLoweringObjectFile
code. Eventually this should be shared... somehow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80168 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1ea86df7ddb44659fbf694934abb2177beed8637
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 22:13:22 2009 +0000
llvm-mc/Mach-O: Don't put assembler temporary labels in the symbol table.
- I moved section creation back into AsmParser. I think policy decisions like
this should be pushed higher, not lower, when possible (in addition the
assembler has flags which change this behavior, for example).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80162 91177308-0d34-0410-b5e6-96231b3b80d8
commit b003759e247f0edb3b691849598ba252f51ae624
Author: Douglas Gregor <doug.gregor@gmail.com>
Date: Wed Aug 26 22:12:02 2009 +0000
De-bork CMake build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80161 91177308-0d34-0410-b5e6-96231b3b80d8
commit e92cc8d5591cb7ded636c91cc98c741af62ec85f
Author: Eric Christopher <echristo@apple.com>
Date: Wed Aug 26 21:44:57 2009 +0000
Rework getPersonalityIndex slightly - 0 is now a valid and not-NULL
personality function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80153 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2a1099a6809307eee7521b1f725ef89370f7ebd1
Author: Gabor Greif <ggreif@gmail.com>
Date: Wed Aug 26 21:36:59 2009 +0000
nobody includes llvm/ADT/iterator.h any more,
so get rid of this monstrosity. iterator.h.in is scheduled for deletion in my working copy,
but I wait till I see that configure gets regenerated, as it depends on it. I'll commit
then.
There are still some AC_* tests in the configure.ac dealing with iterators, those can
be zapped probably too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80147 91177308-0d34-0410-b5e6-96231b3b80d8
commit c87d5ae938fe0c3b0afc3aefef1dc6a9873516e4
Author: Eric Christopher <echristo@apple.com>
Date: Wed Aug 26 21:30:49 2009 +0000
If we're emitting additional CIEs due to personality functions
don't emit the default one. Explicitly check for the NULL
CIE later.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80146 91177308-0d34-0410-b5e6-96231b3b80d8
commit 84603633a7609ec55de5d8145048efbbf45e5c9c
Author: Eric Christopher <echristo@apple.com>
Date: Wed Aug 26 21:27:09 2009 +0000
Nuke trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80145 91177308-0d34-0410-b5e6-96231b3b80d8
commit f8c4bb7da634d77a7f2cff601b8d3f53c143e9ad
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 21:22:22 2009 +0000
llvm-mc/Mach-O: Set .subsections_via_symbols flag properly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80144 91177308-0d34-0410-b5e6-96231b3b80d8
commit 87f46499f001931c031002473a73793772852e51
Author: Bill Wendling <isanbard@gmail.com>
Date: Wed Aug 26 21:00:34 2009 +0000
Don't submit test directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80139 91177308-0d34-0410-b5e6-96231b3b80d8
commit 441e205eb82a0ebd70b807d8560c5a76188eabc5
Author: Reid Kleckner <reid@kleckner.net>
Date: Wed Aug 26 20:58:25 2009 +0000
Allocate the module provider in the Kaleidoscope code on the heap, not the stack, so that it can be properly deleted. Also update the tutorial with the new code. This fixes PR4762, hopefully better than the last time.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80138 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4952aa5163ff4e87910d461f06316cc793ca95b8
Author: Gabor Greif <ggreif@gmail.com>
Date: Wed Aug 26 19:16:32 2009 +0000
Remove all the LLVM_COMPACTIFY_SENTINELS-related macro magic as discussed with Chris on IRC. Anybody wanting to debug sentinel dereferencing problems must revert this patch and perform the indicated modifications.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80128 91177308-0d34-0410-b5e6-96231b3b80d8
commit ffefef35790db7819c72ba7e53c73b8e5931e851
Author: Oscar Fuentes <ofv@wanadoo.es>
Date: Wed Aug 26 18:37:05 2009 +0000
CMake: Removed outdated TODO.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80124 91177308-0d34-0410-b5e6-96231b3b80d8
commit 66448030685cdc3c9bfd52449e4027258aaba480
Author: Venkatraman Govindaraju <venkatra@cs.wisc.edu>
Date: Wed Aug 26 18:24:12 2009 +0000
Generate section for bss and enable weak symbols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80121 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3a392c8714c745ffdc77da0a8589c7b0df03515f
Author: Bob Wilson <bob.wilson@apple.com>
Date: Wed Aug 26 18:11:50 2009 +0000
Convert some more Neon tests to FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80120 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5e69950d5391bdf294b415bf39dd44f9f40556a1
Author: Dale Johannesen <dalej@apple.com>
Date: Wed Aug 26 18:10:32 2009 +0000
Alter 79292 to produce output that actually assembles.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80119 91177308-0d34-0410-b5e6-96231b3b80d8
commit 23f2034aaff80f52b309ee17bfa7a9fc801c9677
Author: Mike Stump <mrs@apple.com>
Date: Wed Aug 26 18:02:19 2009 +0000
Allow unsigned long long DenseMapInfo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80118 91177308-0d34-0410-b5e6-96231b3b80d8
commit b1b88455b18224867a8d2fc6c3202b6ce12e0a1c
Author: Bob Wilson <bob.wilson@apple.com>
Date: Wed Aug 26 17:39:53 2009 +0000
Remove unneeded ARM-specific DAG nodes for VLD* and VST* Neon operations.
The instructions can be selected directly from the intrinsics. We will need
to add some ARM-specific nodes for VLD/VST of 3 and 4 128-bit vectors, but
those are not yet implemented.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80117 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0defefd8ce9f13cecba8c988897c3224a25e96f8
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Wed Aug 26 17:39:40 2009 +0000
Add extload expansion for f128
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80116 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3e72169c1b197ef8c5b4c663e2eee4551a3a7178
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Wed Aug 26 17:39:23 2009 +0000
Unbreak FP128 stuff in cbe
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80115 91177308-0d34-0410-b5e6-96231b3b80d8
commit 644cdc3c64cb485c6a21d1bfb126c107e5b40d64
Author: Oscar Fuentes <ofv@wanadoo.es>
Date: Wed Aug 26 17:05:06 2009 +0000
Ignore -fPIC test on Windows. Suggested by Yonggang Luo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80111 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8427b6b0529e66663737b39ea51a1fbdbbbbd534
Author: Douglas Gregor <doug.gregor@gmail.com>
Date: Wed Aug 26 16:33:57 2009 +0000
Unbreak CMake build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80109 91177308-0d34-0410-b5e6-96231b3b80d8
commit 886f20275a78a1b03b83a8145a62f5e4cfbb1c99
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Wed Aug 26 16:26:09 2009 +0000
Expand scalar_to_vector - we don't have any isel logic for it now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80107 91177308-0d34-0410-b5e6-96231b3b80d8
commit 75c687bcc528eb81dc693d63f7aff9185b29e56f
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 16:06:11 2009 +0000
Add comments detailing a known bug, so that people writing other
backends don't use it as an example.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80105 91177308-0d34-0410-b5e6-96231b3b80d8
commit 32b17ffaa8593d25728c9ebad7e82a45c16f817c
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 15:57:57 2009 +0000
-fast is now -O0. -fast-isel is no longer experimental.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80104 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4637d177299aed45c6be7ca24e003771f33fd5d6
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 15:56:38 2009 +0000
Move ProfileInfo::Edge's operator<< out of line. Among other benefits,
this eliminates the ATTRIBUTE_USED, which wasn't being used in a manner
acceptable to some GCC versions, according to the buildbots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80103 91177308-0d34-0410-b5e6-96231b3b80d8
commit a064a395489f954b0eaafb351d15b456699dea8e
Author: Andreas Neustifter <astifter@gmx.at>
Date: Wed Aug 26 15:18:38 2009 +0000
Bugfix for r80100, forgot include. Sorry.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80101 91177308-0d34-0410-b5e6-96231b3b80d8
commit 70eeb51888ed9e73d058a3b0c889c295219e2109
Author: Andreas Neustifter <astifter@gmx.at>
Date: Wed Aug 26 15:13:44 2009 +0000
Implemented comments from Daniel Dunbar.
(See http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090817/084958.html)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80100 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9959b052347ceddec3576013485f2564b99b944e
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 14:59:13 2009 +0000
Don't use INSERT_SUBREG to model anyext operations on x86-64, as it
leads to partial-register definitions. To help avoid redundant
zero-extensions, also teach the h-register matching patterns that
use movzbl to match anyext as well as zext.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80099 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9927f829a68b645ed5813b25e21a881d94fc80d8
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 14:53:06 2009 +0000
Create a ScalarEvolution-based AliasAnalysis implementation.
This is a simple AliasAnalysis implementation which works by making
ScalarEvolution queries. ScalarEvolution has a more complete understanding
of arithmetic than BasicAA's collection of ad-hoc checks, so it handles
some cases that BasicAA misses, for example p[i] and p[i+1] within the
same iteration of a loop.
This is currently experimental. It may be that the main use for this pass
will be to help find cases where BasicAA can be profitably extended, or
to help in the development of the overall AliasAnalysis infrastructure,
however it's also possible that it could grow up to become a directly
useful pass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80098 91177308-0d34-0410-b5e6-96231b3b80d8
commit 596114dc06489e5bd79e3e8ffc60d43bbf3668e3
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 14:34:12 2009 +0000
Fix a missing newline, now that Value's operator<< doesn't add one of its own.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80096 91177308-0d34-0410-b5e6-96231b3b80d8
commit 84c793aef4170e0d5be4d2c6fcb26a9e56cad21b
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 14:32:17 2009 +0000
Use SetVector instead of std::set so that alias relations are tested and
printed in a deterministic order.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80095 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8fa9da2b34655a15102a0845617a9951ee945ed6
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 13:58:10 2009 +0000
llvm-mc/Mach-O: Add support for relocations.
- I haven't really tried to find the "right" way to store the fixups or apply
them, yet. This works, but isn't particularly elegant or fast.
- Still no evaluation support, so we don't actually ever not turn a fixup into
a relocation entry.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80089 91177308-0d34-0410-b5e6-96231b3b80d8
commit c3c1992d46f418c45a8e0b5fdb3c452c90aa960e
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 13:57:54 2009 +0000
llvm-mc/Mach-O: Move symbol indices into the MCSymbolData structure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80088 91177308-0d34-0410-b5e6-96231b3b80d8
commit cefbda1f46cc612e074fdcc1d8aab712aba085e7
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 13:57:44 2009 +0000
llvm-mc/Mach-O: Dump relocations and section data (optionally) in my Mach-O dumper.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80087 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4486ac16542e9dd843778c5f684e1cd9d7bb3945
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 13:57:37 2009 +0000
llvm-mc: Add symbol entries for undefined symbols used in .fill and .org.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80086 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7c672df8b969b7514438228bed80cfad6e9c473e
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Wed Aug 26 13:44:29 2009 +0000
Add dummy inline asm handling for 'r' constraint. This fixes PR4778
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80085 91177308-0d34-0410-b5e6-96231b3b80d8
commit 39fd40ae8671ecff6a1857b5a0156e52284c4e5c
Author: Andreas Neustifter <astifter@gmx.at>
Date: Wed Aug 26 13:33:09 2009 +0000
Moved isDeclaration() check further down to allow for function counts for
declarations if necessary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80084 91177308-0d34-0410-b5e6-96231b3b80d8
commit 92183c031a21857a580b38795272ce80863b9ebf
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 09:16:57 2009 +0000
llvm-mc: Change MCContext value table to take const MCSymbol*s.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80079 91177308-0d34-0410-b5e6-96231b3b80d8
commit b9d13ac6e4228451c6fe54566064978597aabc1b
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 09:16:46 2009 +0000
llvm-mc: Make MCValue take const MCSymbol*s.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80078 91177308-0d34-0410-b5e6-96231b3b80d8
commit cb73cfe2496d5e70d8cc4c89e7de29373b348353
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 09:16:34 2009 +0000
llvm-mc: Make non-sensical max bytes to .align an error.
Also, warn about overflow in alignment values.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80077 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3e64a6cc0e75cf654fd23ac9ffa1a9a1d3d911e9
Author: Andreas Neustifter <astifter@gmx.at>
Date: Wed Aug 26 09:05:21 2009 +0000
Changed std::cout to outs(), retaining formating.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80076 91177308-0d34-0410-b5e6-96231b3b80d8
commit 94060421ce73922e71c183fba0fda8bace7d0e2d
Author: Devang Patel <dpatel@apple.com>
Date: Wed Aug 26 05:01:18 2009 +0000
Revert 79977. It causes llvm-gcc bootstrap failures on some platforms.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80073 91177308-0d34-0410-b5e6-96231b3b80d8
commit 66d02907de42fa311fb2b512e820277bb1a61e7c
Author: Chris Lattner <sabre@nondot.org>
Date: Wed Aug 26 05:00:16 2009 +0000
some mips and some sparc compilers apparently
predefine mips and sparc respectively. Just overrule them :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80072 91177308-0d34-0410-b5e6-96231b3b80d8
commit 202ced1e32f5a88a8c865e62ea10c88a712c3fab
Author: Venkatraman Govindaraju <venkatra@cs.wisc.edu>
Date: Wed Aug 26 04:50:17 2009 +0000
test commit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80070 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3eb9a3f37ed8ee8e026d2dfebe6bae08df4e615d
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 04:28:45 2009 +0000
llvm-mc: Fix tests for python variations in int printing, sigh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80069 91177308-0d34-0410-b5e6-96231b3b80d8
commit 53a9082d2e95f33980ef2b7f5104e0cc46d6342d
Author: Chris Lattner <sabre@nondot.org>
Date: Wed Aug 26 04:21:30 2009 +0000
fix some funky indentation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80068 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0f56d41709c27ec2f0637e19881fefd90e31c22b
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 04:13:32 2009 +0000
llvm-mc/Mach-O: Add section padding where needed (to align the next section).
Also, simplify some of Mach-O writer code which can now use section addresses.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80067 91177308-0d34-0410-b5e6-96231b3b80d8
commit b3730b1a3de7fe37a660bd30d3d0d55bcea22d1d
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 02:48:04 2009 +0000
llvm-mc/Mach-O: Set addresses for symbols.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80065 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7fd6b0fff74a7c9fbc054b3303fee1a8f22002b2
Author: Dale Johannesen <dalej@apple.com>
Date: Wed Aug 26 01:08:21 2009 +0000
Add an 'inline hint' attribute to represent source
code hints that it would be a good idea to inline
a function ("inline" keyword). No functional change
yet; FEs do not emit this and inliner does not use it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80063 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2e1a5d0b91503b8d5ada9fe0b19567daca2f1c6f
Author: Devang Patel <dpatel@apple.com>
Date: Wed Aug 26 00:39:50 2009 +0000
Add isClosure() predicate. This is used to add DW_AT_APPLE_block attribute.
Patch by Caroline Tice.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80061 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6d294da8f845a8d611529759d194315b76b44a6e
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 00:18:21 2009 +0000
llvm-mc: Improve indirect symbol support (add the indirect index table).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80059 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3b126fbc67c6279898f8ca0c31f233a3a56b31d9
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 00:13:22 2009 +0000
Remove unused variables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80058 91177308-0d34-0410-b5e6-96231b3b80d8
commit bdd4dc67fb10d0f304bec21c924263f8444ae7a7
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 00:10:55 2009 +0000
llvm-mc: Add MCSection::isDefined()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80057 91177308-0d34-0410-b5e6-96231b3b80d8
commit 917614663633aa0ff1bdf7208862e8b7e25dd911
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 23:27:45 2009 +0000
Fix the InsertAtEnd form of ShuffleVectorInst constructor to use
the correct type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80050 91177308-0d34-0410-b5e6-96231b3b80d8
commit e6803b821738076b5b2299c1cd496be0d0042362
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 23:17:54 2009 +0000
Eliminate the unused Context argument on one of the ICmpInst and FCmpInst
constructors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80049 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4e46ac9407307942712236f8c91875ef323c182f
Author: Gabor Greif <ggreif@gmail.com>
Date: Tue Aug 25 23:02:21 2009 +0000
revert r78628 and r78803 as these are not needed any more
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80048 91177308-0d34-0410-b5e6-96231b3b80d8
commit 58d95377713fa32cbf129e19f4005f4863f9cdb3
Author: Scott Michel <scottm@aero.org>
Date: Tue Aug 25 22:37:34 2009 +0000
Updated i128 sext support for CellSPU backend, contributed by Ken Werner (IBM)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80042 91177308-0d34-0410-b5e6-96231b3b80d8
commit 91bf99a35153b00098633f214207c308c52acdcd
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 22:29:08 2009 +0000
Use covariant return types for Instruction::clone, and eliminate
the forms of ExtractElementInst and InsertElementInst that are
equivalent to clone.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80041 91177308-0d34-0410-b5e6-96231b3b80d8
commit 97be9d37d93c38bc82950e0373cd3a8d1d2aa024
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 22:27:22 2009 +0000
Get rid of this horrible "benign race" by exploiting ManagedStatic to initialize
the array on its first access.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80040 91177308-0d34-0410-b5e6-96231b3b80d8
commit ba4fe8b91352f65caaf2a30f234b5006afd1cf2b
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 22:24:20 2009 +0000
This should use isIndenticalToWhenDefined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80039 91177308-0d34-0410-b5e6-96231b3b80d8
commit fc00c4a2407c1b30a19fef9ec0a1ae00f7f7472d
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 22:11:20 2009 +0000
Rename Instruction::isIdenticalTo to Instruction::isIdenticalToWhenDefined,
and introduce a new Instruction::isIdenticalTo which tests for full
identity, including the SubclassOptionalData flags. Also, fix the
Instruction::clone implementations to preserve the SubclassOptionalData
flags. Finally, teach several optimizations how to handle
SubclassOptionalData correctly, given these changes.
This fixes the counterintuitive behavior of isIdenticalTo not comparing
the full value, and clone not returning an identical clone, as well as
some subtle bugs that could be caused by these.
Thanks to Nick Lewycky for reporting this, and for an initial patch!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80038 91177308-0d34-0410-b5e6-96231b3b80d8
commit e73ff31d813cdc36e334404992c42bfef7842c95
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 21:31:39 2009 +0000
Revert last patch. We need to put this into TargetLowering. There will be a lot
of EH stuff going into there, so we can wait to add them all then.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80036 91177308-0d34-0410-b5e6-96231b3b80d8
commit 12d46f5ea460e149882e39dc25c649580a161141
Author: Gabor Greif <ggreif@gmail.com>
Date: Tue Aug 25 21:25:22 2009 +0000
re-committing yesterday's r79938.
This time there is no additional include of llvm/Config/config.h
at all. Instead I use a hard-coded preprecessor symbol:
LLVM_COMPACTIFY_SENTINELS
(should this work on the self-hosting buildbot, then
cleanups come next)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80035 91177308-0d34-0410-b5e6-96231b3b80d8
commit b81243240cbfc573324c9760a77e6b1463955bab
Author: Daniel Dunbar <daniel@zuster.org>
Date: Tue Aug 25 21:10:45 2009 +0000
llvm-mc: Add statistic for number of fragments emitted by the assembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80033 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4f61e5051fa25f4abb928573db6ea52585748b93
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 21:09:50 2009 +0000
Add the #include here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80032 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4b90952a9dd2b26ef6dd359cb8e4f7139e40f864
Author: Chris Lattner <sabre@nondot.org>
Date: Tue Aug 25 21:01:56 2009 +0000
remove some dead lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80031 91177308-0d34-0410-b5e6-96231b3b80d8
commit 538dfe54dd1c732208b2dbb00057b0a58cdeb61e
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 21:01:42 2009 +0000
Comment formatting. Removing of unused #include and type forwarding.
OCD is fun!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80030 91177308-0d34-0410-b5e6-96231b3b80d8
commit f2db1075b5a1bf1ea8f2d2c618917651150b8a94
Author: Chris Lattner <sabre@nondot.org>
Date: Tue Aug 25 20:57:38 2009 +0000
convert to filecheck style
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80029 91177308-0d34-0410-b5e6-96231b3b80d8
commit 864504a5810fdfd23e1774de0b935dcdafb91645
Author: Chris Lattner <sabre@nondot.org>
Date: Tue Aug 25 20:49:04 2009 +0000
convert to filecheck
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80025 91177308-0d34-0410-b5e6-96231b3b80d8
commit e371d63e2a817eda5e3563eb574c99fa08df7e6d
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 20:21:17 2009 +0000
Add a target asm info hook to specify that particular bits of data in the FDE
should be forced to 32-bits (.long) even on 64-bit architectures. Darwin wants
these bits to be 64-bits (.quad). However, other platforms may disagree.
This is just the info right now and is part of a work-in-progress which needs
this. We'll add the actual *use* of this soon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80024 91177308-0d34-0410-b5e6-96231b3b80d8
commit b0b96906a0018edbadd9f4f3b17b48ec3c29838e
Author: Daniel Dunbar <daniel@zuster.org>
Date: Tue Aug 25 20:21:09 2009 +0000
EXIT STAGE LEFT: gccas, gccld
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80023 91177308-0d34-0410-b5e6-96231b3b80d8
commit 13808ef92db201ec027004b4fd8eb2db55c5aae4
Author: Sanjiv Gupta <sanjiv.gupta@microchip.com>
Date: Tue Aug 25 19:39:05 2009 +0000
Start refactoring PIC16 TargetObjectFile code. Eventually, all the stuff from
PIC16Section will move to MCSectionPIC16.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80021 91177308-0d34-0410-b5e6-96231b3b80d8
commit b1d423e0cccd3f78122a5e8c9e959c8569b23bb0
Author: Daniel Dunbar <daniel@zuster.org>
Date: Tue Aug 25 18:45:03 2009 +0000
Switch abi-isel.ll to FileCheck; it's not much faster, but it now tests a lot
more and is much nicer to the OS.
- Dan, please check. If there are parts of the test you think I should strip
out so it doesn't cause random failures let me know (there are still some PIC
label numbers in it, for example).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80019 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1d99646fa9e8847b0ceb086e33a24ed707491684
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:56:57 2009 +0000
Don't assume that two identical instructions that read from memory
will always return the same value. This isn't currently necessary,
since this code doesn't currently ever get called under circumstances
where it would matter, but it may some day.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80017 91177308-0d34-0410-b5e6-96231b3b80d8
commit 82d30b73d3a37de0ec7960a4e099ef9e255d4f11
Author: Bob Wilson <bob.wilson@apple.com>
Date: Tue Aug 25 17:52:39 2009 +0000
Remove some unused SDNode definitions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80015 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5bba145cbd5935b442e6a197eda3477f5d1372a5
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:49:57 2009 +0000
Teach ScalarEvolution about GlobalAliases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80014 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1c17fd9fbdcfebe29c7ea59c2c7675e420aa49f5
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:48:17 2009 +0000
Delete some unnecessary flushes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80013 91177308-0d34-0410-b5e6-96231b3b80d8
commit 814c2eaa0121afd0661d8a2b5f715fcb1174f0b5
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:47:44 2009 +0000
Use X86II::MO_NO_FLAG.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80012 91177308-0d34-0410-b5e6-96231b3b80d8
commit 316062a4d193609d98e80e64389fc2094ad8c515
Author: Bob Wilson <bob.wilson@apple.com>
Date: Tue Aug 25 17:46:06 2009 +0000
Expose the instruction contraint string as an argument to the NLdSt class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80011 91177308-0d34-0410-b5e6-96231b3b80d8
commit 208278cfa708aa6e5fcca6d1b92ee780beb72a8c
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:42:10 2009 +0000
Special-case static allocas in IndVarSimplify's loop invariant
sinking code, since they are special. If the loop preheader happens
to be the entry block of a function, don't sink static allocas
out of it. This fixes PR4775.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80010 91177308-0d34-0410-b5e6-96231b3b80d8
commit 36ed6c0368d77188063d1594e54c52df1438ae87
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 17:42:07 2009 +0000
Comment-ify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80009 91177308-0d34-0410-b5e6-96231b3b80d8
commit 845a722eb435c2a9c0528b13a472e595340b6dd8
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 17:35:37 2009 +0000
Switch to SmallVector.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80007 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2845c6f885c8c7615610ab8494f7535a8f67334c
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 17:26:32 2009 +0000
Pull out this predicate loop into a helper function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80006 91177308-0d34-0410-b5e6-96231b3b80d8
commit a9c16fe7d4d2b61191b362a5d073bdc95c123c0f
Author: David Goodwin <david_goodwin@apple.com>
Date: Tue Aug 25 17:03:05 2009 +0000
Fixup register kills after scheduling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80002 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9518d88d270c05fb576604fc813405de177e2e34
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Tue Aug 25 17:00:23 2009 +0000
Provide dynamic_stackalloc lowering for MSP430.
This fixes PR4769
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80001 91177308-0d34-0410-b5e6-96231b3b80d8
commit b802d676875f2df286887be83419649770dd8580
Author: Edwin Török <edwintorok@gmail.com>
Date: Tue Aug 25 16:53:15 2009 +0000
Remove target triple from this test, it fails on x86-64 with
--enable-targets=host-only otherwise.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80000 91177308-0d34-0410-b5e6-96231b3b80d8
commit e577ff861e934b98cb950a0b0d32d0a9a1dce8b1
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 16:00:35 2009 +0000
Allocate the basic types inside the LLVMContextImpl instance,
rather than separately with new. Move the members above the
TypeMap members to avoid destruction order issues. This fixes
a leak of these objects, and eliminates an extra level of
indirection in Type::getInt32Ty and friends.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79997 91177308-0d34-0410-b5e6-96231b3b80d8
commit 87489cff37dde33a9dbb37fbfbad46ce2f70c8af
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 15:54:01 2009 +0000
Update documentation for the -f change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79996 91177308-0d34-0410-b5e6-96231b3b80d8
commit a0e89b2e414df522132636eb256ecbcc2d01a4e8
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 15:45:44 2009 +0000
Fix a few typos from the removal of -f.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79994 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2d65d35d9233277aee7c8a6d3643740e3ed29f0b
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 15:38:29 2009 +0000
Remove obsolete -f flags.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
commit 176426d2102142aaa0bf19aca55f528ceb873329
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 15:34:52 2009 +0000
Make LLVM command-line tools overwrite their output files without -f.
This is conventional command-line tool behavior. -f now just means
"enable binary output on terminals".
Add a -f option to llvm-extract and llvm-link, for consistency.
Remove F_Force from raw_fd_ostream and enable overwriting and
truncating by default. Introduce an F_Excl flag to permit users to
enable a failure when the file already exists. This flag is
currently unused.
Update Makefiles and documentation accordingly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79990 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8c949d7c548ed4ec883a2c8bd922607be2563f5a
Author: Andreas Neustifter <astifter@gmx.at>
Date: Tue Aug 25 12:53:27 2009 +0000
Read profile files as binary as proposed in
http://lists.cs.uiuc.edu/pipermail/llvmdev/2009-August/025020.html.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79983 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9112f5f6755a85f10036ff20741fc264622dc14a
Author: Xerxes Ranby <xerxes@zafena.se>
Date: Tue Aug 25 10:12:55 2009 +0000
Fix PR4772 ARM JIT.GlobalInFuction unittest by explicitly initialize MMI
to 0 during JITEmitter constructor.
Modified:
lib/ExecutionEngine/JIT/JITEmitter.cpp
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79982 91177308-0d34-0410-b5e6-96231b3b80d8
commit a75796301ee17e60daea754e30a035a53891650d
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 08:08:33 2009 +0000
- Rename EmitCommonInformationEntry to EmitCIE.
- Rename EmitFunctionDescriptionEntry to EmitFDE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79981 91177308-0d34-0410-b5e6-96231b3b80d8
commit 57b83c78f56324e3a8ff636b311235f6f2350b4e
Author: Devang Patel <dpatel@apple.com>
Date: Tue Aug 25 05:24:07 2009 +0000
Update DebugInfo interface to use metadata, instead of special named llvm.dbg.... global variables, to encode debugging information in llvm IR. This is mostly a mechanical change that tests metadata support very well.
This change speeds up llvm-gcc by more then 6% at "-O0 -g" (measured by compiling InstructionCombining.cpp!)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79977 91177308-0d34-0410-b5e6-96231b3b80d8
commit bcc93309ca3632b3cd2b45f265a534256be7589a
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 02:32:05 2009 +0000
- Emit new line after each FDE.
- Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79971 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4767b24840250630c47fee8be2a6aef07f19d30a
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 02:27:42 2009 +0000
Rename functions to something more descriptive. At the very least mention the
CIE and FDE in their names.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79969 91177308-0d34-0410-b5e6-96231b3b80d8
commit 30d4d765dfc6d01bc4c1d6934582050106bcceba
Author: Dale Johannesen <dalej@apple.com>
Date: Tue Aug 25 01:13:58 2009 +0000
Allow multiple occurrences of -inline-threshold on
the command line. This gives llvm-gcc developers
a way to control inlining (documented as "not intended
for end users").
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79966 91177308-0d34-0410-b5e6-96231b3b80d8
commit 06b990c5b3f32505188e52be1b70b38290f81b83
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 00:54:39 2009 +0000
Handle a corner case when extracing code regions where one of the immediate successor
of an extracted block contains a PHI using a value defined in the extracted region.
With this patch, the partial inliner now passes MultiSource/Applications.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79963 91177308-0d34-0410-b5e6-96231b3b80d8
commit f1f04ecf6e5af3aa7c4c59077486c9cb29df20ea
Author: Dale Johannesen <dalej@apple.com>
Date: Tue Aug 25 00:16:14 2009 +0000
Fix PR 4751, another difficulty with %a modifier on x86.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79961 91177308-0d34-0410-b5e6-96231b3b80d8
commit 09220a24f7845a078fb41c61ee909eed6c94a255
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 00:05:04 2009 +0000
--- Reverse-merging r79938 into '.':
U include/llvm/BasicBlock.h
U include/llvm/ADT/ilist_node.h
U include/llvm/ADT/ilist.h
U include/llvm/CodeGen/SelectionDAG.h
U include/llvm/CodeGen/MachineFunction.h
U include/llvm/CodeGen/MachineBasicBlock.h
U include/llvm/Function.h
Revert r79938. It was causing self-hosting build failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79960 91177308-0d34-0410-b5e6-96231b3b80d8
commit f2942e63abf0b485e88c21a9fc96bfb13754ed41
Author: Oscar Fuentes <ofv@wanadoo.es>
Date: Tue Aug 25 00:02:29 2009 +0000
CMake: updated list of source files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79959 91177308-0d34-0410-b5e6-96231b3b80d8
commit 399ece6621d316d7378e5fc13bd030e5572f03ce
Author: Scott Michel <scottm@aero.org>
Date: Mon Aug 24 23:57:35 2009 +0000
- Remove SelectSEXTi128 from SPUISelDAGToDAG.cpp, evidently, this is redundant
code, according to Anton (I'm not totally convinced, but we can always
resurrect patches if we need to do so.)
- Start moving CellSPU's tests to prefer FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79958 91177308-0d34-0410-b5e6-96231b3b80d8
commit 27dad5a41e0b0fa8fd5cba2e6f5dd70b82689e76
Author: Owen Anderson <resistor@mac.com>
Date: Mon Aug 24 23:32:14 2009 +0000
When extracting SEME regions of code, the extractor needs to update the dominator tree for split return blocks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79957 91177308-0d34-0410-b5e6-96231b3b80d8
commit 316e6fb92b997dfa4db655a371d5699cbcac0473
Author: Scott Michel <scottm@aero.org>
Date: Mon Aug 24 22:49:22 2009 +0000
Prefer 'FileCheck' over 'grep'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79953 91177308-0d34-0410-b5e6-96231b3b80d8
commit 36173e27ebfe4da907c17f2b507a9df3415a3aad
Author: Scott Michel <scottm@aero.org>
Date: Mon Aug 24 22:28:53 2009 +0000
128-bit sign extension and vector shift cleanups, contributed by Ken Werner
(IBM).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79949 91177308-0d34-0410-b5e6-96231b3b80d8
commit 73ab81726b384015ac9bfe7f734fc13b93297c4c
Author: Scott Michel <scottm@aero.org>
Date: Mon Aug 24 21:53:27 2009 +0000
Initialize ShufBytes, as gcc 4.4 can't detect that the entire array is
initialized and a warning about a potentially unintialized variable is
generated.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79946 91177308-0d34-0410-b5e6-96231b3b80d8
commit af26e32df3f129ac906a45c4527b5ee3641cb22d
Author: Andreas Neustifter <astifter@gmx.at>
Date: Mon Aug 24 21:41:37 2009 +0000
Add llvm_start_edge_profiling to exported symbols for libprofile_rt.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79944 91177308-0d34-0410-b5e6-96231b3b80d8
commit 92b39ace140de279245e80d0465528933787c7e4
Author: Andreas Neustifter <astifter@gmx.at>
Date: Mon Aug 24 21:37:48 2009 +0000
This patch cleans up the ProfileInfo by
*) introducing new data type and export function of edge info for whole function (preparation for next patch).
*) renaming variables to make clear distinction between data and containers that contain this data.
*) updated comments and whitespaces.
*) made ProfileInfo::MissingValue a double (as it should be...).
(Discussed at http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090817/084955.html.)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79940 91177308-0d34-0410-b5e6-96231b3b80d8
commit c19dfb9d25347b815512bba5eb64052708e4c183
Author: Gabor Greif <ggreif@gmail.com>
Date: Mon Aug 24 21:34:17 2009 +0000
Resubmit an earlier patch of mine:
reduce the size of relevant "ghostly" sentinels
by a pointer.
This attempt now makes the compactification dependent
on the configure variable LLVM_COMPACT_SENTINELS
and should not cause any bootstrap failures for
llvm-gcc any more.
Please note that this is not yet the final version,
and (as settled with Chris) I shall take out the
autofoo/cmake portions in the next days.
This will also lose the assertability on sentinel
dereferencing and operator++, but that seems
an acceptable price to pay for the simplified
build logic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79938 91177308-0d34-0410-b5e6-96231b3b80d8
commit b2f99910fba8818270e41e75f4b127d82a2082a6
Author: Bob Wilson <bob.wilson@apple.com>
Date: Mon Aug 24 21:17:17 2009 +0000
Fix a typo. Somehow I thought this had passed before, but I guess not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79937 91177308-0d34-0410-b5e6-96231b3b80d8
commit f5c686b114bf6ac6b3137f96bc59ffb2e8e20de6
Author: Gabor Greif <ggreif@gmail.com>
Date: Mon Aug 24 21:00:10 2009 +0000
prune ignores: AutoGenerated.inc is no more
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79936 91177308-0d34-0410-b5e6-96231b3b80d8
commit cacea03dbaca34b44783243898ef2274bd71e72e
Author: Bob Wilson <bob.wilson@apple.com>
Date: Mon Aug 24 20:33:47 2009 +0000
Convert slow test to use FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79935 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8551a303173101cf595dc35200eea7da37e769d4
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 24 20:08:27 2009 +0000
Convert two gratuitous abuses of poor helpless CPU cycles to FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79933 91177308-0d34-0410-b5e6-96231b3b80d8
commit b9640223f05f0257603a0138c1ea8cb59c7f5acc
Author: Dale Johannesen <dalej@apple.com>
Date: Mon Aug 24 17:51:19 2009 +0000
Split test into 3.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79926 91177308-0d34-0410-b5e6-96231b3b80d8
commit a0151d0e9f948b39e55944b5cad64fb33732af25
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 24 11:56:58 2009 +0000
llvm-mc/Mach-O: Preliminary support for indirect symbols.
- The indirect table itself isn't being filled in yet.
- This isn't factored properly and is rather FIXMEd, but at the moment I'm more
focused on figuring out what it needs to do.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79910 91177308-0d34-0410-b5e6-96231b3b80d8
commit b69f053e0d5af3463d1bbf2101e5c1431cca6fee
Author: Duncan Sands <baldrick@free.fr>
Date: Mon Aug 24 10:59:01 2009 +0000
Fix the build when using gcc-4.4 on linux. Header needed
for stderr and fprintf.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79909 91177308-0d34-0410-b5e6-96231b3b80d8
1979 lines
83 KiB
HTML
1979 lines
83 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
|
"http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>CommandLine 2.0 Library Manual</title>
|
|
<link rel="stylesheet" href="llvm.css" type="text/css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="doc_title">
|
|
CommandLine 2.0 Library Manual
|
|
</div>
|
|
|
|
<ol>
|
|
<li><a href="#introduction">Introduction</a></li>
|
|
|
|
<li><a href="#quickstart">Quick Start Guide</a>
|
|
<ol>
|
|
<li><a href="#bool">Boolean Arguments</a></li>
|
|
<li><a href="#alias">Argument Aliases</a></li>
|
|
<li><a href="#onealternative">Selecting an alternative from a
|
|
set of possibilities</a></li>
|
|
<li><a href="#namedalternatives">Named alternatives</a></li>
|
|
<li><a href="#list">Parsing a list of options</a></li>
|
|
<li><a href="#bits">Collecting options as a set of flags</a></li>
|
|
<li><a href="#description">Adding freeform text to help output</a></li>
|
|
</ol></li>
|
|
|
|
<li><a href="#referenceguide">Reference Guide</a>
|
|
<ol>
|
|
<li><a href="#positional">Positional Arguments</a>
|
|
<ul>
|
|
<li><a href="#--">Specifying positional options with hyphens</a></li>
|
|
<li><a href="#getPosition">Determining absolute position with
|
|
getPosition</a></li>
|
|
<li><a href="#cl::ConsumeAfter">The <tt>cl::ConsumeAfter</tt>
|
|
modifier</a></li>
|
|
</ul></li>
|
|
|
|
<li><a href="#storage">Internal vs External Storage</a></li>
|
|
|
|
<li><a href="#attributes">Option Attributes</a></li>
|
|
|
|
<li><a href="#modifiers">Option Modifiers</a>
|
|
<ul>
|
|
<li><a href="#hiding">Hiding an option from <tt>--help</tt>
|
|
output</a></li>
|
|
<li><a href="#numoccurrences">Controlling the number of occurrences
|
|
required and allowed</a></li>
|
|
<li><a href="#valrequired">Controlling whether or not a value must be
|
|
specified</a></li>
|
|
<li><a href="#formatting">Controlling other formatting options</a></li>
|
|
<li><a href="#misc">Miscellaneous option modifiers</a></li>
|
|
<li><a href="#response">Response files</a></li>
|
|
</ul></li>
|
|
|
|
<li><a href="#toplevel">Top-Level Classes and Functions</a>
|
|
<ul>
|
|
<li><a href="#cl::ParseCommandLineOptions">The
|
|
<tt>cl::ParseCommandLineOptions</tt> function</a></li>
|
|
<li><a href="#cl::ParseEnvironmentOptions">The
|
|
<tt>cl::ParseEnvironmentOptions</tt> function</a></li>
|
|
<li><a href="#cl::SetVersionPrinter">The <tt>cl::SetVersionPrinter</tt>
|
|
function</a></li>
|
|
<li><a href="#cl::opt">The <tt>cl::opt</tt> class</a></li>
|
|
<li><a href="#cl::list">The <tt>cl::list</tt> class</a></li>
|
|
<li><a href="#cl::bits">The <tt>cl::bits</tt> class</a></li>
|
|
<li><a href="#cl::alias">The <tt>cl::alias</tt> class</a></li>
|
|
<li><a href="#cl::extrahelp">The <tt>cl::extrahelp</tt> class</a></li>
|
|
</ul></li>
|
|
|
|
<li><a href="#builtinparsers">Builtin parsers</a>
|
|
<ul>
|
|
<li><a href="#genericparser">The Generic <tt>parser<t></tt>
|
|
parser</a></li>
|
|
<li><a href="#boolparser">The <tt>parser<bool></tt>
|
|
specialization</a></li>
|
|
<li><a href="#boolOrDefaultparser">The <tt>parser<boolOrDefault></tt>
|
|
specialization</a></li>
|
|
<li><a href="#stringparser">The <tt>parser<string></tt>
|
|
specialization</a></li>
|
|
<li><a href="#intparser">The <tt>parser<int></tt>
|
|
specialization</a></li>
|
|
<li><a href="#doubleparser">The <tt>parser<double></tt> and
|
|
<tt>parser<float></tt> specializations</a></li>
|
|
</ul></li>
|
|
</ol></li>
|
|
<li><a href="#extensionguide">Extension Guide</a>
|
|
<ol>
|
|
<li><a href="#customparser">Writing a custom parser</a></li>
|
|
<li><a href="#explotingexternal">Exploiting external storage</a></li>
|
|
<li><a href="#dynamicopts">Dynamically adding command line
|
|
options</a></li>
|
|
</ol></li>
|
|
</ol>
|
|
|
|
<div class="doc_author">
|
|
<p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a></p>
|
|
</div>
|
|
|
|
<!-- *********************************************************************** -->
|
|
<div class="doc_section">
|
|
<a name="introduction">Introduction</a>
|
|
</div>
|
|
<!-- *********************************************************************** -->
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>This document describes the CommandLine argument processing library. It will
|
|
show you how to use it, and what it can do. The CommandLine library uses a
|
|
declarative approach to specifying the command line options that your program
|
|
takes. By default, these options declarations implicitly hold the value parsed
|
|
for the option declared (of course this <a href="#storage">can be
|
|
changed</a>).</p>
|
|
|
|
<p>Although there are a <b>lot</b> of command line argument parsing libraries
|
|
out there in many different languages, none of them fit well with what I needed.
|
|
By looking at the features and problems of other libraries, I designed the
|
|
CommandLine library to have the following features:</p>
|
|
|
|
<ol>
|
|
<li>Speed: The CommandLine library is very quick and uses little resources. The
|
|
parsing time of the library is directly proportional to the number of arguments
|
|
parsed, not the the number of options recognized. Additionally, command line
|
|
argument values are captured transparently into user defined global variables,
|
|
which can be accessed like any other variable (and with the same
|
|
performance).</li>
|
|
|
|
<li>Type Safe: As a user of CommandLine, you don't have to worry about
|
|
remembering the type of arguments that you want (is it an int? a string? a
|
|
bool? an enum?) and keep casting it around. Not only does this help prevent
|
|
error prone constructs, it also leads to dramatically cleaner source code.</li>
|
|
|
|
<li>No subclasses required: To use CommandLine, you instantiate variables that
|
|
correspond to the arguments that you would like to capture, you don't subclass a
|
|
parser. This means that you don't have to write <b>any</b> boilerplate
|
|
code.</li>
|
|
|
|
<li>Globally accessible: Libraries can specify command line arguments that are
|
|
automatically enabled in any tool that links to the library. This is possible
|
|
because the application doesn't have to keep a list of arguments to pass to
|
|
the parser. This also makes supporting <a href="#dynamicopts">dynamically
|
|
loaded options</a> trivial.</li>
|
|
|
|
<li>Cleaner: CommandLine supports enum and other types directly, meaning that
|
|
there is less error and more security built into the library. You don't have to
|
|
worry about whether your integral command line argument accidentally got
|
|
assigned a value that is not valid for your enum type.</li>
|
|
|
|
<li>Powerful: The CommandLine library supports many different types of
|
|
arguments, from simple <a href="#boolparser">boolean flags</a> to <a
|
|
href="#cl::opt">scalars arguments</a> (<a href="#stringparser">strings</a>, <a
|
|
href="#intparser">integers</a>, <a href="#genericparser">enums</a>, <a
|
|
href="#doubleparser">doubles</a>), to <a href="#cl::list">lists of
|
|
arguments</a>. This is possible because CommandLine is...</li>
|
|
|
|
<li>Extensible: It is very simple to add a new argument type to CommandLine.
|
|
Simply specify the parser that you want to use with the command line option when
|
|
you declare it. <a href="#customparser">Custom parsers</a> are no problem.</li>
|
|
|
|
<li>Labor Saving: The CommandLine library cuts down on the amount of grunt work
|
|
that you, the user, have to do. For example, it automatically provides a
|
|
<tt>--help</tt> option that shows the available command line options for your
|
|
tool. Additionally, it does most of the basic correctness checking for
|
|
you.</li>
|
|
|
|
<li>Capable: The CommandLine library can handle lots of different forms of
|
|
options often found in real programs. For example, <a
|
|
href="#positional">positional</a> arguments, <tt>ls</tt> style <a
|
|
href="#cl::Grouping">grouping</a> options (to allow processing '<tt>ls
|
|
-lad</tt>' naturally), <tt>ld</tt> style <a href="#cl::Prefix">prefix</a>
|
|
options (to parse '<tt>-lmalloc -L/usr/lib</tt>'), and <a
|
|
href="#cl::ConsumeAfter">interpreter style options</a>.</li>
|
|
|
|
</ol>
|
|
|
|
<p>This document will hopefully let you jump in and start using CommandLine in
|
|
your utility quickly and painlessly. Additionally it should be a simple
|
|
reference manual to figure out how stuff works. If it is failing in some area
|
|
(or you want an extension to the library), nag the author, <a
|
|
href="mailto:sabre@nondot.org">Chris Lattner</a>.</p>
|
|
|
|
</div>
|
|
|
|
<!-- *********************************************************************** -->
|
|
<div class="doc_section">
|
|
<a name="quickstart">Quick Start Guide</a>
|
|
</div>
|
|
<!-- *********************************************************************** -->
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>This section of the manual runs through a simple CommandLine'ification of a
|
|
basic compiler tool. This is intended to show you how to jump into using the
|
|
CommandLine library in your own program, and show you some of the cool things it
|
|
can do.</p>
|
|
|
|
<p>To start out, you need to include the CommandLine header file into your
|
|
program:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
#include "llvm/Support/CommandLine.h"
|
|
</pre></div>
|
|
|
|
<p>Additionally, you need to add this as the first line of your main
|
|
program:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
int main(int argc, char **argv) {
|
|
<a href="#cl::ParseCommandLineOptions">cl::ParseCommandLineOptions</a>(argc, argv);
|
|
...
|
|
}
|
|
</pre></div>
|
|
|
|
<p>... which actually parses the arguments and fills in the variable
|
|
declarations.</p>
|
|
|
|
<p>Now that you are ready to support command line arguments, we need to tell the
|
|
system which ones we want, and what type of arguments they are. The CommandLine
|
|
library uses a declarative syntax to model command line arguments with the
|
|
global variable declarations that capture the parsed values. This means that
|
|
for every command line option that you would like to support, there should be a
|
|
global variable declaration to capture the result. For example, in a compiler,
|
|
we would like to support the Unix-standard '<tt>-o <filename></tt>' option
|
|
to specify where to put the output. With the CommandLine library, this is
|
|
represented like this:</p>
|
|
|
|
<a name="value_desc_example"></a>
|
|
<div class="doc_code"><pre>
|
|
<a href="#cl::opt">cl::opt</a><string> OutputFilename("<i>o</i>", <a href="#cl::desc">cl::desc</a>("<i>Specify output filename</i>"), <a href="#cl::value_desc">cl::value_desc</a>("<i>filename</i>"));
|
|
</pre></div>
|
|
|
|
<p>This declares a global variable "<tt>OutputFilename</tt>" that is used to
|
|
capture the result of the "<tt>o</tt>" argument (first parameter). We specify
|
|
that this is a simple scalar option by using the "<tt><a
|
|
href="#cl::opt">cl::opt</a></tt>" template (as opposed to the <a
|
|
href="#list">"<tt>cl::list</tt> template</a>), and tell the CommandLine library
|
|
that the data type that we are parsing is a string.</p>
|
|
|
|
<p>The second and third parameters (which are optional) are used to specify what
|
|
to output for the "<tt>--help</tt>" option. In this case, we get a line that
|
|
looks like this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
USAGE: compiler [options]
|
|
|
|
OPTIONS:
|
|
-help - display available options (--help-hidden for more)
|
|
<b>-o <filename> - Specify output filename</b>
|
|
</pre></div>
|
|
|
|
<p>Because we specified that the command line option should parse using the
|
|
<tt>string</tt> data type, the variable declared is automatically usable as a
|
|
real string in all contexts that a normal C++ string object may be used. For
|
|
example:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
...
|
|
std::ofstream Output(OutputFilename.c_str());
|
|
if (Output.good()) ...
|
|
...
|
|
</pre></div>
|
|
|
|
<p>There are many different options that you can use to customize the command
|
|
line option handling library, but the above example shows the general interface
|
|
to these options. The options can be specified in any order, and are specified
|
|
with helper functions like <a href="#cl::desc"><tt>cl::desc(...)</tt></a>, so
|
|
there are no positional dependencies to remember. The available options are
|
|
discussed in detail in the <a href="#referenceguide">Reference Guide</a>.</p>
|
|
|
|
<p>Continuing the example, we would like to have our compiler take an input
|
|
filename as well as an output filename, but we do not want the input filename to
|
|
be specified with a hyphen (ie, not <tt>-filename.c</tt>). To support this
|
|
style of argument, the CommandLine library allows for <a
|
|
href="#positional">positional</a> arguments to be specified for the program.
|
|
These positional arguments are filled with command line parameters that are not
|
|
in option form. We use this feature like this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<a href="#cl::opt">cl::opt</a><string> InputFilename(<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::desc">cl::desc</a>("<i><input file></i>"), <a href="#cl::init">cl::init</a>("<i>-</i>"));
|
|
</pre></div>
|
|
|
|
<p>This declaration indicates that the first positional argument should be
|
|
treated as the input filename. Here we use the <tt><a
|
|
href="#cl::init">cl::init</a></tt> option to specify an initial value for the
|
|
command line option, which is used if the option is not specified (if you do not
|
|
specify a <tt><a href="#cl::init">cl::init</a></tt> modifier for an option, then
|
|
the default constructor for the data type is used to initialize the value).
|
|
Command line options default to being optional, so if we would like to require
|
|
that the user always specify an input filename, we would add the <tt><a
|
|
href="#cl::Required">cl::Required</a></tt> flag, and we could eliminate the
|
|
<tt><a href="#cl::init">cl::init</a></tt> modifier, like this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<a href="#cl::opt">cl::opt</a><string> InputFilename(<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::desc">cl::desc</a>("<i><input file></i>"), <b><a href="#cl::Required">cl::Required</a></b>);
|
|
</pre></div>
|
|
|
|
<p>Again, the CommandLine library does not require the options to be specified
|
|
in any particular order, so the above declaration is equivalent to:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<a href="#cl::opt">cl::opt</a><string> InputFilename(<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::Required">cl::Required</a>, <a href="#cl::desc">cl::desc</a>("<i><input file></i>"));
|
|
</pre></div>
|
|
|
|
<p>By simply adding the <tt><a href="#cl::Required">cl::Required</a></tt> flag,
|
|
the CommandLine library will automatically issue an error if the argument is not
|
|
specified, which shifts all of the command line option verification code out of
|
|
your application into the library. This is just one example of how using flags
|
|
can alter the default behaviour of the library, on a per-option basis. By
|
|
adding one of the declarations above, the <tt>--help</tt> option synopsis is now
|
|
extended to:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
USAGE: compiler [options] <b><input file></b>
|
|
|
|
OPTIONS:
|
|
-help - display available options (--help-hidden for more)
|
|
-o <filename> - Specify output filename
|
|
</pre></div>
|
|
|
|
<p>... indicating that an input filename is expected.</p>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="bool">Boolean Arguments</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>In addition to input and output filenames, we would like the compiler example
|
|
to support three boolean flags: "<tt>-f</tt>" to force writing binary output to
|
|
a terminal, "<tt>--quiet</tt>" to enable quiet mode, and "<tt>-q</tt>" for
|
|
backwards compatibility with some of our users. We can support these by
|
|
declaring options of boolean type like this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<a href="#cl::opt">cl::opt</a><bool> Force ("<i>f</i>", <a href="#cl::desc">cl::desc</a>("<i>Enable binary output on terminals</i>"));
|
|
<a href="#cl::opt">cl::opt</a><bool> Quiet ("<i>quiet</i>", <a href="#cl::desc">cl::desc</a>("<i>Don't print informational messages</i>"));
|
|
<a href="#cl::opt">cl::opt</a><bool> Quiet2("<i>q</i>", <a href="#cl::desc">cl::desc</a>("<i>Don't print informational messages</i>"), <a href="#cl::Hidden">cl::Hidden</a>);
|
|
</pre></div>
|
|
|
|
<p>This does what you would expect: it declares three boolean variables
|
|
("<tt>Force</tt>", "<tt>Quiet</tt>", and "<tt>Quiet2</tt>") to recognize these
|
|
options. Note that the "<tt>-q</tt>" option is specified with the "<a
|
|
href="#cl::Hidden"><tt>cl::Hidden</tt></a>" flag. This modifier prevents it
|
|
from being shown by the standard "<tt>--help</tt>" output (note that it is still
|
|
shown in the "<tt>--help-hidden</tt>" output).</p>
|
|
|
|
<p>The CommandLine library uses a <a href="#builtinparsers">different parser</a>
|
|
for different data types. For example, in the string case, the argument passed
|
|
to the option is copied literally into the content of the string variable... we
|
|
obviously cannot do that in the boolean case, however, so we must use a smarter
|
|
parser. In the case of the boolean parser, it allows no options (in which case
|
|
it assigns the value of true to the variable), or it allows the values
|
|
"<tt>true</tt>" or "<tt>false</tt>" to be specified, allowing any of the
|
|
following inputs:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
compiler -f # No value, 'Force' == true
|
|
compiler -f=true # Value specified, 'Force' == true
|
|
compiler -f=TRUE # Value specified, 'Force' == true
|
|
compiler -f=FALSE # Value specified, 'Force' == false
|
|
</pre></div>
|
|
|
|
<p>... you get the idea. The <a href="#boolparser">bool parser</a> just turns
|
|
the string values into boolean values, and rejects things like '<tt>compiler
|
|
-f=foo</tt>'. Similarly, the <a href="#doubleparser">float</a>, <a
|
|
href="#doubleparser">double</a>, and <a href="#intparser">int</a> parsers work
|
|
like you would expect, using the '<tt>strtol</tt>' and '<tt>strtod</tt>' C
|
|
library calls to parse the string value into the specified data type.</p>
|
|
|
|
<p>With the declarations above, "<tt>compiler --help</tt>" emits this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
USAGE: compiler [options] <input file>
|
|
|
|
OPTIONS:
|
|
<b>-f - Enable binary output on terminals</b>
|
|
-o - Override output filename
|
|
<b>-quiet - Don't print informational messages</b>
|
|
-help - display available options (--help-hidden for more)
|
|
</pre></div>
|
|
|
|
<p>and "<tt>compiler --help-hidden</tt>" prints this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
USAGE: compiler [options] <input file>
|
|
|
|
OPTIONS:
|
|
-f - Enable binary output on terminals
|
|
-o - Override output filename
|
|
<b>-q - Don't print informational messages</b>
|
|
-quiet - Don't print informational messages
|
|
-help - display available options (--help-hidden for more)
|
|
</pre></div>
|
|
|
|
<p>This brief example has shown you how to use the '<tt><a
|
|
href="#cl::opt">cl::opt</a></tt>' class to parse simple scalar command line
|
|
arguments. In addition to simple scalar arguments, the CommandLine library also
|
|
provides primitives to support CommandLine option <a href="#alias">aliases</a>,
|
|
and <a href="#list">lists</a> of options.</p>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="alias">Argument Aliases</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>So far, the example works well, except for the fact that we need to check the
|
|
quiet condition like this now:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
...
|
|
if (!Quiet && !Quiet2) printInformationalMessage(...);
|
|
...
|
|
</pre></div>
|
|
|
|
<p>... which is a real pain! Instead of defining two values for the same
|
|
condition, we can use the "<tt><a href="#cl::alias">cl::alias</a></tt>" class to make the "<tt>-q</tt>"
|
|
option an <b>alias</b> for the "<tt>-quiet</tt>" option, instead of providing
|
|
a value itself:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<a href="#cl::opt">cl::opt</a><bool> Force ("<i>f</i>", <a href="#cl::desc">cl::desc</a>("<i>Overwrite output files</i>"));
|
|
<a href="#cl::opt">cl::opt</a><bool> Quiet ("<i>quiet</i>", <a href="#cl::desc">cl::desc</a>("<i>Don't print informational messages</i>"));
|
|
<a href="#cl::alias">cl::alias</a> QuietA("<i>q</i>", <a href="#cl::desc">cl::desc</a>("<i>Alias for -quiet</i>"), <a href="#cl::aliasopt">cl::aliasopt</a>(Quiet));
|
|
</pre></div>
|
|
|
|
<p>The third line (which is the only one we modified from above) defines a
|
|
"<tt>-q</tt>" alias that updates the "<tt>Quiet</tt>" variable (as specified by
|
|
the <tt><a href="#cl::aliasopt">cl::aliasopt</a></tt> modifier) whenever it is
|
|
specified. Because aliases do not hold state, the only thing the program has to
|
|
query is the <tt>Quiet</tt> variable now. Another nice feature of aliases is
|
|
that they automatically hide themselves from the <tt>-help</tt> output
|
|
(although, again, they are still visible in the <tt>--help-hidden
|
|
output</tt>).</p>
|
|
|
|
<p>Now the application code can simply use:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
...
|
|
if (!Quiet) printInformationalMessage(...);
|
|
...
|
|
</pre></div>
|
|
|
|
<p>... which is much nicer! The "<tt><a href="#cl::alias">cl::alias</a></tt>"
|
|
can be used to specify an alternative name for any variable type, and has many
|
|
uses.</p>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="onealternative">Selecting an alternative from a set of
|
|
possibilities</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>So far we have seen how the CommandLine library handles builtin types like
|
|
<tt>std::string</tt>, <tt>bool</tt> and <tt>int</tt>, but how does it handle
|
|
things it doesn't know about, like enums or '<tt>int*</tt>'s?</p>
|
|
|
|
<p>The answer is that it uses a table-driven generic parser (unless you specify
|
|
your own parser, as described in the <a href="#extensionguide">Extension
|
|
Guide</a>). This parser maps literal strings to whatever type is required, and
|
|
requires you to tell it what this mapping should be.</p>
|
|
|
|
<p>Let's say that we would like to add four optimization levels to our
|
|
optimizer, using the standard flags "<tt>-g</tt>", "<tt>-O0</tt>",
|
|
"<tt>-O1</tt>", and "<tt>-O2</tt>". We could easily implement this with boolean
|
|
options like above, but there are several problems with this strategy:</p>
|
|
|
|
<ol>
|
|
<li>A user could specify more than one of the options at a time, for example,
|
|
"<tt>compiler -O3 -O2</tt>". The CommandLine library would not be able to
|
|
catch this erroneous input for us.</li>
|
|
|
|
<li>We would have to test 4 different variables to see which ones are set.</li>
|
|
|
|
<li>This doesn't map to the numeric levels that we want... so we cannot easily
|
|
see if some level >= "<tt>-O1</tt>" is enabled.</li>
|
|
|
|
</ol>
|
|
|
|
<p>To cope with these problems, we can use an enum value, and have the
|
|
CommandLine library fill it in with the appropriate level directly, which is
|
|
used like this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
enum OptLevel {
|
|
g, O1, O2, O3
|
|
};
|
|
|
|
<a href="#cl::opt">cl::opt</a><OptLevel> OptimizationLevel(<a href="#cl::desc">cl::desc</a>("<i>Choose optimization level:</i>"),
|
|
<a href="#cl::values">cl::values</a>(
|
|
clEnumVal(g , "<i>No optimizations, enable debugging</i>"),
|
|
clEnumVal(O1, "<i>Enable trivial optimizations</i>"),
|
|
clEnumVal(O2, "<i>Enable default optimizations</i>"),
|
|
clEnumVal(O3, "<i>Enable expensive optimizations</i>"),
|
|
clEnumValEnd));
|
|
|
|
...
|
|
if (OptimizationLevel >= O2) doPartialRedundancyElimination(...);
|
|
...
|
|
</pre></div>
|
|
|
|
<p>This declaration defines a variable "<tt>OptimizationLevel</tt>" of the
|
|
"<tt>OptLevel</tt>" enum type. This variable can be assigned any of the values
|
|
that are listed in the declaration (Note that the declaration list must be
|
|
terminated with the "<tt>clEnumValEnd</tt>" argument!). The CommandLine
|
|
library enforces
|
|
that the user can only specify one of the options, and it ensure that only valid
|
|
enum values can be specified. The "<tt>clEnumVal</tt>" macros ensure that the
|
|
command line arguments matched the enum values. With this option added, our
|
|
help output now is:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
USAGE: compiler [options] <input file>
|
|
|
|
OPTIONS:
|
|
<b>Choose optimization level:
|
|
-g - No optimizations, enable debugging
|
|
-O1 - Enable trivial optimizations
|
|
-O2 - Enable default optimizations
|
|
-O3 - Enable expensive optimizations</b>
|
|
-f - Enable binary output on terminals
|
|
-help - display available options (--help-hidden for more)
|
|
-o <filename> - Specify output filename
|
|
-quiet - Don't print informational messages
|
|
</pre></div>
|
|
|
|
<p>In this case, it is sort of awkward that flag names correspond directly to
|
|
enum names, because we probably don't want a enum definition named "<tt>g</tt>"
|
|
in our program. Because of this, we can alternatively write this example like
|
|
this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
enum OptLevel {
|
|
Debug, O1, O2, O3
|
|
};
|
|
|
|
<a href="#cl::opt">cl::opt</a><OptLevel> OptimizationLevel(<a href="#cl::desc">cl::desc</a>("<i>Choose optimization level:</i>"),
|
|
<a href="#cl::values">cl::values</a>(
|
|
clEnumValN(Debug, "g", "<i>No optimizations, enable debugging</i>"),
|
|
clEnumVal(O1 , "<i>Enable trivial optimizations</i>"),
|
|
clEnumVal(O2 , "<i>Enable default optimizations</i>"),
|
|
clEnumVal(O3 , "<i>Enable expensive optimizations</i>"),
|
|
clEnumValEnd));
|
|
|
|
...
|
|
if (OptimizationLevel == Debug) outputDebugInfo(...);
|
|
...
|
|
</pre></div>
|
|
|
|
<p>By using the "<tt>clEnumValN</tt>" macro instead of "<tt>clEnumVal</tt>", we
|
|
can directly specify the name that the flag should get. In general a direct
|
|
mapping is nice, but sometimes you can't or don't want to preserve the mapping,
|
|
which is when you would use it.</p>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="namedalternatives">Named Alternatives</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>Another useful argument form is a named alternative style. We shall use this
|
|
style in our compiler to specify different debug levels that can be used.
|
|
Instead of each debug level being its own switch, we want to support the
|
|
following options, of which only one can be specified at a time:
|
|
"<tt>--debug-level=none</tt>", "<tt>--debug-level=quick</tt>",
|
|
"<tt>--debug-level=detailed</tt>". To do this, we use the exact same format as
|
|
our optimization level flags, but we also specify an option name. For this
|
|
case, the code looks like this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
enum DebugLev {
|
|
nodebuginfo, quick, detailed
|
|
};
|
|
|
|
// Enable Debug Options to be specified on the command line
|
|
<a href="#cl::opt">cl::opt</a><DebugLev> DebugLevel("<i>debug_level</i>", <a href="#cl::desc">cl::desc</a>("<i>Set the debugging level:</i>"),
|
|
<a href="#cl::values">cl::values</a>(
|
|
clEnumValN(nodebuginfo, "none", "<i>disable debug information</i>"),
|
|
clEnumVal(quick, "<i>enable quick debug information</i>"),
|
|
clEnumVal(detailed, "<i>enable detailed debug information</i>"),
|
|
clEnumValEnd));
|
|
</pre></div>
|
|
|
|
<p>This definition defines an enumerated command line variable of type "<tt>enum
|
|
DebugLev</tt>", which works exactly the same way as before. The difference here
|
|
is just the interface exposed to the user of your program and the help output by
|
|
the "<tt>--help</tt>" option:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
USAGE: compiler [options] <input file>
|
|
|
|
OPTIONS:
|
|
Choose optimization level:
|
|
-g - No optimizations, enable debugging
|
|
-O1 - Enable trivial optimizations
|
|
-O2 - Enable default optimizations
|
|
-O3 - Enable expensive optimizations
|
|
<b>-debug_level - Set the debugging level:
|
|
=none - disable debug information
|
|
=quick - enable quick debug information
|
|
=detailed - enable detailed debug information</b>
|
|
-f - Enable binary output on terminals
|
|
-help - display available options (--help-hidden for more)
|
|
-o <filename> - Specify output filename
|
|
-quiet - Don't print informational messages
|
|
</pre></div>
|
|
|
|
<p>Again, the only structural difference between the debug level declaration and
|
|
the optimization level declaration is that the debug level declaration includes
|
|
an option name (<tt>"debug_level"</tt>), which automatically changes how the
|
|
library processes the argument. The CommandLine library supports both forms so
|
|
that you can choose the form most appropriate for your application.</p>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="list">Parsing a list of options</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>Now that we have the standard run-of-the-mill argument types out of the way,
|
|
lets get a little wild and crazy. Lets say that we want our optimizer to accept
|
|
a <b>list</b> of optimizations to perform, allowing duplicates. For example, we
|
|
might want to run: "<tt>compiler -dce -constprop -inline -dce -strip</tt>". In
|
|
this case, the order of the arguments and the number of appearances is very
|
|
important. This is what the "<tt><a href="#cl::list">cl::list</a></tt>"
|
|
template is for. First, start by defining an enum of the optimizations that you
|
|
would like to perform:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
enum Opts {
|
|
// 'inline' is a C++ keyword, so name it 'inlining'
|
|
dce, constprop, inlining, strip
|
|
};
|
|
</pre></div>
|
|
|
|
<p>Then define your "<tt><a href="#cl::list">cl::list</a></tt>" variable:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<a href="#cl::list">cl::list</a><Opts> OptimizationList(<a href="#cl::desc">cl::desc</a>("<i>Available Optimizations:</i>"),
|
|
<a href="#cl::values">cl::values</a>(
|
|
clEnumVal(dce , "<i>Dead Code Elimination</i>"),
|
|
clEnumVal(constprop , "<i>Constant Propagation</i>"),
|
|
clEnumValN(inlining, "<i>inline</i>", "<i>Procedure Integration</i>"),
|
|
clEnumVal(strip , "<i>Strip Symbols</i>"),
|
|
clEnumValEnd));
|
|
</pre></div>
|
|
|
|
<p>This defines a variable that is conceptually of the type
|
|
"<tt>std::vector<enum Opts></tt>". Thus, you can access it with standard
|
|
vector methods:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
for (unsigned i = 0; i != OptimizationList.size(); ++i)
|
|
switch (OptimizationList[i])
|
|
...
|
|
</pre></div>
|
|
|
|
<p>... to iterate through the list of options specified.</p>
|
|
|
|
<p>Note that the "<tt><a href="#cl::list">cl::list</a></tt>" template is
|
|
completely general and may be used with any data types or other arguments that
|
|
you can use with the "<tt><a href="#cl::opt">cl::opt</a></tt>" template. One
|
|
especially useful way to use a list is to capture all of the positional
|
|
arguments together if there may be more than one specified. In the case of a
|
|
linker, for example, the linker takes several '<tt>.o</tt>' files, and needs to
|
|
capture them into a list. This is naturally specified as:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
...
|
|
<a href="#cl::list">cl::list</a><std::string> InputFilenames(<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::desc">cl::desc</a>("<Input files>"), <a href="#cl::OneOrMore">cl::OneOrMore</a>);
|
|
...
|
|
</pre></div>
|
|
|
|
<p>This variable works just like a "<tt>vector<string></tt>" object. As
|
|
such, accessing the list is simple, just like above. In this example, we used
|
|
the <tt><a href="#cl::OneOrMore">cl::OneOrMore</a></tt> modifier to inform the
|
|
CommandLine library that it is an error if the user does not specify any
|
|
<tt>.o</tt> files on our command line. Again, this just reduces the amount of
|
|
checking we have to do.</p>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="bits">Collecting options as a set of flags</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>Instead of collecting sets of options in a list, it is also possible to
|
|
gather information for enum values in a <b>bit vector</b>. The represention used by
|
|
the <a href="#bits"><tt>cl::bits</tt></a> class is an <tt>unsigned</tt>
|
|
integer. An enum value is represented by a 0/1 in the enum's ordinal value bit
|
|
position. 1 indicating that the enum was specified, 0 otherwise. As each
|
|
specified value is parsed, the resulting enum's bit is set in the option's bit
|
|
vector:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<i>bits</i> |= 1 << (unsigned)<i>enum</i>;
|
|
</pre></div>
|
|
|
|
<p>Options that are specified multiple times are redundant. Any instances after
|
|
the first are discarded.</p>
|
|
|
|
<p>Reworking the above list example, we could replace <a href="#list">
|
|
<tt>cl::list</tt></a> with <a href="#bits"><tt>cl::bits</tt></a>:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<a href="#cl::bits">cl::bits</a><Opts> OptimizationBits(<a href="#cl::desc">cl::desc</a>("<i>Available Optimizations:</i>"),
|
|
<a href="#cl::values">cl::values</a>(
|
|
clEnumVal(dce , "<i>Dead Code Elimination</i>"),
|
|
clEnumVal(constprop , "<i>Constant Propagation</i>"),
|
|
clEnumValN(inlining, "<i>inline</i>", "<i>Procedure Integration</i>"),
|
|
clEnumVal(strip , "<i>Strip Symbols</i>"),
|
|
clEnumValEnd));
|
|
</pre></div>
|
|
|
|
<p>To test to see if <tt>constprop</tt> was specified, we can use the
|
|
<tt>cl:bits::isSet</tt> function:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
if (OptimizationBits.isSet(constprop)) {
|
|
...
|
|
}
|
|
</pre></div>
|
|
|
|
<p>It's also possible to get the raw bit vector using the
|
|
<tt>cl::bits::getBits</tt> function:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
unsigned bits = OptimizationBits.getBits();
|
|
</pre></div>
|
|
|
|
<p>Finally, if external storage is used, then the location specified must be of
|
|
<b>type</b> <tt>unsigned</tt>. In all other ways a <a
|
|
href="#bits"><tt>cl::bits</tt></a> option is equivalent to a <a
|
|
href="#list"> <tt>cl::list</tt></a> option.</p>
|
|
|
|
</div>
|
|
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="description">Adding freeform text to help output</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>As our program grows and becomes more mature, we may decide to put summary
|
|
information about what it does into the help output. The help output is styled
|
|
to look similar to a Unix <tt>man</tt> page, providing concise information about
|
|
a program. Unix <tt>man</tt> pages, however often have a description about what
|
|
the program does. To add this to your CommandLine program, simply pass a third
|
|
argument to the <a
|
|
href="#cl::ParseCommandLineOptions"><tt>cl::ParseCommandLineOptions</tt></a>
|
|
call in main. This additional argument is then printed as the overview
|
|
information for your program, allowing you to include any additional information
|
|
that you want. For example:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
int main(int argc, char **argv) {
|
|
<a href="#cl::ParseCommandLineOptions">cl::ParseCommandLineOptions</a>(argc, argv, " CommandLine compiler example\n\n"
|
|
" This program blah blah blah...\n");
|
|
...
|
|
}
|
|
</pre></div>
|
|
|
|
<p>would yield the help output:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<b>OVERVIEW: CommandLine compiler example
|
|
|
|
This program blah blah blah...</b>
|
|
|
|
USAGE: compiler [options] <input file>
|
|
|
|
OPTIONS:
|
|
...
|
|
-help - display available options (--help-hidden for more)
|
|
-o <filename> - Specify output filename
|
|
</pre></div>
|
|
|
|
</div>
|
|
|
|
|
|
<!-- *********************************************************************** -->
|
|
<div class="doc_section">
|
|
<a name="referenceguide">Reference Guide</a>
|
|
</div>
|
|
<!-- *********************************************************************** -->
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>Now that you know the basics of how to use the CommandLine library, this
|
|
section will give you the detailed information you need to tune how command line
|
|
options work, as well as information on more "advanced" command line option
|
|
processing capabilities.</p>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="positional">Positional Arguments</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>Positional arguments are those arguments that are not named, and are not
|
|
specified with a hyphen. Positional arguments should be used when an option is
|
|
specified by its position alone. For example, the standard Unix <tt>grep</tt>
|
|
tool takes a regular expression argument, and an optional filename to search
|
|
through (which defaults to standard input if a filename is not specified).
|
|
Using the CommandLine library, this would be specified as:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<a href="#cl::opt">cl::opt</a><string> Regex (<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::desc">cl::desc</a>("<i><regular expression></i>"), <a href="#cl::Required">cl::Required</a>);
|
|
<a href="#cl::opt">cl::opt</a><string> Filename(<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::desc">cl::desc</a>("<i><input file></i>"), <a href="#cl::init">cl::init</a>("<i>-</i>"));
|
|
</pre></div>
|
|
|
|
<p>Given these two option declarations, the <tt>--help</tt> output for our grep
|
|
replacement would look like this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
USAGE: spiffygrep [options] <b><regular expression> <input file></b>
|
|
|
|
OPTIONS:
|
|
-help - display available options (--help-hidden for more)
|
|
</pre></div>
|
|
|
|
<p>... and the resultant program could be used just like the standard
|
|
<tt>grep</tt> tool.</p>
|
|
|
|
<p>Positional arguments are sorted by their order of construction. This means
|
|
that command line options will be ordered according to how they are listed in a
|
|
.cpp file, but will not have an ordering defined if the positional arguments
|
|
are defined in multiple .cpp files. The fix for this problem is simply to
|
|
define all of your positional arguments in one .cpp file.</p>
|
|
|
|
</div>
|
|
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="--">Specifying positional options with hyphens</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>Sometimes you may want to specify a value to your positional argument that
|
|
starts with a hyphen (for example, searching for '<tt>-foo</tt>' in a file). At
|
|
first, you will have trouble doing this, because it will try to find an argument
|
|
named '<tt>-foo</tt>', and will fail (and single quotes will not save you).
|
|
Note that the system <tt>grep</tt> has the same problem:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
$ spiffygrep '-foo' test.txt
|
|
Unknown command line argument '-foo'. Try: spiffygrep --help'
|
|
|
|
$ grep '-foo' test.txt
|
|
grep: illegal option -- f
|
|
grep: illegal option -- o
|
|
grep: illegal option -- o
|
|
Usage: grep -hblcnsviw pattern file . . .
|
|
</pre></div>
|
|
|
|
<p>The solution for this problem is the same for both your tool and the system
|
|
version: use the '<tt>--</tt>' marker. When the user specifies '<tt>--</tt>' on
|
|
the command line, it is telling the program that all options after the
|
|
'<tt>--</tt>' should be treated as positional arguments, not options. Thus, we
|
|
can use it like this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
$ spiffygrep -- -foo test.txt
|
|
...output...
|
|
</pre></div>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="getPosition">Determining absolute position with getPosition()</a>
|
|
</div>
|
|
<div class="doc_text">
|
|
<p>Sometimes an option can affect or modify the meaning of another option. For
|
|
example, consider <tt>gcc</tt>'s <tt>-x LANG</tt> option. This tells
|
|
<tt>gcc</tt> to ignore the suffix of subsequent positional arguments and force
|
|
the file to be interpreted as if it contained source code in language
|
|
<tt>LANG</tt>. In order to handle this properly, you need to know the
|
|
absolute position of each argument, especially those in lists, so their
|
|
interaction(s) can be applied correctly. This is also useful for options like
|
|
<tt>-llibname</tt> which is actually a positional argument that starts with
|
|
a dash.</p>
|
|
<p>So, generally, the problem is that you have two <tt>cl::list</tt> variables
|
|
that interact in some way. To ensure the correct interaction, you can use the
|
|
<tt>cl::list::getPosition(optnum)</tt> method. This method returns the
|
|
absolute position (as found on the command line) of the <tt>optnum</tt>
|
|
item in the <tt>cl::list</tt>.</p>
|
|
<p>The idiom for usage is like this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
static cl::list<std::string> Files(cl::Positional, cl::OneOrMore);
|
|
static cl::list<std::string> Libraries("l", cl::ZeroOrMore);
|
|
|
|
int main(int argc, char**argv) {
|
|
// ...
|
|
std::vector<std::string>::iterator fileIt = Files.begin();
|
|
std::vector<std::string>::iterator libIt = Libraries.begin();
|
|
unsigned libPos = 0, filePos = 0;
|
|
while ( 1 ) {
|
|
if ( libIt != Libraries.end() )
|
|
libPos = Libraries.getPosition( libIt - Libraries.begin() );
|
|
else
|
|
libPos = 0;
|
|
if ( fileIt != Files.end() )
|
|
filePos = Files.getPosition( fileIt - Files.begin() );
|
|
else
|
|
filePos = 0;
|
|
|
|
if ( filePos != 0 && (libPos == 0 || filePos < libPos) ) {
|
|
// Source File Is next
|
|
++fileIt;
|
|
}
|
|
else if ( libPos != 0 && (filePos == 0 || libPos < filePos) ) {
|
|
// Library is next
|
|
++libIt;
|
|
}
|
|
else
|
|
break; // we're done with the list
|
|
}
|
|
}</pre></div>
|
|
|
|
<p>Note that, for compatibility reasons, the <tt>cl::opt</tt> also supports an
|
|
<tt>unsigned getPosition()</tt> option that will provide the absolute position
|
|
of that option. You can apply the same approach as above with a
|
|
<tt>cl::opt</tt> and a <tt>cl::list</tt> option as you can with two lists.</p>
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="cl::ConsumeAfter">The <tt>cl::ConsumeAfter</tt> modifier</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>The <tt>cl::ConsumeAfter</tt> <a href="#formatting">formatting option</a> is
|
|
used to construct programs that use "interpreter style" option processing. With
|
|
this style of option processing, all arguments specified after the last
|
|
positional argument are treated as special interpreter arguments that are not
|
|
interpreted by the command line argument.</p>
|
|
|
|
<p>As a concrete example, lets say we are developing a replacement for the
|
|
standard Unix Bourne shell (<tt>/bin/sh</tt>). To run <tt>/bin/sh</tt>, first
|
|
you specify options to the shell itself (like <tt>-x</tt> which turns on trace
|
|
output), then you specify the name of the script to run, then you specify
|
|
arguments to the script. These arguments to the script are parsed by the Bourne
|
|
shell command line option processor, but are not interpreted as options to the
|
|
shell itself. Using the CommandLine library, we would specify this as:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<a href="#cl::opt">cl::opt</a><string> Script(<a href="#cl::Positional">cl::Positional</a>, <a href="#cl::desc">cl::desc</a>("<i><input script></i>"), <a href="#cl::init">cl::init</a>("-"));
|
|
<a href="#cl::list">cl::list</a><string> Argv(<a href="#cl::ConsumeAfter">cl::ConsumeAfter</a>, <a href="#cl::desc">cl::desc</a>("<i><program arguments>...</i>"));
|
|
<a href="#cl::opt">cl::opt</a><bool> Trace("<i>x</i>", <a href="#cl::desc">cl::desc</a>("<i>Enable trace output</i>"));
|
|
</pre></div>
|
|
|
|
<p>which automatically provides the help output:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
USAGE: spiffysh [options] <b><input script> <program arguments>...</b>
|
|
|
|
OPTIONS:
|
|
-help - display available options (--help-hidden for more)
|
|
<b>-x - Enable trace output</b>
|
|
</pre></div>
|
|
|
|
<p>At runtime, if we run our new shell replacement as `<tt>spiffysh -x test.sh
|
|
-a -x -y bar</tt>', the <tt>Trace</tt> variable will be set to true, the
|
|
<tt>Script</tt> variable will be set to "<tt>test.sh</tt>", and the
|
|
<tt>Argv</tt> list will contain <tt>["-a", "-x", "-y", "bar"]</tt>, because they
|
|
were specified after the last positional argument (which is the script
|
|
name).</p>
|
|
|
|
<p>There are several limitations to when <tt>cl::ConsumeAfter</tt> options can
|
|
be specified. For example, only one <tt>cl::ConsumeAfter</tt> can be specified
|
|
per program, there must be at least one <a href="#positional">positional
|
|
argument</a> specified, there must not be any <a href="#cl::list">cl::list</a>
|
|
positional arguments, and the <tt>cl::ConsumeAfter</tt> option should be a <a
|
|
href="#cl::list">cl::list</a> option.</p>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="storage">Internal vs External Storage</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>By default, all command line options automatically hold the value that they
|
|
parse from the command line. This is very convenient in the common case,
|
|
especially when combined with the ability to define command line options in the
|
|
files that use them. This is called the internal storage model.</p>
|
|
|
|
<p>Sometimes, however, it is nice to separate the command line option processing
|
|
code from the storage of the value parsed. For example, lets say that we have a
|
|
'<tt>-debug</tt>' option that we would like to use to enable debug information
|
|
across the entire body of our program. In this case, the boolean value
|
|
controlling the debug code should be globally accessable (in a header file, for
|
|
example) yet the command line option processing code should not be exposed to
|
|
all of these clients (requiring lots of .cpp files to #include
|
|
<tt>CommandLine.h</tt>).</p>
|
|
|
|
<p>To do this, set up your .h file with your option, like this for example:</p>
|
|
|
|
<div class="doc_code">
|
|
<pre>
|
|
<i>// DebugFlag.h - Get access to the '-debug' command line option
|
|
//
|
|
|
|
// DebugFlag - This boolean is set to true if the '-debug' command line option
|
|
// is specified. This should probably not be referenced directly, instead, use
|
|
// the DEBUG macro below.
|
|
//</i>
|
|
extern bool DebugFlag;
|
|
|
|
<i>// DEBUG macro - This macro should be used by code to emit debug information.
|
|
// In the '-debug' option is specified on the command line, and if this is a
|
|
// debug build, then the code specified as the option to the macro will be
|
|
// executed. Otherwise it will not be.</i>
|
|
<span class="doc_hilite">#ifdef NDEBUG
|
|
#define DEBUG(X)
|
|
#else
|
|
#define DEBUG(X)</span> do { if (DebugFlag) { X; } } while (0)
|
|
<span class="doc_hilite">#endif</span>
|
|
</pre>
|
|
</div>
|
|
|
|
<p>This allows clients to blissfully use the <tt>DEBUG()</tt> macro, or the
|
|
<tt>DebugFlag</tt> explicitly if they want to. Now we just need to be able to
|
|
set the <tt>DebugFlag</tt> boolean when the option is set. To do this, we pass
|
|
an additional argument to our command line argument processor, and we specify
|
|
where to fill in with the <a href="#cl::location">cl::location</a>
|
|
attribute:</p>
|
|
|
|
<div class="doc_code">
|
|
<pre>
|
|
bool DebugFlag; <i>// the actual value</i>
|
|
static <a href="#cl::opt">cl::opt</a><bool, true> <i>// The parser</i>
|
|
Debug("<i>debug</i>", <a href="#cl::desc">cl::desc</a>("<i>Enable debug output</i>"), <a href="#cl::Hidden">cl::Hidden</a>, <a href="#cl::location">cl::location</a>(DebugFlag));
|
|
</pre>
|
|
</div>
|
|
|
|
<p>In the above example, we specify "<tt>true</tt>" as the second argument to
|
|
the <tt><a href="#cl::opt">cl::opt</a></tt> template, indicating that the
|
|
template should not maintain a copy of the value itself. In addition to this,
|
|
we specify the <tt><a href="#cl::location">cl::location</a></tt> attribute, so
|
|
that <tt>DebugFlag</tt> is automatically set.</p>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="attributes">Option Attributes</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>This section describes the basic attributes that you can specify on
|
|
options.</p>
|
|
|
|
<ul>
|
|
|
|
<li>The option name attribute (which is required for all options, except <a
|
|
href="#positional">positional options</a>) specifies what the option name is.
|
|
This option is specified in simple double quotes:
|
|
|
|
<pre>
|
|
<a href="#cl::opt">cl::opt</a><<b>bool</b>> Quiet("<i>quiet</i>");
|
|
</pre>
|
|
|
|
</li>
|
|
|
|
<li><a name="cl::desc">The <b><tt>cl::desc</tt></b></a> attribute specifies a
|
|
description for the option to be shown in the <tt>--help</tt> output for the
|
|
program.</li>
|
|
|
|
<li><a name="cl::value_desc">The <b><tt>cl::value_desc</tt></b></a> attribute
|
|
specifies a string that can be used to fine tune the <tt>--help</tt> output for
|
|
a command line option. Look <a href="#value_desc_example">here</a> for an
|
|
example.</li>
|
|
|
|
<li><a name="cl::init">The <b><tt>cl::init</tt></b></a> attribute specifies an
|
|
inital value for a <a href="#cl::opt">scalar</a> option. If this attribute is
|
|
not specified then the command line option value defaults to the value created
|
|
by the default constructor for the type. <b>Warning</b>: If you specify both
|
|
<b><tt>cl::init</tt></b> and <b><tt>cl::location</tt></b> for an option,
|
|
you must specify <b><tt>cl::location</tt></b> first, so that when the
|
|
command-line parser sees <b><tt>cl::init</tt></b>, it knows where to put the
|
|
initial value. (You will get an error at runtime if you don't put them in
|
|
the right order.)</li>
|
|
|
|
<li><a name="cl::location">The <b><tt>cl::location</tt></b></a> attribute where
|
|
to store the value for a parsed command line option if using external storage.
|
|
See the section on <a href="#storage">Internal vs External Storage</a> for more
|
|
information.</li>
|
|
|
|
<li><a name="cl::aliasopt">The <b><tt>cl::aliasopt</tt></b></a> attribute
|
|
specifies which option a <tt><a href="#cl::alias">cl::alias</a></tt> option is
|
|
an alias for.</li>
|
|
|
|
<li><a name="cl::values">The <b><tt>cl::values</tt></b></a> attribute specifies
|
|
the string-to-value mapping to be used by the generic parser. It takes a
|
|
<b>clEnumValEnd terminated</b> list of (option, value, description) triplets
|
|
that
|
|
specify the option name, the value mapped to, and the description shown in the
|
|
<tt>--help</tt> for the tool. Because the generic parser is used most
|
|
frequently with enum values, two macros are often useful:
|
|
|
|
<ol>
|
|
|
|
<li><a name="clEnumVal">The <b><tt>clEnumVal</tt></b></a> macro is used as a
|
|
nice simple way to specify a triplet for an enum. This macro automatically
|
|
makes the option name be the same as the enum name. The first option to the
|
|
macro is the enum, the second is the description for the command line
|
|
option.</li>
|
|
|
|
<li><a name="clEnumValN">The <b><tt>clEnumValN</tt></b></a> macro is used to
|
|
specify macro options where the option name doesn't equal the enum name. For
|
|
this macro, the first argument is the enum value, the second is the flag name,
|
|
and the second is the description.</li>
|
|
|
|
</ol>
|
|
|
|
You will get a compile time error if you try to use cl::values with a parser
|
|
that does not support it.</li>
|
|
|
|
<li><a name="cl::multi_val">The <b><tt>cl::multi_val</tt></b></a>
|
|
attribute specifies that this option takes has multiple values
|
|
(example: <tt>-sectalign segname sectname sectvalue</tt>). This
|
|
attribute takes one unsigned argument - the number of values for the
|
|
option. This attribute is valid only on <tt>cl::list</tt> options (and
|
|
will fail with compile error if you try to use it with other option
|
|
types). It is allowed to use all of the usual modifiers on
|
|
multi-valued options (besides <tt>cl::ValueDisallowed</tt>,
|
|
obviously).</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="modifiers">Option Modifiers</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>Option modifiers are the flags and expressions that you pass into the
|
|
constructors for <tt><a href="#cl::opt">cl::opt</a></tt> and <tt><a
|
|
href="#cl::list">cl::list</a></tt>. These modifiers give you the ability to
|
|
tweak how options are parsed and how <tt>--help</tt> output is generated to fit
|
|
your application well.</p>
|
|
|
|
<p>These options fall into five main catagories:</p>
|
|
|
|
<ol>
|
|
<li><a href="#hiding">Hiding an option from <tt>--help</tt> output</a></li>
|
|
<li><a href="#numoccurrences">Controlling the number of occurrences
|
|
required and allowed</a></li>
|
|
<li><a href="#valrequired">Controlling whether or not a value must be
|
|
specified</a></li>
|
|
<li><a href="#formatting">Controlling other formatting options</a></li>
|
|
<li><a href="#misc">Miscellaneous option modifiers</a></li>
|
|
</ol>
|
|
|
|
<p>It is not possible to specify two options from the same catagory (you'll get
|
|
a runtime error) to a single option, except for options in the miscellaneous
|
|
catagory. The CommandLine library specifies defaults for all of these settings
|
|
that are the most useful in practice and the most common, which mean that you
|
|
usually shouldn't have to worry about these.</p>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="hiding">Hiding an option from <tt>--help</tt> output</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>The <tt>cl::NotHidden</tt>, <tt>cl::Hidden</tt>, and
|
|
<tt>cl::ReallyHidden</tt> modifiers are used to control whether or not an option
|
|
appears in the <tt>--help</tt> and <tt>--help-hidden</tt> output for the
|
|
compiled program:</p>
|
|
|
|
<ul>
|
|
|
|
<li><a name="cl::NotHidden">The <b><tt>cl::NotHidden</tt></b></a> modifier
|
|
(which is the default for <tt><a href="#cl::opt">cl::opt</a></tt> and <tt><a
|
|
href="#cl::list">cl::list</a></tt> options) indicates the option is to appear
|
|
in both help listings.</li>
|
|
|
|
<li><a name="cl::Hidden">The <b><tt>cl::Hidden</tt></b></a> modifier (which is the
|
|
default for <tt><a href="#cl::alias">cl::alias</a></tt> options) indicates that
|
|
the option should not appear in the <tt>--help</tt> output, but should appear in
|
|
the <tt>--help-hidden</tt> output.</li>
|
|
|
|
<li><a name="cl::ReallyHidden">The <b><tt>cl::ReallyHidden</tt></b></a> modifier
|
|
indicates that the option should not appear in any help output.</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="numoccurrences">Controlling the number of occurrences required and
|
|
allowed</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>This group of options is used to control how many time an option is allowed
|
|
(or required) to be specified on the command line of your program. Specifying a
|
|
value for this setting allows the CommandLine library to do error checking for
|
|
you.</p>
|
|
|
|
<p>The allowed values for this option group are:</p>
|
|
|
|
<ul>
|
|
|
|
<li><a name="cl::Optional">The <b><tt>cl::Optional</tt></b></a> modifier (which
|
|
is the default for the <tt><a href="#cl::opt">cl::opt</a></tt> and <tt><a
|
|
href="#cl::alias">cl::alias</a></tt> classes) indicates that your program will
|
|
allow either zero or one occurrence of the option to be specified.</li>
|
|
|
|
<li><a name="cl::ZeroOrMore">The <b><tt>cl::ZeroOrMore</tt></b></a> modifier
|
|
(which is the default for the <tt><a href="#cl::list">cl::list</a></tt> class)
|
|
indicates that your program will allow the option to be specified zero or more
|
|
times.</li>
|
|
|
|
<li><a name="cl::Required">The <b><tt>cl::Required</tt></b></a> modifier
|
|
indicates that the specified option must be specified exactly one time.</li>
|
|
|
|
<li><a name="cl::OneOrMore">The <b><tt>cl::OneOrMore</tt></b></a> modifier
|
|
indicates that the option must be specified at least one time.</li>
|
|
|
|
<li>The <b><tt>cl::ConsumeAfter</tt></b> modifier is described in the <a
|
|
href="#positional">Positional arguments section</a>.</li>
|
|
|
|
</ul>
|
|
|
|
<p>If an option is not specified, then the value of the option is equal to the
|
|
value specified by the <tt><a href="#cl::init">cl::init</a></tt> attribute. If
|
|
the <tt><a href="#cl::init">cl::init</a></tt> attribute is not specified, the
|
|
option value is initialized with the default constructor for the data type.</p>
|
|
|
|
<p>If an option is specified multiple times for an option of the <tt><a
|
|
href="#cl::opt">cl::opt</a></tt> class, only the last value will be
|
|
retained.</p>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="valrequired">Controlling whether or not a value must be specified</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>This group of options is used to control whether or not the option allows a
|
|
value to be present. In the case of the CommandLine library, a value is either
|
|
specified with an equal sign (e.g. '<tt>-index-depth=17</tt>') or as a trailing
|
|
string (e.g. '<tt>-o a.out</tt>').</p>
|
|
|
|
<p>The allowed values for this option group are:</p>
|
|
|
|
<ul>
|
|
|
|
<li><a name="cl::ValueOptional">The <b><tt>cl::ValueOptional</tt></b></a> modifier
|
|
(which is the default for <tt>bool</tt> typed options) specifies that it is
|
|
acceptable to have a value, or not. A boolean argument can be enabled just by
|
|
appearing on the command line, or it can have an explicit '<tt>-foo=true</tt>'.
|
|
If an option is specified with this mode, it is illegal for the value to be
|
|
provided without the equal sign. Therefore '<tt>-foo true</tt>' is illegal. To
|
|
get this behavior, you must use the <a
|
|
href="#cl::ValueRequired">cl::ValueRequired</a> modifier.</li>
|
|
|
|
<li><a name="cl::ValueRequired">The <b><tt>cl::ValueRequired</tt></b></a> modifier
|
|
(which is the default for all other types except for <a
|
|
href="#onealternative">unnamed alternatives using the generic parser</a>)
|
|
specifies that a value must be provided. This mode informs the command line
|
|
library that if an option is not provides with an equal sign, that the next
|
|
argument provided must be the value. This allows things like '<tt>-o
|
|
a.out</tt>' to work.</li>
|
|
|
|
<li><a name="cl::ValueDisallowed">The <b><tt>cl::ValueDisallowed</tt></b></a>
|
|
modifier (which is the default for <a href="#onealternative">unnamed
|
|
alternatives using the generic parser</a>) indicates that it is a runtime error
|
|
for the user to specify a value. This can be provided to disallow users from
|
|
providing options to boolean options (like '<tt>-foo=true</tt>').</li>
|
|
|
|
</ul>
|
|
|
|
<p>In general, the default values for this option group work just like you would
|
|
want them to. As mentioned above, you can specify the <a
|
|
href="#cl::ValueDisallowed">cl::ValueDisallowed</a> modifier to a boolean
|
|
argument to restrict your command line parser. These options are mostly useful
|
|
when <a href="#extensionguide">extending the library</a>.</p>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="formatting">Controlling other formatting options</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>The formatting option group is used to specify that the command line option
|
|
has special abilities and is otherwise different from other command line
|
|
arguments. As usual, you can only specify one of these arguments at most.</p>
|
|
|
|
<ul>
|
|
|
|
<li><a name="cl::NormalFormatting">The <b><tt>cl::NormalFormatting</tt></b></a>
|
|
modifier (which is the default all options) specifies that this option is
|
|
"normal".</li>
|
|
|
|
<li><a name="cl::Positional">The <b><tt>cl::Positional</tt></b></a> modifier
|
|
specifies that this is a positional argument that does not have a command line
|
|
option associated with it. See the <a href="#positional">Positional
|
|
Arguments</a> section for more information.</li>
|
|
|
|
<li>The <b><a href="#cl::ConsumeAfter"><tt>cl::ConsumeAfter</tt></a></b> modifier
|
|
specifies that this option is used to capture "interpreter style" arguments. See <a href="#cl::ConsumeAfter">this section for more information</a>.</li>
|
|
|
|
<li><a name="cl::Prefix">The <b><tt>cl::Prefix</tt></b></a> modifier specifies
|
|
that this option prefixes its value. With 'Prefix' options, the equal sign does
|
|
not separate the value from the option name specified. Instead, the value is
|
|
everything after the prefix, including any equal sign if present. This is useful
|
|
for processing odd arguments like <tt>-lmalloc</tt> and <tt>-L/usr/lib</tt> in a
|
|
linker tool or <tt>-DNAME=value</tt> in a compiler tool. Here, the
|
|
'<tt>l</tt>', '<tt>D</tt>' and '<tt>L</tt>' options are normal string (or list)
|
|
options, that have the <b><tt><a href="#cl::Prefix">cl::Prefix</a></tt></b>
|
|
modifier added to allow the CommandLine library to recognize them. Note that
|
|
<b><tt><a href="#cl::Prefix">cl::Prefix</a></tt></b> options must not have the
|
|
<b><tt><a href="#cl::ValueDisallowed">cl::ValueDisallowed</a></tt></b> modifier
|
|
specified.</li>
|
|
|
|
<li><a name="cl::Grouping">The <b><tt>cl::Grouping</tt></b></a> modifier is used
|
|
to implement Unix-style tools (like <tt>ls</tt>) that have lots of single letter
|
|
arguments, but only require a single dash. For example, the '<tt>ls -labF</tt>'
|
|
command actually enables four different options, all of which are single
|
|
letters. Note that <b><tt><a href="#cl::Grouping">cl::Grouping</a></tt></b>
|
|
options cannot have values.</li>
|
|
|
|
</ul>
|
|
|
|
<p>The CommandLine library does not restrict how you use the <b><tt><a
|
|
href="#cl::Prefix">cl::Prefix</a></tt></b> or <b><tt><a
|
|
href="#cl::Grouping">cl::Grouping</a></tt></b> modifiers, but it is possible to
|
|
specify ambiguous argument settings. Thus, it is possible to have multiple
|
|
letter options that are prefix or grouping options, and they will still work as
|
|
designed.</p>
|
|
|
|
<p>To do this, the CommandLine library uses a greedy algorithm to parse the
|
|
input option into (potentially multiple) prefix and grouping options. The
|
|
strategy basically looks like this:</p>
|
|
|
|
<div class="doc_code"><tt>parse(string OrigInput) {</tt>
|
|
|
|
<ol>
|
|
<li><tt>string input = OrigInput;</tt>
|
|
<li><tt>if (isOption(input)) return getOption(input).parse();</tt> <i>// Normal option</i>
|
|
<li><tt>while (!isOption(input) && !input.empty()) input.pop_back();</tt> <i>// Remove the last letter</i>
|
|
<li><tt>if (input.empty()) return error();</tt> <i>// No matching option</i>
|
|
<li><tt>if (getOption(input).isPrefix())<br>
|
|
return getOption(input).parse(input);</tt>
|
|
<li><tt>while (!input.empty()) { <i>// Must be grouping options</i><br>
|
|
getOption(input).parse();<br>
|
|
OrigInput.erase(OrigInput.begin(), OrigInput.begin()+input.length());<br>
|
|
input = OrigInput;<br>
|
|
while (!isOption(input) && !input.empty()) input.pop_back();<br>
|
|
}</tt>
|
|
<li><tt>if (!OrigInput.empty()) error();</tt></li>
|
|
</ol>
|
|
|
|
<p><tt>}</tt></p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="misc">Miscellaneous option modifiers</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>The miscellaneous option modifiers are the only flags where you can specify
|
|
more than one flag from the set: they are not mutually exclusive. These flags
|
|
specify boolean properties that modify the option.</p>
|
|
|
|
<ul>
|
|
|
|
<li><a name="cl::CommaSeparated">The <b><tt>cl::CommaSeparated</tt></b></a> modifier
|
|
indicates that any commas specified for an option's value should be used to
|
|
split the value up into multiple values for the option. For example, these two
|
|
options are equivalent when <tt>cl::CommaSeparated</tt> is specified:
|
|
"<tt>-foo=a -foo=b -foo=c</tt>" and "<tt>-foo=a,b,c</tt>". This option only
|
|
makes sense to be used in a case where the option is allowed to accept one or
|
|
more values (i.e. it is a <a href="#cl::list">cl::list</a> option).</li>
|
|
|
|
<li><a name="cl::PositionalEatsArgs">The
|
|
<b><tt>cl::PositionalEatsArgs</tt></b></a> modifier (which only applies to
|
|
positional arguments, and only makes sense for lists) indicates that positional
|
|
argument should consume any strings after it (including strings that start with
|
|
a "-") up until another recognized positional argument. For example, if you
|
|
have two "eating" positional arguments, "<tt>pos1</tt>" and "<tt>pos2</tt>", the
|
|
string "<tt>-pos1 -foo -bar baz -pos2 -bork</tt>" would cause the "<tt>-foo -bar
|
|
-baz</tt>" strings to be applied to the "<tt>-pos1</tt>" option and the
|
|
"<tt>-bork</tt>" string to be applied to the "<tt>-pos2</tt>" option.</li>
|
|
|
|
<li><a name="cl::Sink">The <b><tt>cl::Sink</tt></b></a> modifier is
|
|
used to handle unknown options. If there is at least one option with
|
|
<tt>cl::Sink</tt> modifier specified, the parser passes
|
|
unrecognized option strings to it as values instead of signaling an
|
|
error. As with <tt>cl::CommaSeparated</tt>, this modifier
|
|
only makes sense with a <a href="#cl::list">cl::list</a> option.</li>
|
|
|
|
</ul>
|
|
|
|
<p>So far, these are the only three miscellaneous option modifiers.</p>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="response">Response files</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>Some systems, such as certain variants of Microsoft Windows and
|
|
some older Unices have a relatively low limit on command-line
|
|
length. It is therefore customary to use the so-called 'response
|
|
files' to circumvent this restriction. These files are mentioned on
|
|
the command-line (using the "@file") syntax. The program reads these
|
|
files and inserts the contents into argv, thereby working around the
|
|
command-line length limits. Response files are enabled by an optional
|
|
fourth argument to
|
|
<a href="#cl::ParseEnvironmentOptions"><tt>cl::ParseEnvironmentOptions</tt></a>
|
|
and
|
|
<a href="#cl::ParseCommandLineOptions"><tt>cl::ParseCommandLineOptions</tt></a>.
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="toplevel">Top-Level Classes and Functions</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>Despite all of the built-in flexibility, the CommandLine option library
|
|
really only consists of one function (<a
|
|
href="#cl::ParseCommandLineOptions"><tt>cl::ParseCommandLineOptions</tt></a>)
|
|
and three main classes: <a href="#cl::opt"><tt>cl::opt</tt></a>, <a
|
|
href="#cl::list"><tt>cl::list</tt></a>, and <a
|
|
href="#cl::alias"><tt>cl::alias</tt></a>. This section describes these three
|
|
classes in detail.</p>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="cl::ParseCommandLineOptions">The <tt>cl::ParseCommandLineOptions</tt>
|
|
function</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>The <tt>cl::ParseCommandLineOptions</tt> function is designed to be called
|
|
directly from <tt>main</tt>, and is used to fill in the values of all of the
|
|
command line option variables once <tt>argc</tt> and <tt>argv</tt> are
|
|
available.</p>
|
|
|
|
<p>The <tt>cl::ParseCommandLineOptions</tt> function requires two parameters
|
|
(<tt>argc</tt> and <tt>argv</tt>), but may also take an optional third parameter
|
|
which holds <a href="#description">additional extra text</a> to emit when the
|
|
<tt>--help</tt> option is invoked, and a fourth boolean parameter that enables
|
|
<a href="#response">response files</a>.</p>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="cl::ParseEnvironmentOptions">The <tt>cl::ParseEnvironmentOptions</tt>
|
|
function</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>The <tt>cl::ParseEnvironmentOptions</tt> function has mostly the same effects
|
|
as <a
|
|
href="#cl::ParseCommandLineOptions"><tt>cl::ParseCommandLineOptions</tt></a>,
|
|
except that it is designed to take values for options from an environment
|
|
variable, for those cases in which reading the command line is not convenient or
|
|
desired. It fills in the values of all the command line option variables just
|
|
like <a
|
|
href="#cl::ParseCommandLineOptions"><tt>cl::ParseCommandLineOptions</tt></a>
|
|
does.</p>
|
|
|
|
<p>It takes four parameters: the name of the program (since <tt>argv</tt> may
|
|
not be available, it can't just look in <tt>argv[0]</tt>), the name of the
|
|
environment variable to examine, the optional
|
|
<a href="#description">additional extra text</a> to emit when the
|
|
<tt>--help</tt> option is invoked, and the boolean
|
|
switch that controls whether <a href="#response">reponse files</a>
|
|
should be read.</p>
|
|
|
|
<p><tt>cl::ParseEnvironmentOptions</tt> will break the environment
|
|
variable's value up into words and then process them using
|
|
<a href="#cl::ParseCommandLineOptions"><tt>cl::ParseCommandLineOptions</tt></a>.
|
|
<b>Note:</b> Currently <tt>cl::ParseEnvironmentOptions</tt> does not support
|
|
quoting, so an environment variable containing <tt>-option "foo bar"</tt> will
|
|
be parsed as three words, <tt>-option</tt>, <tt>"foo</tt>, and <tt>bar"</tt>,
|
|
which is different from what you would get from the shell with the same
|
|
input.</p>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="cl::SetVersionPrinter">The <tt>cl::SetVersionPrinter</tt>
|
|
function</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>The <tt>cl::SetVersionPrinter</tt> function is designed to be called
|
|
directly from <tt>main</tt> and <i>before</i>
|
|
<tt>cl::ParseCommandLineOptions</tt>. Its use is optional. It simply arranges
|
|
for a function to be called in response to the <tt>--version</tt> option instead
|
|
of having the <tt>CommandLine</tt> library print out the usual version string
|
|
for LLVM. This is useful for programs that are not part of LLVM but wish to use
|
|
the <tt>CommandLine</tt> facilities. Such programs should just define a small
|
|
function that takes no arguments and returns <tt>void</tt> and that prints out
|
|
whatever version information is appropriate for the program. Pass the address
|
|
of that function to <tt>cl::SetVersionPrinter</tt> to arrange for it to be
|
|
called when the <tt>--version</tt> option is given by the user.</p>
|
|
|
|
</div>
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="cl::opt">The <tt>cl::opt</tt> class</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>The <tt>cl::opt</tt> class is the class used to represent scalar command line
|
|
options, and is the one used most of the time. It is a templated class which
|
|
can take up to three arguments (all except for the first have default values
|
|
though):</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<b>namespace</b> cl {
|
|
<b>template</b> <<b>class</b> DataType, <b>bool</b> ExternalStorage = <b>false</b>,
|
|
<b>class</b> ParserClass = parser<DataType> >
|
|
<b>class</b> opt;
|
|
}
|
|
</pre></div>
|
|
|
|
<p>The first template argument specifies what underlying data type the command
|
|
line argument is, and is used to select a default parser implementation. The
|
|
second template argument is used to specify whether the option should contain
|
|
the storage for the option (the default) or whether external storage should be
|
|
used to contain the value parsed for the option (see <a href="#storage">Internal
|
|
vs External Storage</a> for more information).</p>
|
|
|
|
<p>The third template argument specifies which parser to use. The default value
|
|
selects an instantiation of the <tt>parser</tt> class based on the underlying
|
|
data type of the option. In general, this default works well for most
|
|
applications, so this option is only used when using a <a
|
|
href="#customparser">custom parser</a>.</p>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="cl::list">The <tt>cl::list</tt> class</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>The <tt>cl::list</tt> class is the class used to represent a list of command
|
|
line options. It too is a templated class which can take up to three
|
|
arguments:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<b>namespace</b> cl {
|
|
<b>template</b> <<b>class</b> DataType, <b>class</b> Storage = <b>bool</b>,
|
|
<b>class</b> ParserClass = parser<DataType> >
|
|
<b>class</b> list;
|
|
}
|
|
</pre></div>
|
|
|
|
<p>This class works the exact same as the <a
|
|
href="#cl::opt"><tt>cl::opt</tt></a> class, except that the second argument is
|
|
the <b>type</b> of the external storage, not a boolean value. For this class,
|
|
the marker type '<tt>bool</tt>' is used to indicate that internal storage should
|
|
be used.</p>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="cl::bits">The <tt>cl::bits</tt> class</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>The <tt>cl::bits</tt> class is the class used to represent a list of command
|
|
line options in the form of a bit vector. It is also a templated class which
|
|
can take up to three arguments:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<b>namespace</b> cl {
|
|
<b>template</b> <<b>class</b> DataType, <b>class</b> Storage = <b>bool</b>,
|
|
<b>class</b> ParserClass = parser<DataType> >
|
|
<b>class</b> bits;
|
|
}
|
|
</pre></div>
|
|
|
|
<p>This class works the exact same as the <a
|
|
href="#cl::opt"><tt>cl::lists</tt></a> class, except that the second argument
|
|
must be of <b>type</b> <tt>unsigned</tt> if external storage is used.</p>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="cl::alias">The <tt>cl::alias</tt> class</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>The <tt>cl::alias</tt> class is a nontemplated class that is used to form
|
|
aliases for other arguments.</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<b>namespace</b> cl {
|
|
<b>class</b> alias;
|
|
}
|
|
</pre></div>
|
|
|
|
<p>The <a href="#cl::aliasopt"><tt>cl::aliasopt</tt></a> attribute should be
|
|
used to specify which option this is an alias for. Alias arguments default to
|
|
being <a href="#cl::Hidden">Hidden</a>, and use the aliased options parser to do
|
|
the conversion from string to data.</p>
|
|
|
|
</div>
|
|
|
|
<!-- _______________________________________________________________________ -->
|
|
<div class="doc_subsubsection">
|
|
<a name="cl::extrahelp">The <tt>cl::extrahelp</tt> class</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>The <tt>cl::extrahelp</tt> class is a nontemplated class that allows extra
|
|
help text to be printed out for the <tt>--help</tt> option.</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<b>namespace</b> cl {
|
|
<b>struct</b> extrahelp;
|
|
}
|
|
</pre></div>
|
|
|
|
<p>To use the extrahelp, simply construct one with a <tt>const char*</tt>
|
|
parameter to the constructor. The text passed to the constructor will be printed
|
|
at the bottom of the help message, verbatim. Note that multiple
|
|
<tt>cl::extrahelp</tt> <b>can</b> be used, but this practice is discouraged. If
|
|
your tool needs to print additional help information, put all that help into a
|
|
single <tt>cl::extrahelp</tt> instance.</p>
|
|
<p>For example:</p>
|
|
<div class="doc_code"><pre>
|
|
cl::extrahelp("\nADDITIONAL HELP:\n\n This is the extra help\n");
|
|
</pre></div>
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="builtinparsers">Builtin parsers</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>Parsers control how the string value taken from the command line is
|
|
translated into a typed value, suitable for use in a C++ program. By default,
|
|
the CommandLine library uses an instance of <tt>parser<type></tt> if the
|
|
command line option specifies that it uses values of type '<tt>type</tt>'.
|
|
Because of this, custom option processing is specified with specializations of
|
|
the '<tt>parser</tt>' class.</p>
|
|
|
|
<p>The CommandLine library provides the following builtin parser
|
|
specializations, which are sufficient for most applications. It can, however,
|
|
also be extended to work with new data types and new ways of interpreting the
|
|
same data. See the <a href="#customparser">Writing a Custom Parser</a> for more
|
|
details on this type of library extension.</p>
|
|
|
|
<ul>
|
|
|
|
<li><a name="genericparser">The <b>generic <tt>parser<t></tt> parser</b></a>
|
|
can be used to map strings values to any data type, through the use of the <a
|
|
href="#cl::values">cl::values</a> property, which specifies the mapping
|
|
information. The most common use of this parser is for parsing enum values,
|
|
which allows you to use the CommandLine library for all of the error checking to
|
|
make sure that only valid enum values are specified (as opposed to accepting
|
|
arbitrary strings). Despite this, however, the generic parser class can be used
|
|
for any data type.</li>
|
|
|
|
<li><a name="boolparser">The <b><tt>parser<bool></tt> specialization</b></a>
|
|
is used to convert boolean strings to a boolean value. Currently accepted
|
|
strings are "<tt>true</tt>", "<tt>TRUE</tt>", "<tt>True</tt>", "<tt>1</tt>",
|
|
"<tt>false</tt>", "<tt>FALSE</tt>", "<tt>False</tt>", and "<tt>0</tt>".</li>
|
|
|
|
<li><a name="boolOrDefaultparser">The <b><tt>parser<boolOrDefault></tt>
|
|
specialization</b></a> is used for cases where the value is boolean,
|
|
but we also need to know whether the option was specified at all. boolOrDefault
|
|
is an enum with 3 values, BOU_UNSET, BOU_TRUE and BOU_FALSE. This parser accepts
|
|
the same strings as <b><tt>parser<bool></tt></b>.</li>
|
|
|
|
<li><a name="stringparser">The <b><tt>parser<string></tt>
|
|
specialization</b></a> simply stores the parsed string into the string value
|
|
specified. No conversion or modification of the data is performed.</li>
|
|
|
|
<li><a name="intparser">The <b><tt>parser<int></tt> specialization</b></a>
|
|
uses the C <tt>strtol</tt> function to parse the string input. As such, it will
|
|
accept a decimal number (with an optional '+' or '-' prefix) which must start
|
|
with a non-zero digit. It accepts octal numbers, which are identified with a
|
|
'<tt>0</tt>' prefix digit, and hexadecimal numbers with a prefix of
|
|
'<tt>0x</tt>' or '<tt>0X</tt>'.</li>
|
|
|
|
<li><a name="doubleparser">The <b><tt>parser<double></tt></b></a> and
|
|
<b><tt>parser<float></tt> specializations</b> use the standard C
|
|
<tt>strtod</tt> function to convert floating point strings into floating point
|
|
values. As such, a broad range of string formats is supported, including
|
|
exponential notation (ex: <tt>1.7e15</tt>) and properly supports locales.
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<!-- *********************************************************************** -->
|
|
<div class="doc_section">
|
|
<a name="extensionguide">Extension Guide</a>
|
|
</div>
|
|
<!-- *********************************************************************** -->
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>Although the CommandLine library has a lot of functionality built into it
|
|
already (as discussed previously), one of its true strengths lie in its
|
|
extensibility. This section discusses how the CommandLine library works under
|
|
the covers and illustrates how to do some simple, common, extensions.</p>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="customparser">Writing a custom parser</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>One of the simplest and most common extensions is the use of a custom parser.
|
|
As <a href="#builtinparsers">discussed previously</a>, parsers are the portion
|
|
of the CommandLine library that turns string input from the user into a
|
|
particular parsed data type, validating the input in the process.</p>
|
|
|
|
<p>There are two ways to use a new parser:</p>
|
|
|
|
<ol>
|
|
|
|
<li>
|
|
|
|
<p>Specialize the <a href="#genericparser"><tt>cl::parser</tt></a> template for
|
|
your custom data type.<p>
|
|
|
|
<p>This approach has the advantage that users of your custom data type will
|
|
automatically use your custom parser whenever they define an option with a value
|
|
type of your data type. The disadvantage of this approach is that it doesn't
|
|
work if your fundamental data type is something that is already supported.</p>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<p>Write an independent class, using it explicitly from options that need
|
|
it.</p>
|
|
|
|
<p>This approach works well in situations where you would line to parse an
|
|
option using special syntax for a not-very-special data-type. The drawback of
|
|
this approach is that users of your parser have to be aware that they are using
|
|
your parser instead of the builtin ones.</p>
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
<p>To guide the discussion, we will discuss a custom parser that accepts file
|
|
sizes, specified with an optional unit after the numeric size. For example, we
|
|
would like to parse "102kb", "41M", "1G" into the appropriate integer value. In
|
|
this case, the underlying data type we want to parse into is
|
|
'<tt>unsigned</tt>'. We choose approach #2 above because we don't want to make
|
|
this the default for all <tt>unsigned</tt> options.</p>
|
|
|
|
<p>To start out, we declare our new <tt>FileSizeParser</tt> class:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<b>struct</b> FileSizeParser : <b>public</b> cl::basic_parser<<b>unsigned</b>> {
|
|
<i>// parse - Return true on error.</i>
|
|
<b>bool</b> parse(cl::Option &O, <b>const char</b> *ArgName, <b>const</b> std::string &ArgValue,
|
|
<b>unsigned</b> &Val);
|
|
};
|
|
</pre></div>
|
|
|
|
<p>Our new class inherits from the <tt>cl::basic_parser</tt> template class to
|
|
fill in the default, boiler plate code for us. We give it the data type that
|
|
we parse into, the last argument to the <tt>parse</tt> method, so that clients of
|
|
our custom parser know what object type to pass in to the parse method. (Here we
|
|
declare that we parse into '<tt>unsigned</tt>' variables.)</p>
|
|
|
|
<p>For most purposes, the only method that must be implemented in a custom
|
|
parser is the <tt>parse</tt> method. The <tt>parse</tt> method is called
|
|
whenever the option is invoked, passing in the option itself, the option name,
|
|
the string to parse, and a reference to a return value. If the string to parse
|
|
is not well-formed, the parser should output an error message and return true.
|
|
Otherwise it should return false and set '<tt>Val</tt>' to the parsed value. In
|
|
our example, we implement <tt>parse</tt> as:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<b>bool</b> FileSizeParser::parse(cl::Option &O, <b>const char</b> *ArgName,
|
|
<b>const</b> std::string &Arg, <b>unsigned</b> &Val) {
|
|
<b>const char</b> *ArgStart = Arg.c_str();
|
|
<b>char</b> *End;
|
|
|
|
<i>// Parse integer part, leaving 'End' pointing to the first non-integer char</i>
|
|
Val = (unsigned)strtol(ArgStart, &End, 0);
|
|
|
|
<b>while</b> (1) {
|
|
<b>switch</b> (*End++) {
|
|
<b>case</b> 0: <b>return</b> false; <i>// No error</i>
|
|
<b>case</b> 'i': <i>// Ignore the 'i' in KiB if people use that</i>
|
|
<b>case</b> 'b': <b>case</b> 'B': <i>// Ignore B suffix</i>
|
|
<b>break</b>;
|
|
|
|
<b>case</b> 'g': <b>case</b> 'G': Val *= 1024*1024*1024; <b>break</b>;
|
|
<b>case</b> 'm': <b>case</b> 'M': Val *= 1024*1024; <b>break</b>;
|
|
<b>case</b> 'k': <b>case</b> 'K': Val *= 1024; <b>break</b>;
|
|
|
|
default:
|
|
<i>// Print an error message if unrecognized character!</i>
|
|
<b>return</b> O.error("'" + Arg + "' value invalid for file size argument!");
|
|
}
|
|
}
|
|
}
|
|
</pre></div>
|
|
|
|
<p>This function implements a very simple parser for the kinds of strings we are
|
|
interested in. Although it has some holes (it allows "<tt>123KKK</tt>" for
|
|
example), it is good enough for this example. Note that we use the option
|
|
itself to print out the error message (the <tt>error</tt> method always returns
|
|
true) in order to get a nice error message (shown below). Now that we have our
|
|
parser class, we can use it like this:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
<b>static</b> <a href="#cl::opt">cl::opt</a><<b>unsigned</b>, <b>false</b>, FileSizeParser>
|
|
MFS(<i>"max-file-size"</i>, <a href="#cl::desc">cl::desc</a>(<i>"Maximum file size to accept"</i>),
|
|
<a href="#cl::value_desc">cl::value_desc</a>("<i>size</i>"));
|
|
</pre></div>
|
|
|
|
<p>Which adds this to the output of our program:</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
OPTIONS:
|
|
-help - display available options (--help-hidden for more)
|
|
...
|
|
<b>-max-file-size=<size> - Maximum file size to accept</b>
|
|
</pre></div>
|
|
|
|
<p>And we can test that our parse works correctly now (the test program just
|
|
prints out the max-file-size argument value):</p>
|
|
|
|
<div class="doc_code"><pre>
|
|
$ ./test
|
|
MFS: 0
|
|
$ ./test -max-file-size=123MB
|
|
MFS: 128974848
|
|
$ ./test -max-file-size=3G
|
|
MFS: 3221225472
|
|
$ ./test -max-file-size=dog
|
|
-max-file-size option: 'dog' value invalid for file size argument!
|
|
</pre></div>
|
|
|
|
<p>It looks like it works. The error message that we get is nice and helpful,
|
|
and we seem to accept reasonable file sizes. This wraps up the "custom parser"
|
|
tutorial.</p>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="explotingexternal">Exploiting external storage</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
<p>Several of the LLVM libraries define static <tt>cl::opt</tt> instances that
|
|
will automatically be included in any program that links with that library.
|
|
This is a feature. However, sometimes it is necessary to know the value of the
|
|
command line option outside of the library. In these cases the library does or
|
|
should provide an external storage location that is accessible to users of the
|
|
library. Examples of this include the <tt>llvm::DebugFlag</tt> exported by the
|
|
<tt>lib/Support/Debug.cpp</tt> file and the <tt>llvm::TimePassesIsEnabled</tt>
|
|
flag exported by the <tt>lib/VMCore/Pass.cpp</tt> file.</p>
|
|
|
|
<p>TODO: complete this section</p>
|
|
|
|
</div>
|
|
|
|
<!-- ======================================================================= -->
|
|
<div class="doc_subsection">
|
|
<a name="dynamicopts">Dynamically adding command line options</a>
|
|
</div>
|
|
|
|
<div class="doc_text">
|
|
|
|
<p>TODO: fill in this section</p>
|
|
|
|
</div>
|
|
|
|
<!-- *********************************************************************** -->
|
|
|
|
<hr>
|
|
<address>
|
|
<a href="http://jigsaw.w3.org/css-validator/check/referer"><img
|
|
src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a>
|
|
<a href="http://validator.w3.org/check/referer"><img
|
|
src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a>
|
|
|
|
<a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
|
|
<a href="http://llvm.org">LLVM Compiler Infrastructure</a><br>
|
|
Last modified: $Date$
|
|
</address>
|
|
|
|
</body>
|
|
</html>
|