..
AIXDataTypesFix.h
AlignOf.h
Allocator.h
ArrayRecycler.h
Atomic.h
BlockFrequency.h
BranchProbability.h
CallSite.h
Use only explicit bool conversion operators
2013-05-15 07:36:59 +00:00
Capacity.h
Casting.h
Cleanup the simplify_type implementation.
2013-03-27 16:43:11 +00:00
CBindingWrapping.h
Fix file header comment.
2013-05-01 21:01:06 +00:00
CFG.h
Enable pod-like optimizations for pred and succ iterators.
2013-05-20 13:12:58 +00:00
circular_raw_ostream.h
CodeGen.h
This exposes more MCJIT options via the C API:
2013-05-01 22:58:00 +00:00
COFF.h
Implements low-level object file format specific output for COFF and
2013-04-03 18:31:38 +00:00
CommandLine.h
Use correct parameter names in comments [-Wdocumentation]
2013-05-08 22:28:48 +00:00
Compiler.h
Introduce LLVM_STATIC_ASSERT macro, which expands to C/C++'s static_assert on compilers which support it.
2013-03-22 03:10:51 +00:00
Compression.h
Add basic zlib support to LLVM. This would allow to use compression/uncompression in selected LLVM tools.
2013-04-23 08:28:39 +00:00
ConstantFolder.h
ConstantRange.h
ConvertUTF.h
llvm-gcc -pedantic warns about C++ comments in C90 mode even if they're
2013-02-13 22:45:52 +00:00
CrashRecoveryContext.h
DataExtractor.h
Be consistent about the field name - AddressSize, not PointerSize. Add
2013-02-05 23:26:02 +00:00
DataFlow.h
DataStream.h
DataTypes.h.cmake
DataTypes.h.in
Debug.h
DebugLoc.h
Remove trailing spaces.
2013-03-18 23:04:30 +00:00
Disassembler.h
DOTGraphTraits.h
ScheduleDAG: colorize the DOT graph and improve formatting.
2013-01-25 07:45:25 +00:00
Dwarf.h
Revert "Update the version of dwarf we say we're emitting to at least 3."
2013-04-10 21:45:07 +00:00
DynamicLibrary.h
ELF.h
[PowerPC] Add some missing PPC64 relocs
2013-05-08 17:50:57 +00:00
Endian.h
Make the host endianness check an integer constant expression.
2013-04-15 14:44:24 +00:00
Errno.h
ErrorHandling.h
Add a boolean parameter to the llvm::report_fatal_error() function to indicated
2013-03-27 18:27:54 +00:00
ErrorOr.h
[Support][ErrorOr] Add support for implicit conversion from error code/condition enums.
2013-02-28 01:44:26 +00:00
FEnv.h
Refine fenv.h handling: check if the desired macros exist, before using
2013-03-25 13:13:33 +00:00
FileOutputBuffer.h
FileSystem.h
[Support] Fix lifetime of file descriptors when using MemoryBuffer.
2013-03-14 00:20:10 +00:00
FileUtilities.h
Format.h
FormattedStream.h
Add line tracking support to FormattedStream
2013-05-08 20:29:10 +00:00
GCOV.h
GetElementPtrTypeIterator.h
GraphWriter.h
ScheduleDAG: colorize the DOT graph and improve formatting.
2013-01-25 07:45:25 +00:00
Host.h
Define BYTE_ORDER on Solaris.
2013-05-21 20:36:13 +00:00
IncludeFile.h
InstIterator.h
IntegersSubset.h
IntegersSubsetMapping.h
LeakDetector.h
LEB128.h
LICENSE.TXT
Locale.h
LockFileManager.h
MachO.h
ManagedStatic.h
MathExtras.h
Suppressing MSVC warnings; patch thanks to Peng Cheng!
2013-02-27 18:25:41 +00:00
MD5.h
Add an md5 library derived from a public domain implementation for dwarf4
2013-05-21 01:28:35 +00:00
Memory.h
MemoryBuffer.h
This patch breaks up Wrap.h so that it does not have to include all of
2013-05-01 20:59:00 +00:00
MemoryObject.h
Remove the Copied parameter from MemoryObject::readBytes.
2013-05-24 10:54:58 +00:00
Mutex.h
MutexGuard.h
NoFolder.h
OutputBuffer.h
PassNameParser.h
Add missing verb to comment in PassNameParser.h
2013-05-17 16:51:32 +00:00
Path.h
PathV1.h
PathV2.h
PatternMatch.h
Provide InstCombines for the following 3 cases:
2013-05-06 16:55:50 +00:00
PluginLoader.h
PointerLikeTypeTraits.h
PredIteratorCache.h
PrettyStackTrace.h
Process.h
Program.h
Add a function to check if an argument list is too long.
2013-04-11 14:06:34 +00:00
raw_os_ostream.h
raw_ostream.h
Use LLVM_DELETED_FUNCTION rather than '// do not implement' comments.
2013-02-18 23:11:17 +00:00
Recycler.h
RecyclingAllocator.h
Regex.h
Registry.h
RegistryParser.h
RWMutex.h
SaveAndRestore.h
Signals.h
SMLoc.h
Fix include guards so they exactly match file names.
2013-01-10 00:45:19 +00:00
Solaris.h
Define BYTE_ORDER on Solaris.
2013-05-21 20:36:13 +00:00
SourceMgr.h
Add ArrayRef constructor from None, and do the cleanups that this constructor enables
2013-05-05 00:40:33 +00:00
StreamableMemoryObject.h
Remove the Copied parameter from MemoryObject::readBytes.
2013-05-24 10:54:58 +00:00
StringPool.h
StringRefMemoryObject.h
Remove the Copied parameter from MemoryObject::readBytes.
2013-05-24 10:54:58 +00:00
SwapByteOrder.h
system_error.h
SystemUtils.h
TargetFolder.h
TargetRegistry.h
Add MCSymbolizer for symbolic/annotated disassembly.
2013-05-24 00:39:57 +00:00
TargetSelect.h
Threading.h
ThreadLocal.h
Timer.h
Slight cosmetic fixes
2013-02-26 18:05:31 +00:00
TimeValue.h
Fix initialization-order bug in llvm::Support::TimeValue. TimeValue::now() is explicitly called during module initialization of lib/Support/Process.cpp. It reads the field of global object PosixZeroTime, which is not guaranteed to be initialized at this point. Found by AddressSanitizer with -fsanitize=init-order option.
2013-02-19 11:35:39 +00:00
ToolOutputFile.h
type_traits.h
Cleanup the simplify_type implementation.
2013-03-27 16:43:11 +00:00
Valgrind.h
ValueHandle.h
Cleanup the simplify_type implementation.
2013-03-27 16:43:11 +00:00
Watchdog.h
Add a new watchdog timer interface. The interface does not permit handling timeouts, so
2013-03-26 01:27:52 +00:00
Win64EH.h
Implements low-level object file format specific output for COFF and
2013-04-03 18:31:38 +00:00
YAMLParser.h
Use only explicit bool conversion operators
2013-05-15 07:36:59 +00:00
YAMLTraits.h