- Jan 19, 2009
-
-
Devang Patel authored
llvm-svn: 62526
-
- Jan 15, 2009
-
-
Rafael Espindola authored
llvm-svn: 62279
-
Nuno Lopes authored
llvm-svn: 62272
-
- Jan 14, 2009
-
-
Nuno Lopes authored
llvm-svn: 62236
-
- Jan 13, 2009
-
-
Chris Lattner authored
llvm-svn: 62158
-
- Jan 12, 2009
-
-
Rafael Espindola authored
There might be more dead code, but with llvm-gcc bootstrap broken on linux x86-64 it is had to test :-( llvm-svn: 62088
-
Chris Lattner authored
not a random piece of it. No functionality change. llvm-svn: 62066
-
- Jan 11, 2009
-
-
Gabor Greif authored
opcode on each delegation. Instead the information is cached on construction and the cached flag used thereafter. Introduced two predicates: isCall and isInvoke. llvm-svn: 62055
-
Nick Lewycky authored
llvm-svn: 62039
-
- Jan 09, 2009
-
-
Misha Brukman authored
llvm-svn: 61991
-
- Jan 08, 2009
-
-
Duncan Sands authored
day when more linkage types will be handled. llvm-svn: 61944
-
Bob Wilson authored
passed in to this function changed to support multiple return values, leading to some incorrect argument numbers in the failure messages. With this change, the ArgNo values used for return values and parameters are disjoint, and the new IntrinsicParam function translates those ArgNo values to strings that can be used in the messages. This also fixes a few places where PerformTypeCheck did not return false following calls to CheckFailed. llvm-svn: 61903
-
Oscar Fuentes authored
llvm-svn: 61900
-
Bob Wilson authored
odd bit-width vector elements. Add a check in the verifier for this also. llvm-svn: 61899
-
Chris Lattner authored
llvm-svn: 61898
-
- Jan 07, 2009
-
-
Bob Wilson authored
to handle LLVMMatchType intrinsic parameters, and by adding new subclasses of LLVMMatchType to match vector types with integral elements that are either twice as wide or half as wide as the elements of the matched type. llvm-svn: 61834
-
- Jan 05, 2009
-
-
Dan Gohman authored
llvm-svn: 61715
-
Gabor Greif authored
* some picky <g> compilers get insulted by const-incorrectness * respect 80-char limit llvm-svn: 61701
-
Gabor Greif authored
llvm-svn: 61695
-
Gabor Greif authored
This means that we have to include an additional header. This patch should be functionally equivalent. I cannot outrule any performance degradation, though I do not expect any. llvm-svn: 61694
-
Chris Lattner authored
llvm-svn: 61677
-
- Jan 04, 2009
-
-
Nick Lewycky authored
llvm-svn: 61645
-
- 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
-
- Dec 31, 2008
-
-
Duncan Sands authored
llvm-svn: 61532
-
- Dec 29, 2008
-
-
Duncan Sands authored
non-recursive. llvm-svn: 61479
-
Chris Lattner authored
notably, they should support vectors and aggregates. llvm-svn: 61462
-
Chris Lattner authored
verifier, asm parser, etc can share it. llvm-svn: 61461
-
- Dec 19, 2008
-
-
John Criswell authored
version number assertions. llvm-svn: 61257
-
Gordon Henriksen authored
This operation can be used to build dyn_cast, isa, and cast. llvm-svn: 61252
-
Nick Lewycky authored
llvm-svn: 61240
-
- Dec 18, 2008
-
-
Mon P Wang authored
llvm-svn: 61209
-
- Dec 17, 2008
-
-
Chris Lattner authored
- ability to insert previously created instructions using a builder - creation of aliases - creation of inline asm constants Patch by Zoltan Varga! llvm-svn: 61153
-
- Dec 16, 2008
-
-
Bill Wendling authored
builds. llvm-svn: 61094
-
- Dec 15, 2008
-
-
Nick Lewycky authored
alignment attribute such that 0 means unaligned. This will probably require a rebuild of llvm-gcc because of the change to Attributes.h. If you see many test failures on "make check", please rebuild your llvm-gcc. llvm-svn: 61030
-
Nick Lewycky authored
callee will not introduce any new aliases of that pointer. The attributes had all bits allocated already, so I decided to collapse alignment. Alignment was previously stored as a 16-bit integer from bits 16 to 32 of the attribute, but it was required to be a power of 2. Now it's stored in log2 encoded form in five bits from 16 to 21. That gives us 11 more bits of space. You may have already noticed that you only need four bits to encode a 16-bit power of two, so why five bits? Because the AsmParser accepted 32-bit alignments, even though we couldn't store them (they were silently discarded). Now we can store them in memory, but not in the bitcode. The bitcode format was already storing these as 64-bit VBR integers. So, the bitcode format stays the same, keeping the alignment values stored as 16 bit raw values. There's some hideous code in the reader and writer that deals with this, waiting to be ripped out the moment we run out of bits again and have to replace the parameter attributes table encoding. llvm-svn: 61019
-
- Dec 13, 2008
-
-
Chris Lattner authored
NDEBUG is unset and -debug is passed. llvm-svn: 60986
-
- Dec 11, 2008
-
-
Torok Edwin authored
llvm-svn: 60875
-
Torok Edwin authored
llvm-svn: 60872
-
- Dec 08, 2008
-
-
Dan Gohman authored
as suggested in PR3182. llvm-svn: 60691
-
- Dec 03, 2008
-
-
Dan Gohman authored
on PseudoSourceValue values. This also fixes a FIXME in lib/VMCode/AsmWriter.cpp. llvm-svn: 60507
-