- 5b08f77 fix indentation by Chris Lattner · 15 years ago
- 92d3ada fix rdar://7653908, a crash on a case where we would fold a load by Chris Lattner · 15 years ago
- 55f9adf Adjust register numbers in tests to compensate for the new lack of R2. by Dale Johannesen · 15 years ago
- 5583b83 filecheckize by Chris Lattner · 15 years ago
- 0eb0c74 Handle tGPR register class in a few more places. This fixes some llvm-gcc by Bob Wilson · 15 years ago
- 0296f3e Add SMC (Secure Monitor Call) system instruction for disassembly only. by Johnny Chen · 15 years ago
- 5994fd0 Really reserve R2 on PPC Darwin. PR 6314. by Dale Johannesen · 15 years ago
- 3d821aa Use line and column number to distinguish two lexical blocks at the same level. by Devang Patel · 15 years ago
- 80dc116 80 column cleanup by Jim Grosbach · 15 years ago
- 08d3561 New testcase. by Devang Patel · 15 years ago
- ae3ecf9 Look for SSE and instructions of this form: (and x, (build_vector c1,c2,c3,c4)). by Evan Cheng · 15 years ago
- 6417171 Remove trailing whitespace by Jim Grosbach · 15 years ago
- ae23daf Rename SuccessorNumber to GetSuccessorNumber. by Bob Wilson · 15 years ago
- 8939b0d by David Greene · 15 years ago
- 713bc58 Testcase for critical edge splitting with load PRE. by Bob Wilson · 15 years ago
- 39be8fc Update Thumb2 to not use CarryDefIsUnused or CarryDefIsUsed predicates, but by Jim Grosbach · 15 years ago
- cd862b1 Remove redundant setting of Defs. CPSR is already marked by the block level set of Defs. by Jim Grosbach · 15 years ago
- 3a02cbc Refactor rewriting for PHI nodes into a separate function. by Dan Gohman · 15 years ago
- 0a145f3 First step in eliminating the CarryDefIsUnused and CarryDefIsUsed predicates. by Jim Grosbach · 15 years ago
- 64dfb78 Added for disassembly the following instructions: by Johnny Chen · 15 years ago
- 484d4a3 Split critical edges as needed for load PRE. by Bob Wilson · 15 years ago
- adb6f22 Refactor to share code to find the position of a basic block successor in the by Bob Wilson · 15 years ago
- 7fca229 Fix whitespace. by Dan Gohman · 15 years ago
- f1ac0fd Function attributes have index ~0, not 0 by Kenneth Uildriks · 15 years ago
- 6bc1b51 simplify this code. In the new world order there is no by Chris Lattner · 15 years ago
- 21390d7 convert the new matcher to check intermediate nodes for a single by Chris Lattner · 15 years ago
- 29c6270 change dag isel emitter to only call 'IsProfitableToFold' on nodes by Chris Lattner · 15 years ago
- 1665b0a Fix pr6111: Avoid using the LR register for the target address of an indirect by Bob Wilson · 15 years ago
- 47c5188 Introduce isOpaqueTy and use it rather than isa<OpaqueType>. Also, move some by Duncan Sands · 15 years ago
- 1df9859 There are two ways of checking for a given type, for example isa<PointerType>(T) by Duncan Sands · 15 years ago
- 30fb00a Minor warning fixes (semicolons, newline at EOF). by Benjamin Kramer · 15 years ago
- ccba15f mark all the generated node predicates 'const'. by Chris Lattner · 15 years ago
- 050a03d generate code for node and pattern predicates. Note that this won't by Chris Lattner · 15 years ago
- e02ea54 refactor some code into a local class. by Chris Lattner · 15 years ago
- e2de49d remove now dead code and fixme. by Chris Lattner · 15 years ago
- 6e6975d remove dead code. This is never generated for any targets in mainline. by Chris Lattner · 15 years ago
- e39650a add support for the new isel matcher to generate by Chris Lattner · 15 years ago
- a08b587 make pcrel immediate values relative to the start of the field, by Chris Lattner · 15 years ago
- a1461d3 Fix a typo in an LLVMOpcode enum. LLVMTrunk -> LLVMTrunc. by Erick Tryzelaar · 15 years ago
- 1430425 Fix some ocaml documentation by Erick Tryzelaar · 15 years ago
- 7643ca5 The code section for an ISR has a specific address. by Sanjiv Gupta · 15 years ago
- 6e303cb Handle DBG_VALUE mixed with labels when doing PHI by Dale Johannesen · 15 years ago
- a3b1119 Drop support for the InReg attribute on the ppc backend. This was used by by Rafael Espindola · 15 years ago
- c2385a0 Split the main for-each-use loop again, this time for GenerateTruncates, by Dan Gohman · 15 years ago
- f463d95 Reapply 96294; now that I've gotten around to looking by Dale Johannesen · 15 years ago
- 89ee706 Apply patch from http://llvm.org/bugs/attachment.cgi?id=4136 now that PR5004 is by Bill Wendling · 15 years ago
- 2e2b438 Something broke. Hard to believe it was this patch by Dale Johannesen · 15 years ago
- 22e6219 When reusing an existing PHI node in a loop, be even more by Dan Gohman · 15 years ago
- 7dc9747 Put repeated empty pattern into the AQI instruction class. by Bob Wilson · 15 years ago
- f76de00 Fix a memory leak. Patch by Nicolas Geoffray. by Evan Cheng · 15 years ago
- a95f9ed More handling of DBG_VALUE. by Dale Johannesen · 15 years ago
- 04c60d9 Add missed entry to cmake build list file by Anton Korobeynikov · 15 years ago
- 0b21730 Use ttype encoding consistently by Anton Korobeynikov · 15 years ago
- 46885de Fix a silly darwin-only typo introduced during merge. by Anton Korobeynikov · 15 years ago
- 362dd0b Move TLOF implementations to libCodegen to resolve layering violation. by Anton Korobeynikov · 15 years ago
- ac8a3d0 It turns out that we emitted completely wrong common EH frame since the early beginning! The "z" CIE augmentation mark indicates that there is an extra word containing the size of augmentation section. However, even for frames w/o any augmentation data we emitted size uleb! (this is the case of "unwinding through C code"). Thus frame moves information was emitterd completely wrong. by Anton Korobeynikov · 15 years ago
- 990a9fd Add suffix for stubs, so we won't have name clashes with private symbols. by Anton Korobeynikov · 15 years ago
- 9184b25 Preliminary patch to improve dwarf EH generation - Hooks to return Personality / FDE / LSDA / TType encoding depending on target / options (e.g. code model / relocation model) - MCIzation of Dwarf EH printer to use encoding information - Stub generation for ELF target (needed for indirect references) - Some other small changes here and there by Anton Korobeynikov · 15 years ago
- 6a7cb63 Teach the verifier to check the condition on a branch and ensure that it has by Nick Lewycky · 15 years ago
- 8eea48a Fix PR6300. by Jakob Stoklund Olesen · 15 years ago
- f1b0a34 Last week we were generating code with duplicate induction variables in this by Bob Wilson · 15 years ago
- 6e5a2bd Fix crash in VerifyType when checking Contexts. Because there may not be a by Nick Lewycky · 15 years ago
- c638088 Don't try to materialize a function that isn't materializable anyways. This by Nick Lewycky · 15 years ago
- 936c43b A function with no Module owner isn't materializable. This fixes F->dump() for by Nick Lewycky · 15 years ago
- ebd024f remove empty file. by Chris Lattner · 15 years ago
- e44fc85 Simplify. by Daniel Dunbar · 15 years ago
- b218b27 Remove c++ style comments from c header. by Bill Wendling · 15 years ago
- cd10d14 revert r96241. It breaks two regression tests, isn't documented, by Chris Lattner · 15 years ago
- cb0b7be Renumber Instruction enums in llvm-c. by Bill Wendling · 15 years ago
- 37914c8 fix PR6305 by handling BlockAddress in a helper function by Chris Lattner · 15 years ago
- 014bf21 Split SelectionDAGISel::IsLegalAndProfitableToFold to by Evan Cheng · 15 years ago
- a744534 comment fix. by Chris Lattner · 15 years ago
- 786da7d by David Greene · 15 years ago
- 1e55944 by David Greene · 15 years ago
- db8d989 by David Greene · 15 years ago
- 7720155 Remove an assumption of default arguments. This is in anticipation of a by David Greene · 15 years ago
- 54a7aa8 Remove an assumption of default arguments. This is in anticipation of a by David Greene · 15 years ago
- 534502d1 Remove an assumption of default arguments. This is in anticipation of a by David Greene · 15 years ago
- 74a6a79 Remove an assumption of default arguments. This is in anticipation of a by David Greene · 15 years ago
- 4d58b64 Remove an assumption of default arguments. This is in anticipation of a by David Greene · 15 years ago
- f6fa186 Remove an assumption of default arguments. This is in anticipation of a by David Greene · 15 years ago
- 73657df Remove an assumption of default arguments. This is in anticipation of a by David Greene · 15 years ago
- f749efa Remove an assumption of default arguments. This is in anticipation of a by David Greene · 15 years ago
- 1b58cab Remove an assumption of default arguments. This is in anticipation of a by David Greene · 15 years ago
- 0e2236c Remove an assumption of default arguments. This is in anticipation of a by David Greene · 15 years ago
- 67c9d42 by David Greene · 15 years ago
- 140a5d6 by David Greene · 15 years ago
- ba2b297 by David Greene · 15 years ago
- b0bc6c3 Uniformize the names of type predicates: rather than having isFloatTy and by Duncan Sands · 15 years ago
- f681475 CMake: Fixed syntax in conditional. by Oscar Fuentes · 15 years ago
- 6ceeba6 Fix changes from r75027 by Andrew Lenharth · 15 years ago
- 50922bb When testing whether a given SCEV depends on a temporary symbolic by Dan Gohman · 15 years ago
- da272d1 Check in the first big step of rewriting DAGISelEmitter to by Chris Lattner · 15 years ago
- 9f06cb4 give SDValue an operator->, allowing V->isTargetOpcode() and by Chris Lattner · 15 years ago
- 5ac03f1 don't make insanely large node numbers for no reason, by Chris Lattner · 15 years ago
- 020bb08 no need to add the instruction count anymore. by Chris Lattner · 15 years ago
- 0b1a395 Revert r96130 ("Forward parameter options as '-option=param'"). by Mikhail Glushenkov · 15 years ago
- 17f26b4 enhance raw_svector_ostream::write_impl to work with unbuffered streams, by Chris Lattner · 16 years ago
- efbdaa6 make PadToColumn return the stream so you can use: OS.PadToColumn(42) << "foo"; by Chris Lattner · 16 years ago
- 3da6e09 Ignore DBG_VALUE in a couple more places. by Dale Johannesen · 16 years ago