- e205fef New test. by Devang Patel · 17 years ago
- 40743b8 Don't dump the function! by Chris Lattner · 17 years ago
- d087480 getUnderlyingObject can return null, handle this. by Chris Lattner · 17 years ago
- cadf873 Added additional overloaded operators for APSInt to match the operators of by Ted Kremenek · 17 years ago
- fd68750 Teach basicaa that 'byval' arguments define a new memory location that by Chris Lattner · 17 years ago
- de6fa5f Add hasByValAttr() and hasNoAliasAttr() methods to the Argument class. by Chris Lattner · 17 years ago
- 23e202d clarify a comment, thanks Duncan. by Chris Lattner · 17 years ago
- d43d00c Significantly simplify and improve handling of FP function results on x86-32. by Chris Lattner · 17 years ago
- 125991a Fix this buggy transformation. Two observations: by Chris Lattner · 17 years ago
- 20e3d86 The dag combiner is missing revisiting nodes that it really should, and thus leaving by Chris Lattner · 17 years ago
- 0aa5e6f fold fp_round(fp_round(x)) -> fp_round(x). by Chris Lattner · 17 years ago
- 7323999 take these with a pr # by Chris Lattner · 17 years ago
- bcb265e Fixing the stack walker. by Gordon Henriksen · 17 years ago
- 58ea52a Fix potential buffer overflow by Anton Korobeynikov · 17 years ago
- b487e72 Move some functionality for adding flags to MachineInstr's into methods on MachineInstr rather than LiveVariables. by Owen Anderson · 17 years ago
- 3ae0543 Forgot these. by Evan Cheng · 17 years ago
- 2928650 Let each target decide byval alignment. For X86, it's 4-byte unless the aggregare contains SSE vector(s). For x86-64, it's max of 8 or alignment of the type. by Evan Cheng · 17 years ago
- f02e26a Added special escape sequences "\{", "\}", and "\|" when processing by Ted Kremenek · 17 years ago
- f9c98e6 The last pieces needed for loading arbitrary by Duncan Sands · 17 years ago
- 1eed950 Added "getRoot()" to ImmutableSet. by Ted Kremenek · 17 years ago
- 25edeb3 Honor explicit section information on Darwin. by Dale Johannesen · 17 years ago
- 97ca75e Fix an iterator invalidation issue. by Owen Anderson · 17 years ago
- 2cbdd27 SSE varargs arguments are passed in memory. by Evan Cheng · 17 years ago
- 8e1f7ac Simplify SelectionDAG::getNode so that a big switch stmt is not #ifndef by Chris Lattner · 17 years ago
- 70c8650 Silence a warning. Should we turn this into configure-time check? by Anton Korobeynikov · 17 years ago
- 7674b9d Add interator interface to DAGInit also by Anton Korobeynikov · 17 years ago
- 7e85720 The final piece needed for storing arbitrary precision by Duncan Sands · 17 years ago
- 6410510 Enable the fix I just checked in, silly me. by Nick Lewycky · 17 years ago
- 3b8ea6e update this test to pass with duncan's change. by Chris Lattner · 17 years ago
- 05a3e8a One too many )'s breaks 'make clean' with certain versions of make. by Chris Lattner · 17 years ago
- e6b0c00 Multiply can be evaluated in a different type, so long as the target type has by Nick Lewycky · 17 years ago
- 18bef16 Trivial patch to fix two warnings, please pull into llvm 2.2 by Chris Lattner · 17 years ago
- 3387060 Fixed buggy caching of the hash value of an ImutAVLTree node. by Ted Kremenek · 17 years ago
- 8893b0d Moved method call within a conditional branch because its effects will by Ted Kremenek · 17 years ago
- c4125a3 Adjusted ImutAVLTree::ComputeHash to compute a hash value that is based on a by Ted Kremenek · 17 years ago
- c899b33 Added "clear" method to FoldingSetNodeID to allow a FoldingSetNodeID object by Ted Kremenek · 17 years ago
- 6518f5f Replaced (FoldingSet) profiling of ImutAVLTree with a hashing based scheme. The by Ted Kremenek · 17 years ago
- 82137bd Provide iterator access to ListInit contents by Anton Korobeynikov · 17 years ago
- c2f191c Fix the failures in the PPC JIT by marking relocation entries for by Chris Lattner · 17 years ago
- 5768c96 New test. by Devang Patel · 17 years ago
- a6b1926 Clarify a deviation from the original algorithm. by Owen Anderson · 17 years ago
- 3b48952 Improve a few comments. by Owen Anderson · 17 years ago
- 03531a4 It turns out that in C++ it is legal to declare functions by Duncan Sands · 17 years ago
- e5d53f5 New test. by Devang Patel · 17 years ago
- 333e8be Check that sret is only used on pointers to types with a size, like byval. by Duncan Sands · 17 years ago
- 53d4afc Be consistent with other attribute methods, and by Duncan Sands · 17 years ago
- da9bb35 Move DAG-changing code out of #ifndef NDEBUG. by Dale Johannesen · 17 years ago
- e003813 Make sure the caller doesn't use freed memory. Fixes PR1935. by Duncan Sands · 17 years ago
- ea74c7e Honour ByVal parameter attribute for name decoration by Anton Korobeynikov · 17 years ago
- 99e635c Remove Darwin'ism by Anton Korobeynikov · 17 years ago
- 49964d6 Enable PIC codegen on x86-64/linux by Anton Korobeynikov · 17 years ago
- 02ec6e5 Initializing an unsigned with ~0UL causes the compiler by Duncan Sands · 17 years ago
- 713ed3f Do not generate a FP_ROUND of f64 to f64. by Dale Johannesen · 17 years ago
- 1877849 Changed argument name for 'Profile' method to potentially fix a name conflict by Ted Kremenek · 17 years ago
- 4bdad51 Need to handle any 'nest' parameter before integer by Duncan Sands · 17 years ago
- 3cf8bec Modified ImmutableSet/ImmutableMap to use FoldingSet profiling using by Ted Kremenek · 17 years ago
- 4048a08 Added FoldingSet style 'profiling' support for APSInt. by Ted Kremenek · 17 years ago
- e420deb Added FoldingSet style 'profiling' support for APInt. by Ted Kremenek · 17 years ago
- 0a3feca Made 'FoldingSetNodeID' a proper class instead of a nested class in by Ted Kremenek · 17 years ago
- a753f70 Made 'profiling' of objects in a FoldingSet trait-based using FoldingSetTrait by Ted Kremenek · 17 years ago
- b4eae99 Fix makefiles to enable Apply style debug build. by Evan Cheng · 17 years ago
- 5c5eb80 Implement flt_rounds for PowerPC. by Dale Johannesen · 17 years ago
- 994d6cf remove extraneous &&'s from tests, as Scott is apparently not going to. by Chris Lattner · 17 years ago
- 9929207 Test is correct again for the moment. by Dale Johannesen · 17 years ago
- c9133f9 remove extraneous &'s. by Chris Lattner · 17 years ago
- 4569553 don't form an std::string with a null pointer, it aborts. by Chris Lattner · 17 years ago
- ef97c67 get symbolic information for ppc ldbl nodes. by Chris Lattner · 17 years ago
- 561e8c8 remove magic numbers. by Chris Lattner · 17 years ago
- a7a02fb Fix a latent bug exposed by my truncstore patch. We compiled stfiwx-2.ll to: by Chris Lattner · 17 years ago
- 3d66185 make a method public by Chris Lattner · 17 years ago
- e827753 Reverted implementation of ImmutableMap::find() to return a TreeTy* instead of by Ted Kremenek · 17 years ago
- 25a0195 Revert the part of 45849 that treated weak globals by Dale Johannesen · 17 years ago
- d15d086 Revert the part of 45848 that treated weak globals by Dale Johannesen · 17 years ago
- 58c5818 Forward progress: crtbegin.c now compiles successfully! by Scott Michel · 17 years ago
- ddf8956 This commit changes: by Chris Lattner · 17 years ago
- 41c5a39 new testcase. by Chris Lattner · 17 years ago
- e509e7a Implemented "FIXME" in ImutAVLTree: isEqual() now also compares the *data* value by Ted Kremenek · 17 years ago
- 39354cb add some helper methods. by Chris Lattner · 17 years ago
- e6d5c77 Test case for varargs parameter attribute issue I just fixed. by Evan Cheng · 17 years ago
- 4626b25 code cleanups, no functionality change. by Chris Lattner · 17 years ago
- 0bd4893 * Introduce a new SelectionDAG::getIntPtrConstant method by Chris Lattner · 17 years ago
- f51a9d4 add testcase that has been sitting in my tree for awhile. by Chris Lattner · 17 years ago
- 1d4a8b7 Update license for current year. by Tanya Lattner · 17 years ago
- cf06767 Update version to 2.3svn Regenerate configure with 2.60. by Tanya Lattner · 17 years ago
- b2fc2a3 DAE bug fix. Don't lose parameter attributes on vararg arguments. by Evan Cheng · 17 years ago
- 3de01e1 Enable CBE by Devang Patel · 17 years ago
- 839b759 When a live virtual register is being clobbered by an implicit def, it is spilled by Evan Cheng · 17 years ago
- ab04e13 Fix arg promotion to propagate the correct attrs on the calls to by Chris Lattner · 17 years ago
- 644340a Replace std::vector<bool> with BitVector. by Evan Cheng · 17 years ago
- 02c4285 Fixes a nasty dag combiner bug that causes a bunch of tests to fail at -O0. by Evan Cheng · 17 years ago
- 339e14f Trampoline support for x86-64. This looks like by Duncan Sands · 17 years ago
- 1e9aa71 Handle attribute(used) global variables that are i8. by Chris Lattner · 17 years ago
- 48ae02f Do not mark EH tables no-dead-strip unless the associated function is so marked. by Dale Johannesen · 17 years ago
- b8b9221 add testcase for regression by Chris Lattner · 17 years ago
- 7e2e033 Fix a ppc long double regression I introduced yesterday due to a by Chris Lattner · 17 years ago
- a66bb39 merge a few pieces of code that do the store/load to stack by Chris Lattner · 17 years ago
- 1401d15 rename ExpandBIT_CONVERT to EmitStackConvert, generalizing by Chris Lattner · 17 years ago
- 23594d4 simplify a bunch of code by using SelectionDAG::CreateStackTemporary by Chris Lattner · 17 years ago
- f2670a8 Change legalizeop of FP_ROUND and FP_EXTEND to not fall through by Chris Lattner · 17 years ago
- f763288 make sure to use a cpu that has sse. by Chris Lattner · 17 years ago