- 5d9759b Make comments and code for QuietWarnings and QuietErrors by Dan Gohman · 17 years ago
- 048ca55 SDNodes may have at most one Flag result. Update this comment to reflect that. by Dan Gohman · 17 years ago
- 71b7f64 Move the code that adds the DeadMachineInstructionElimPass from by Dan Gohman · 17 years ago
- a2cbe6c Related to PR2911, reject as invalid non-pointer GC roots. by Gordon Henriksen · 17 years ago
- 46fa139 Support for allocation of TLS variables in the JIT. Allocation of a global by Nicolas Geoffray · 17 years ago
- b74f370 Generate code for TLS instructions. by Nicolas Geoffray · 17 years ago
- b7e1a4f Added MIPS release notes. by Bruno Cardoso Lopes · 17 years ago
- f7e73b9 CMake: Directed bug reports to llvmbugs. by Oscar Fuentes · 17 years ago
- 28df32b CMake: lib/Target/ARM/AsmPrinter/CMakeLists.txt added. by Oscar Fuentes · 17 years ago
- de98db3 CMake: MSVC++ no longer uses a special configuration method. by Oscar Fuentes · 17 years ago
- cd62132 CMake: Sync'ed DataTypes.h.cmake with DataTypes.h.in. by Oscar Fuentes · 17 years ago
- ddbbb4f CMake: Cross-platform support for using pre-generated llvmAsmParser.cpp and llvmAsmParser.h. by Oscar Fuentes · 17 years ago
- 78dfef7 If val# def is ~0U, meaning it's defined by a PHI, and it's previously split, spill before the barrier because it's impossible to determine if all the defs are spilled in the same spill slot. by Evan Cheng · 17 years ago
- f14df02 Mark MFCR as reading all condition code registers. by Dale Johannesen · 17 years ago
- c12e581 Rewrite logic to figure out whether LR needs to by Dale Johannesen · 17 years ago
- 47106ba Be kind to non-x86 hosts. by Dale Johannesen · 17 years ago
- 61df3b7 move the note to the correct README by Torok Edwin · 17 years ago
- db1b3bc add note about va_arg code on x86 and x86-64 by Torok Edwin · 17 years ago
- 56ab0de Fix a pasto. by Evan Cheng · 17 years ago
- 4047f4a Fix translateX86CC: if SetCCOpcode is SETULE and by Duncan Sands · 17 years ago
- 389b715 Modify the cmake build system so that if it doesn't find bison, it will use the pregenerated file in from the svn (.cvs). Work only for windows for the moment. Tested on Vista64 with MSVC2008express. by Cedric Venet · 17 years ago
- 1125406 Add a file to VC++ proj. by Steve Naroff · 17 years ago
- 04aa2c3 Don't try to create a mask when we don't need one. Fixes a crash. by Nick Lewycky · 17 years ago
- 2efe3fd Fix a end() dereference; remove an abort() that wasn't meant to be left in. by Evan Cheng · 17 years ago
- 79cce5c Add value range analyzing of Add and Sub. Understand that mul %x, 1 = %x. by Nick Lewycky · 17 years ago
- 0658749 Avoid splitting an interval multiple times; avoid splitting re-materializable val# (for now). by Evan Cheng · 17 years ago
- c9f3cc3 Fix constant-offset emission for x86-64 absolute addresses. This by Dan Gohman · 17 years ago
- b1e5edc Add file to VC++ project. by Steve Naroff · 17 years ago
- fea9088 Initialize uninitialized variable. by Dale Johannesen · 17 years ago
- 43d1f02 Added raw_fd_ostream::close(). by Ted Kremenek · 17 years ago
- 93fbe75 Changes to make the Windows build work... by Steve Naroff · 17 years ago
- f5cd4f0 Committing a good chunk of the pre-register allocation live interval splitting pass. It's handling simple cases and appear to do good things. Next: avoid splitting an interval multiple times; renumber registers when possible; record stack slot live intervals for coloring; rematerialize defs when possible. by Evan Cheng · 17 years ago
- 639076f Mark defs and uses of CTR and LR correctly. by Dale Johannesen · 17 years ago
- e2e9d8e Make sure to set stdout to binary when writing bitcode files via by Daniel Dunbar · 17 years ago
- ee4c619 Fix thinko - the operand number has nothing to do with the result number. by Duncan Sands · 17 years ago
- 39ac2cb Introduce INT64_C macro and unbreak LLVM on MSVC. by Argyrios Kyrtzidis · 17 years ago
- d2fda8a make this test not depend on how the system header defines memset. by Chris Lattner · 17 years ago
- 394f044 Change create*Pass factory functions to return Pass* instead of by Daniel Dunbar · 17 years ago
- 30f100e Fix incorrect testing for the end of the both strings in CStrInCStrNoCase. This could cause a read-out-of-bounds error if s2 is smaller than s1. by Ted Kremenek · 17 years ago
- c64bdf6 remove extraneous #ifdef's by Jim Grosbach · 17 years ago
- d1ce3b4 Add raw_ostream versions of WriteBitcodeToFile and BitcodeWriterPass. by Daniel Dunbar · 17 years ago
- e80d67e Remove allocation of unused stack slot. by Dale Johannesen · 17 years ago
- e7d3af5 Fix for PR2881: fix a small leak exposed by valgrind, using a ManagedStatic. by Julien Lerouge · 17 years ago
- 1cf9395 [PR2886] Ignore stderr from ocamlc since it prints unresolvable warnings on some platforms. by Gordon Henriksen · 17 years ago
- 40e7f19 Regenerate. by Gordon Henriksen · 17 years ago
- 0f392e1 [PR2886] Don't look for ocaml's .opt executables; something in the autoconf/test machinery doesn't handle the period properly. by Gordon Henriksen · 17 years ago
- 2cbe7fe LegalizeTypes soft-float support for fpow. by Duncan Sands · 17 years ago
- 6b6aeb3 Get this working with LegalizeTypes: (1) don't by Duncan Sands · 17 years ago
- cc499a4 Regenerate configure by Torok Edwin · 17 years ago
- bb9d18c Unbreak LLVM on the MSVC compiler: by Argyrios Kyrtzidis · 17 years ago
- 3a67f50 Use spaces rather than tab. by Duncan Sands · 17 years ago
- f941014 Be nice to CellSPU: for this target getSetCCResultType by Duncan Sands · 17 years ago
- 29a2822 Port from LegalizeDAG the logic to only generate by Duncan Sands · 17 years ago
- 3b521d5 Add some comments explaining the meaning of a boolean by Duncan Sands · 17 years ago
- 0954aef Temporarily allow the operands of a BUILD_VECTOR by Duncan Sands · 17 years ago
- aecc22a Fix PR2907 by digging through constant expressions to find FP constants that by Chris Lattner · 17 years ago
- 3b0da26 Move Print*Pass to use raw_ostream. by Daniel Dunbar · 17 years ago
- 1dc9716 CMake: `make install' for libraries, executables and header files. by Oscar Fuentes · 17 years ago
- 57bd83b CMake: use add_llvm_example for HowToUseJIT. by Oscar Fuentes · 17 years ago
- 5c5b6df CMake: Turned some libraries into partially linked objects. Corrected by Oscar Fuentes · 17 years ago
- 9ae0d6d Adjust comments for pedantic satisfaction. by Dale Johannesen · 17 years ago
- b2ab0e7 Fix comment to name "TokenFactor" instead of "Token factor". by Bill Wendling · 17 years ago
- 305c707 CMake: updated lib/VMCore/CMakeLists.txt by Oscar Fuentes · 17 years ago
- f4db3a5 Privatize PrintModulePass and PrintFunctionPass and add by Daniel Dunbar · 17 years ago
- 040225f Add comments to explain uint64->f64 algorithm, by Dale Johannesen · 17 years ago
- 1c15bf5 Add an SSE2 algorithm for uint64->f64 conversion. by Dale Johannesen · 17 years ago
- 7ea1ca6 Fix SelectionDAGBuild lowering of Select instructions to by Dan Gohman · 17 years ago
- 48534b3 Clear raw_fd_ostream error string on success and explain behavior in by Daniel Dunbar · 17 years ago
- cf891f4 Updated email address. by Dan Gohman · 17 years ago
- 7b66e04 Implement the optimized FCMP_OEQ/FCMP_UNE code for x86 fast-isel. by Dan Gohman · 17 years ago
- 237033e Fix make check on Solaris 10/x86: the default grep is not GNU grep, same for as. by Torok Edwin · 17 years ago
- a9ab95b use pre-UAL mnemonics for push/pop for compilaton callback function by Jim Grosbach · 17 years ago
- cef7527 fix a tricky bug in the JIT global variable emitter, that was triggered when JITing a variable independently of a function. This lead to sharing memory memory between functions and GVs thus changing the value of a GV could change the code in execution. more details on the ML. by Nuno Lopes · 17 years ago
- e06e911 constify some methods and variables in ImmutableList. by Ted Kremenek · 17 years ago
- 7fb501c really fix run line by Chris Lattner · 17 years ago
- 0294ac2 fix run line by Chris Lattner · 17 years ago
- 402135f remove some unneeded eh generation by Chris Lattner · 17 years ago
- 54aeea3 Disable constant-offset folding for PowerPC, as the PowerPC target by Dan Gohman · 17 years ago
- 4401361 Don't create TargetGlobalAddress nodes with offsets that don't fit by Dan Gohman · 17 years ago
- 279c22e Optimized FCMP_OEQ and FCMP_UNE for x86. by Dan Gohman · 17 years ago
- 3afda6e When the coalescer is doing rematerializing, have it remove by Dan Gohman · 17 years ago
- e7d238e Make the NaN test come second, heuristically assuming that NaNs are less common. by Dan Gohman · 17 years ago
- 0db69dc Use Function::getEntryBlock() instead of Function::front(), for clarity. by Dan Gohman · 17 years ago
- 7334b15 CMake: updated lib/CodeGen/CMakeLists.txt by Oscar Fuentes · 17 years ago
- b9a31a1 Fix a bug that prevented llvm-extract -delete from working. by Dan Gohman · 17 years ago
- 01426e1 Fix gcc.c-torture/compile/920520-1.c by inserting bitconverts by Chris Lattner · 17 years ago
- 09e8ca8 Add skeleton for the pre-register allocation live interval splitting pass. by Evan Cheng · 17 years ago
- 932a32d Update the stub and callback code to handle lazy compilation. The stub by Jim Grosbach · 17 years ago
- d659d50 Fast-isel no longer an experiment. by Dan Gohman · 17 years ago
- 11a26f3 Add a register class -> virtual registers map. by Evan Cheng · 17 years ago
- f89cfae This forward declaration is unnecessary. by Evan Cheng · 17 years ago
- d398672 Support operations like fp_to_uint with a vector by Duncan Sands · 17 years ago
- 9a2c1d3 Teach getTypeToTransformTo to return something by Duncan Sands · 17 years ago
- b5f68e2 LegalizeTypes support for atomic operation promotion. by Duncan Sands · 17 years ago
- 49c18cc Use DAG.getIntPtrConstant rather than DAG.getConstant by Duncan Sands · 17 years ago
- 7e49822 Always use either MVT::i1 or getSetCCResultType for by Duncan Sands · 17 years ago
- ef5b199 Formatting - no functional change. by Duncan Sands · 17 years ago
- f6e2949 Don't use a random type for the select condition, by Duncan Sands · 17 years ago
- 8c8b2a8 Fix a typo in a comment. by Dan Gohman · 17 years ago
- ed294c4 Have X86 custom lowering for LegalizeTypes use by Duncan Sands · 17 years ago