- Jun 21, 2011
-
-
Peter Collingbourne authored
This is to ensure that session files are written to the correct directory if the -r option is given. llvm-svn: 133483
-
Nick Kledzik authored
llvm-svn: 133481
-
-
Jim Ingham authored
llvm-svn: 133479
-
Dan Gohman authored
functions do not appear in the module. llvm-svn: 133478
-
Johnny Chen authored
llvm-svn: 133476
-
Johnny Chen authored
after initial construction. There are two exceptions to the above general rules, though; the API objects are SBCommadnReturnObject and SBStream. llvm-svn: 133475
-
Bill Wendling authored
llvm-svn: 133473
-
- Jun 20, 2011
-
-
Jordy Rose authored
llvm-svn: 133472
-
Jakob Stoklund Olesen authored
llvm-svn: 133470
-
Fariborz Jahanian authored
message sent to an objc method (or property access) // rdar://9474349 llvm-svn: 133469
-
Johnny Chen authored
../make/Makefile.rules:217: *** missing `endif'. Stop. llvm-svn: 133466
-
Argyrios Kyrtzidis authored
[arcmt] Find out whether there is an ARC runtime directly from the triple, avoid hacky delegation to the driver for that. llvm-svn: 133464
-
Peter Collingbourne authored
llvm-svn: 133463
-
Peter Collingbourne authored
llvm-svn: 133462
-
Peter Collingbourne authored
llvm-svn: 133461
-
Peter Collingbourne authored
This is required to run the test suite outside of the source tree or on a case sensitive file system. llvm-svn: 133460
-
Peter Collingbourne authored
This is required to run the test suite without installing. llvm-svn: 133459
-
Peter Collingbourne authored
rather than the current directory. This is required to run the test suite outside of the source tree. llvm-svn: 133458
-
Peter Collingbourne authored
llvm-svn: 133457
-
Peter Collingbourne authored
llvm-svn: 133456
-
Johnny Chen authored
Revert r133358 which forgoes printing of breakpoint command when doing a breakpoint list where the description level is not eDescriptionLevelBrief. It broke test/TestAliases.py. Besides, to have a brief breakpoint list, you can do "breakpoint list -b". llvm-svn: 133455
-
Justin Holewinski authored
llvm-svn: 133454
-
-
Nick Lewycky authored
movd when assembling. llvm-svn: 133452
-
Fariborz Jahanian authored
(or follow up) extern declaration with weak_import as an actual definition. make clang follows this behavior. // rdar://9538608 llvm-gcc treats an extern declaration with weak_import llvm-svn: 133450
-
Jay Foad authored
llvm-svn: 133449
-
Jim Ingham authored
Use the dyld_mode, image_infos & image_infos_count passed into the shared library notification function to update libraries rather than reading the whole all_imaage_infos structure every time we get notified. llvm-svn: 133448
-
Justin Holewinski authored
llvm-svn: 133447
-
Rafael Espindola authored
llvm-svn: 133446
-
Justin Holewinski authored
The current implementation generates stack loads/stores, which are really just mov instructions from/to "special" registers. This may not be the most efficient implementation, compared to an approach where the stack registers are directly folded into instructions, but this is easier to implement and I have yet to see a case where ptxas is unable to see through this kind of register usage and know what is really going on. llvm-svn: 133443
-
Roman Divacky authored
with 32bit values. llvm-svn: 133439
-
Douglas Gregor authored
llvm-svn: 133438
-
Douglas Gregor authored
llvm-svn: 133437
-
Jay Foad authored
point during the development of the phi operand changes. llvm-svn: 133436
-
Jay Foad authored
Change PHINodes to store simple pointers to their incoming basic blocks, instead of full-blown Uses. Note that this loses an optimization in SplitCriticalEdge(), because we can no longer walk the use list of a BasicBlock to find phi nodes. See the comment I removed starting "However, the foreach loop is slow for blocks with lots of predecessors". Extend replaceAllUsesWith() on a BasicBlock to also update any phi nodes in the block's successors. This mimics what would have happened when PHINodes were proper Users of their incoming blocks. (Note that this only works if OldBB->replaceAllUsesWith(NewBB) is called when OldBB still has a terminator instruction, so it still has some successors.) llvm-svn: 133435
-
Jay Foad authored
Change various bits of code to make better use of the existing PHINode API, to insulate them from forthcoming changes in how PHINodes store their operands. llvm-svn: 133434
-
Jay Foad authored
I don't think the AugmentedUse struct buys us much, either in correctness or in ease of use. Ditch it, and simplify Use::getUser() and User::allocHungoffUses(). llvm-svn: 133433
-
Rafael Espindola authored
* Don't introduce a duplicated bb in the CFG * When making a branch unconditional, clear the PredCond array so that it is really unconditional. llvm-svn: 133432
-
Duncan Sands authored
dragonegg buildbots back to life. Original commit message: Teach early dup how to duplicate basic blocks with one successor and only phi instructions into more complex blocks. llvm-svn: 133430
-