- a472c4a Go back to passing the analyses around as parameters. by Owen Anderson · 17 years ago
- c83ad0d Pointer comparisons should be handled by icmp, not vicmp :) by Nate Begeman · 17 years ago
- f86f211 Forgot this. by Evan Cheng · 17 years ago
- 18e4e85 Hard code CmpInst back to i1 for now while I go track down what in the bitcode reader/writer is assuming i1 by Nate Begeman · 17 years ago
- ad4196b Refactor isConsecutiveLoad from X86 to TargetLowering so DAG combiner can make use of it. by Evan Cheng · 17 years ago
- c1b7f52 Revert the previous commit. Go ahead and hoist rematerializable instructions. by Bill Wendling · 17 years ago
- b43e9c1 Add support for vicmp/vfcmp codegen, more legalize support coming. by Nate Begeman · 17 years ago
- e4fc1cc One real change - don't hoist something that's trivially rematerializable. It's by Bill Wendling · 17 years ago
- 6fd90ce Fix build breakage by Nate Begeman · 17 years ago
- ac80ade Add two new instructions to the llvm IR, vicmp and vfcmp. see updated LangRef by Nate Begeman · 17 years ago
- 7c2e4f2 Make firstEightPowers const. by Dan Gohman · 17 years ago
- 9b38d7d Update comments. by Dan Gohman · 17 years ago
- 5c98d82 Filter option names to escape symbols not allowed as C++ identifiers. by Mikhail Glushenkov · 17 years ago
- ecb977e Make it possible to choose between different compilation graph definitions at compile-time. by Mikhail Glushenkov · 17 years ago
- a673037 Fix some error messages; Make LLVMC pass through the exit code of a failed tool. by Mikhail Glushenkov · 17 years ago
- 2ce3898 Fix a compile error on compilers that still want a return value by Dan Gohman · 17 years ago
- 9ab9ee8 Fix a missing break in the ISD::FLT_ROUNDS_ handling. Patch by giuma! by Dan Gohman · 17 years ago
- 9658a2c Testcase for PR2264. by Duncan Sands · 17 years ago
- 7b45e33 Move the various analyses used by GVN into static variables so we don't have to keep passing them around or refetching them. by Owen Anderson · 17 years ago
- 4651f3d prune #includes. by Chris Lattner · 17 years ago
- ab7d9cc Add a new SparsePropagation analysis utility, which allows you to do by Chris Lattner · 17 years ago
- fff116f Make constructors target-specific. This fixes problems where the path would by Nick Lewycky · 17 years ago
- 64d6910 Add note by Anton Korobeynikov · 17 years ago
- 5c8e8d7 Fix various DOUTs to not call the extremely expensive Value::getName() by Chris Lattner · 17 years ago
- 3a73c9e Simplify code by using SwitchInst::findCaseValue instead of reimplementing it. by Chris Lattner · 17 years ago
- c2e7353 Remove warnings when using -Wshorten-64-to-32. by Bill Wendling · 17 years ago
- eca2f99 Testcase for PR2303. by Duncan Sands · 17 years ago
- caa8ae8 Fix linking of internal aliases by Anton Korobeynikov · 17 years ago
- 1b2f729 Prevent -W64-to-32-shortened warnings. by Bill Wendling · 17 years ago
- d2a5a2a Prevent warnings from the -Wshorten-64-to-32 flag. by Bill Wendling · 17 years ago
- 469a582 remove commented-out code, it is subsumed by DECLARE_TRANSPARENT_OPERAND_ACCESSORS by Gabor Greif · 17 years ago
- efe6536 merge of use-diet branch to trunk by Gabor Greif · 17 years ago
- 4982bab Re-enable loop deletion by default. by Owen Anderson · 17 years ago
- 50d9e72 When transforming a vector_shuffle to a load, the base address must not be an undef. by Evan Cheng · 17 years ago
- 49ff661 Set to 2.4 and regenerate configure. by Tanya Lattner · 17 years ago
- c81d50e Add nounwind. by Evan Cheng · 17 years ago
- 9018e83 For now, abort when an ISD::VAARG is encountered on x86-64, rather by Dan Gohman · 17 years ago
- b70ea0b Some clean up. by Evan Cheng · 17 years ago
- 25210da If movl top bits are undef, let it be selected to movlps, etc. by Evan Cheng · 17 years ago
- b3e0a6d If all sources of a PHI node are defined by an implicit_def, just emit an implicit_def instead of a copy. by Evan Cheng · 17 years ago
- 637980e Cosmetic changes: by Bill Wendling · 17 years ago
- 23573e5 Add a pattern to do move the low element of a v4f32 and zero extend the rest. by Evan Cheng · 17 years ago
- 6b8583c Remove an evil vector bool. Cosmetic refactoring, no functional change. by Dale Johannesen · 17 years ago
- d880b97 Handle a few more cases of folding load i64 into xmm and zero top bits. by Evan Cheng · 17 years ago
- c6c6a3e Make OpActionsCapacity multiple of 4. by Evan Cheng · 17 years ago
- 6ae83fa Rewrite tail merging algorithm to handle the by Dale Johannesen · 17 years ago
- f03893a put LibCallAliasAnalysis into anonymous namespace to avoid clashes on ::X by Torok Edwin · 17 years ago
- 6c17c6b Simplify test. by Evan Cheng · 17 years ago
- 910fd57 Rename Example.td to Graph.td. by Mikhail Glushenkov · 17 years ago
- 6b89d92 use doxygen comments for makeBuffer() by Nick Kledzik · 17 years ago
- bfc538c don't sink invokes, even if they are readonly. This fixes a crash on kimwitu++. by Chris Lattner · 17 years ago
- 33af59d Fix a type and formatting. by Duncan Sands · 17 years ago
- 3aa8a6b ignore Output dirs by Gabor Greif · 17 years ago
- f1d1183 ignore AutoGenerated.inc, it is created by TableGen by Gabor Greif · 17 years ago
- 98687a3 ignore Output dir by Gabor Greif · 17 years ago
- 8e7254c Reapply 50867: A small refactoring (extract method) + some comment fixes. by Mikhail Glushenkov · 17 years ago
- 4ca7913 add support for pattern matching 'neg' by Chris Lattner · 17 years ago
- 7d2cbd2 Implement PR2298. This transforms: ~x < ~y --> y < x -x == -y --> x == y by Chris Lattner · 17 years ago
- 94019f8 restore doxygen comment. by Chris Lattner · 17 years ago
- 90dcff7 <rdar://problem/5917641> use getMemBufferCopy if supplied buffer is not already zero terminated by Nick Kledzik · 17 years ago
- 018f771 Check for validity of aliasee pointer before dereference. by Anton Korobeynikov · 17 years ago
- fd17f42 Use movq to move low half of XMM register and zero-extend the rest. by Evan Cheng · 17 years ago
- 748118d conservatively say that volatile stores read memory. by Chris Lattner · 17 years ago
- 0561f78 Revertin 50867 since it was breaking the build. by Tanya Lattner · 17 years ago
- 38818b0 store can't read from memory. by Chris Lattner · 17 years ago
- 194a78f Add -E and -S options by Mikhail Glushenkov · 17 years ago
- 21607fa A small refactoring (extract method) + some comment fixes. by Mikhail Glushenkov · 17 years ago
- 76e2e4a Remove dead return. Thanks to Bill for the review! by Chris Lattner · 17 years ago
- a8a118b Improve pass documentation and comments. by Gordon Henriksen · 17 years ago
- 2539e33 More than just loads can read from memory: readonly calls like strlen by Chris Lattner · 17 years ago
- 0ef546e Make instcombine's DSE respect loads as well as stores. It is not safe to by Chris Lattner · 17 years ago
- d96288a add a new Instruction::mayReadFromMemory predicate, make by Chris Lattner · 17 years ago
- d7266d4 Check linkage. by Devang Patel · 17 years ago
- 43b30a8 Get exception handling working again on 64 bit by Duncan Sands · 17 years ago
- 8c073c0 new testcase. by Chris Lattner · 17 years ago
- 268e7d7 Add support for constant folding the 'offsetof' pattern even if the by Chris Lattner · 17 years ago
- 7e2ff77 Handle vector move / load which zero the destination register top bits (i.e. movd, movq, movss (addr), movsd (addr)) with X86 specific dag combine. by Evan Cheng · 17 years ago
- 687bcb2 Add nounwind. by Evan Cheng · 17 years ago
- 0b12ecf Turn StripPointerCast() into a method by Anton Korobeynikov · 17 years ago
- 4561ab5 Use Doxygen-style comments. by Mikhail Glushenkov · 17 years ago
- 1fd2e6d Make the interface of CStrInCStrNoCase be the same as strcasestr. by Ted Kremenek · 17 years ago
- 029840c Add a new LibCallAliasAnalysis pass, which is parameterized by Chris Lattner · 17 years ago
- fdedd53 Fix some serious logical errors in CStrInCStrNoCase pointed out by Bill. by Ted Kremenek · 17 years ago
- 671fa97 Output correct exception handling and frame info by Duncan Sands · 17 years ago
- fbd1589 Guard for empty strings in CStrInCStrNoCase. by Ted Kremenek · 17 years ago
- 6925f50 Added CStrInCStrNoCase, a portable implementation of strcasestr. by Ted Kremenek · 17 years ago
- 14852f2 Add a new interface for describing the behavior of library calls. This by Chris Lattner · 17 years ago
- 094aa6c Typo. by Nick Lewycky · 17 years ago
- 7ebc06b Yet another nasty spiller bug. %ecx = op store %cl<kill>, (addr) (addr) = op %al by Evan Cheng · 17 years ago
- 42ac929 Fix a bug in the ComputeMaskedBits logic for multiply. by Dan Gohman · 17 years ago
- 69cedcb Make the use of the "noinline" attribute conditional on using GCC. by Bill Wendling · 17 years ago
- 77a895e Disable loop deletion until the release branch. by Owen Anderson · 17 years ago
- 12f33ba Removing. by Bill Wendling · 17 years ago
- ef02b81 Workaround for a compiler bug (see <rdar://problem/5852746>). Once that bug is by Bill Wendling · 17 years ago
- bec41b8 Update a couple VC++ project files. by Steve Naroff · 17 years ago
- 70e616f Use target triple in tests, not 'realign-stack=0' option. Per request. by Anton Korobeynikov · 17 years ago
- 149a315 If weak GlobalVariable was bitcast'ed to different type during linking by Anton Korobeynikov · 17 years ago
- b04addd Make StripPointerCast a common function (should we mak it method of Value instead?) by Anton Korobeynikov · 17 years ago
- f092b64 Testcase for r50770. by Owen Anderson · 17 years ago
- 8b23bb7 We need to update PHIs containing the exiting block, not the exit block. We really should come up with better names for these. by Owen Anderson · 17 years ago