aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Support
AgeCommit message (Expand)Author
2010-10-25Remove deprecated macro names. Hopefully this will unbreak theDuncan Sands
2010-10-23Move the remaining attribute macros to systematic names based on the attributeChandler Carruth
2010-10-23Switch attribute macros to use 'LLVM_' as a prefix. We retain the old namesChandler Carruth
2010-10-22I hate line endings.Michael J. Spencer
2010-10-22Endian: Get rid of LLVM_IS_HOST_BIG_ENDIAN.Michael J. Spencer
2010-10-22Rename LLVM_IS_TARGET_BIG_ENDIAN to LLVM_IS_HOST_BIG_ENDIAN to reflect what i...Michael J. Spencer
2010-10-21Support: Add Endian.hMichael J. Spencer
2010-10-21Adding the EM_MBLAZE value to the machine architectures enumeration toWesley Peck
2010-10-20Add a comment about ATTRIBUTE_UNUSED to avoid further confusion over when toChandler Carruth
2010-10-18Add TypeBasedAliasAnalysis to the standard pass lists. Note that itDan Gohman
2010-10-18Make BasicAliasAnalysis a normal AliasAnalysis implementation whichDan Gohman
2010-10-16MC-COFF: Add support for default-null weak externals.Michael J. Spencer
2010-10-14Always use binary mode for output stream. This is important to prevent unwant...Francois Pichet
2010-10-11System: Add SwapByteOrder and update Support/MathExtras.h to use it.Michael J. Spencer
2010-10-11Revert "System: Add SwapByteOrder and update Support/MathExtras.h to use it."Michael J. Spencer
2010-10-11System: Add SwapByteOrder and update Support/MathExtras.h to use it.Michael J. Spencer
2010-10-08MC-COFF: Fix Simple and Complex type. Fixes PR8320.Michael J. Spencer
2010-10-08Fix Whitespace.Michael J. Spencer
2010-10-07Move tool_output_file into its own file.Dan Gohman
2010-10-05Support: Add __forceinline to Compiler.h on MSVC.Michael J. Spencer
2010-10-03Remove two uses of the gcc specific 'aligned' attribute. ThisDuncan Sands
2010-09-30Did my commit for the last patch for the .loc directory from the wrong place andKevin Enderby
2010-09-29Revert r115099 (adding early jump threading). It's not clear if the benefits...Owen Anderson
2010-09-29Early CFG simplification can fold conditionals down to selects, which is ofte...Owen Anderson
2010-09-29Generalize DISubprogram element to encode various flags instead of just one b...Devang Patel
2010-09-27Push twines deeper into SourceMgr's error handling methods.Benjamin Kramer
2010-09-27writeGraph doesn't need its ShortNames argument.Dan Gohman
2010-09-27Don't construct a redundant GraphWriter object.Dan Gohman
2010-09-27Factor out code from the standalone WriteGraph function into a helperDan Gohman
2010-09-27Remove WriteGraph's Name argument, which it didn't use, andDan Gohman
2010-09-27Fix indentation.Dan Gohman
2010-09-18restrict dyn_cast_or_null to pointer types, just like cast_or_null; re-commit...Gabor Greif
2010-09-18back out r114279 as some darwin buildbots get errors compiling clang:Gabor Greif
2010-09-18restrict dyn_cast_or_null to pointer types, just like cast_or_nullGabor Greif
2010-09-18remove CallSite::get; it is still present (as protected) in the baseclass, us...Gabor Greif
2010-09-15Remove LLVM_GLOBAL_VISIBILITY, which is unused, and was not working properly.Duncan Sands
2010-09-10Add X86 MMX type to bitcode and Type.Dale Johannesen
2010-09-07Remove dead code. ManagedCleanup is unused, and contained a serious bug in thatOwen Anderson
2010-09-07Add completely hokey binary-and and binary-or operations to ConstantRange andNick Lewycky
2010-09-06Add a new isSignWrappedSet() method to ConstantRange.Nick Lewycky
2010-09-03Re-enable CorrelatedValuePropagation. I've tested nightly tests, llvm-gcc Owen Anderson
2010-09-02Remove obsolete comments about throwing exceptions.Dan Gohman
2010-09-01Reword this comment. Don't mention outs(), as that's not whatDan Gohman
2010-09-01Disable CorrelatedValuePropagation while I track down selfhost failures.Owen Anderson
2010-09-01Tentatively add correlated value propagation to the set of standard passes.Owen Anderson
2010-09-01Make tool_output_file's raw_ostream instance a member variable insteadDan Gohman
2010-09-01COFF: Fix incorrect SCT_COMPLEX_TYPE_SHIFT. Add a few constants.Michael J. Spencer
2010-09-01Define LLVM_GLOBAL_VISIBILITY to be __declspec(dllexport) onDuncan Sands
2010-08-29Stop explicitly scheduling domfrontier before the loop passes,Chris Lattner
2010-08-26add m_BitCast for matching a bitcast.Chris Lattner