- Jan 24, 2011
-
-
Chris Lattner authored
llvm-svn: 124099
-
- Jan 16, 2011
-
-
Michael J. Spencer authored
llvm-svn: 123599
-
Michael J. Spencer authored
it shouldn't, but I have no way to verify that it doesn't actually exist on the buildbot. llvm-svn: 123594
-
Michael J. Spencer authored
Revert "Archive: Replace all internal uses of PathV1 with PathV2. The external API still uses PathV1." llvm-svn: 123557
-
Chris Lattner authored
it so the bots go green llvm-svn: 123555
-
- Jan 15, 2011
-
-
Rafael Espindola authored
llvm-svn: 123529
-
- Jan 13, 2011
-
-
Rafael Espindola authored
llvm-svn: 123364
-
- Oct 19, 2010
-
-
Rafael Espindola authored
llvm-svn: 116788
-
- Aug 26, 2010
-
-
Dan Gohman authored
fix: add a flag to MapValue and friends which indicates whether any module-level mappings are being made. In the common case of inlining, no module-level mappings are needed, so MapValue doesn't need to examine non-function-local metadata, which can be very expensive in the case of a large module with really deep metadata (e.g. a large C++ program compiled with -g). This flag is a little awkward; perhaps eventually it can be moved into the ClonedCodeInfo class. llvm-svn: 112190
-
Daniel Dunbar authored
individual ...", which depends on r111922, which I am reverting. llvm-svn: 112157
-
- Aug 25, 2010
-
-
Dan Gohman authored
instructions, not when remapping modules. llvm-svn: 112091
-
- Sep 15, 2009
-
-
Dan Gohman authored
instead of cloning and RAUWing it. - Make AbstractTypeUser a friend of Value so that it can offer its subclasses a way to update a Value's type in place. This is better than a universally visible setType method on Value, and it's sufficient for the immediate need. - Eliminate the constant "convert" functions. This eliminates a lot of logic duplication, and fixes a complicated bug where a constant can't actually be cloned during the type refinement process because some of the types that its folder needs are half-destroyed, being in the middle of refinement themselves. - Move the getValType functions from being static overloaded functions in Constants.cpp to be members of class template specializations in ConstantsContext.h. This means that the code ends up getting instantiated twice, however it also makes it possible to eliminate all "convert" functions, so it's not a big net code size increase. And if desired, the duplicate instantiations could be eliminated with some reorganization. llvm-svn: 81861
-
Dan Gohman authored
llvm-svn: 81860
-
- Sep 05, 2009
-
-
Daniel Dunbar authored
llvm-svn: 81087
-
- Sep 03, 2009
-
-
Devang Patel authored
llvm-svn: 80941
-
- Aug 25, 2009
-
-
Dan Gohman authored
llvm-svn: 79992
-
- Aug 11, 2009
-
-
Devang Patel authored
llvm-svn: 78696
-
Devang Patel authored
llvm-svn: 78652
-
- Jan 02, 2009
-
-
Chris Lattner authored
and clean recursive descent parser. This change has a couple of ramifications: 1. The parser code is about 400 lines shorter (in what we maintain, not including what is autogenerated). 2. The code should be significantly faster than the old code because we don't have to work around bison's poor handling of datatypes with ctors/dtors. This also makes the code much more resistant to memory leaks. 3. We now get caret diagnostics from the .ll parser, woo. 4. The actual diagnostics emited from the parser are completely different so a bunch of testcases had to be updated. 5. I now disallow "%ty = type opaque %ty = type i32". There was no good reason to support this, it was just an accident of the old implementation. I have no reason to think that anyone is actually using this. 6. The syntax for sticking a global variable has changed to make it unambiguous. I don't think anyone is depending on this since only clang supports this and it is not solid yet, so I'm not worried about anything breaking. 7. This gets rid of the last use of bison, and along with it the .cvs files. I'll prune this from the makefiles as a subsequent commit. There are a few minor cleanups that can be done after this commit (suggestions welcome!) but this passes dejagnu testing and is ready for its time in the limelight. llvm-svn: 61558
-
- Oct 15, 2008
-
-
Anton Korobeynikov authored
llvm-svn: 57597
-
Anton Korobeynikov authored
llvm-svn: 57596
-
- Jul 14, 2008
-
-
Chris Lattner authored
the second half of link-global-to-func.ll and causes some minor changes in messages. There are two TODOs here. First, this causes a regression in 2008-07-06-AliasWeakDest.ll, which is now failing (so I xfailed it). Anton, I would really appreciate it if you could take a look at this. It should be a matter of adding proper alias support to GetLinkageResult, and was probably already a latent bug that would manifest with globals. The second todo is to reimplement LinkAlias in the same pattern as function and global linking. This should be pretty straight-forward for someone who knows aliases, but isn't a requirement for correctness. llvm-svn: 53548
-
Chris Lattner authored
(replacing a function with a global). This is needed when building llvm itself with LTO on darwin, because of the EXPLICIT_SYMBOL hack in lib/system/DynamicLibrary.cpp. Implementation of linking the other way will need to wait for a cleanup of LinkFunctionProtos. llvm-svn: 53546
-
- Jul 06, 2008
-
-
Anton Korobeynikov authored
llvm-svn: 53157
-
Anton Korobeynikov authored
llvm-svn: 53155
-
- Jun 27, 2008
-
-
Duncan Sands authored
warning when creating the archive (the warning causes the test to fail). llvm-svn: 52824
-
Chris Lattner authored
llvm-svn: 52810
-
- Jun 20, 2008
-
-
Chris Lattner authored
types differ. Patch by Nathan Keynes! llvm-svn: 52527
-
- Jun 12, 2008
-
-
Evan Cheng authored
llvm-svn: 52245
-
- Jun 10, 2008
-
-
Matthijs Kooijman authored
cases quoting of <{ didn't work out, so I changed the grep to check for }> instead. This fixes 7 testcases that were not properly running before. llvm-svn: 52182
-
- May 21, 2008
-
-
Gabor Greif authored
llvm-svn: 51357
-
- May 20, 2008
-
-
Gabor Greif authored
llvm-svn: 51349
-
Gabor Greif authored
Rename the last test with .llx extension to .ll, resolve duplicate test by renaming to isnan2. Now that no test has llx ending there is no need to search for them from dg.exp too. llvm-svn: 51328
-
- May 02, 2008
-
-
Dan Gohman authored
llvm-svn: 50560
-
- Mar 10, 2008
-
-
Anton Korobeynikov authored
llvm-svn: 48178
-
Tanya Lattner authored
llvm-svn: 48137
-
- Mar 09, 2008
-
-
Anton Korobeynikov authored
llvm-svn: 48110
-
Tanya Lattner authored
llvm-svn: 48103
-
- Mar 08, 2008
-
-
Andrew Lenharth authored
llvm-svn: 48045
-
- Mar 07, 2008
-
-
Andrew Lenharth authored
llvm-svn: 48033
-