Home | History | Annotate | only in /external/swiftshader/third_party/LLVM/lib/Support
Up to higher level directory
NameDateSize
Allocator.cpp06-Dec-20175.8K
APFloat.cpp06-Dec-2017103.1K
APInt.cpp06-Dec-201788.7K
APSInt.cpp06-Dec-2017779
Atomic.cpp06-Dec-20172.9K
BlockFrequency.cpp06-Dec-20172.8K
BranchProbability.cpp06-Dec-20171.1K
circular_raw_ostream.cpp06-Dec-20171.3K
CommandLine.cpp06-Dec-201749.5K
ConstantRange.cpp06-Dec-201722.7K
COPYRIGHT.regex06-Dec-20172.7K
CrashRecoveryContext.cpp06-Dec-201710.1K
DAGDeltaAlgorithm.cpp06-Dec-201712.6K
DataExtractor.cpp06-Dec-20174.8K
Debug.cpp06-Dec-20174.6K
DeltaAlgorithm.cpp06-Dec-20173.4K
Disassembler.cpp06-Dec-20171.7K
Dwarf.cpp06-Dec-201738.5K
DynamicLibrary.cpp06-Dec-20174.9K
Errno.cpp06-Dec-20172.1K
ErrorHandling.cpp06-Dec-20173.2K
FileUtilities.cpp06-Dec-20179.1K
FoldingSet.cpp06-Dec-201714K
FormattedStream.cpp06-Dec-20173.3K
GraphWriter.cpp06-Dec-20175.5K
Host.cpp06-Dec-201711K
IncludeFile.cpp06-Dec-2017707
INSTALL.vcxproj.filters06-Dec-2017657
IntEqClasses.cpp06-Dec-20172.1K
IntervalMap.cpp06-Dec-20174.3K
IsInf.cpp06-Dec-20171.5K
IsNAN.cpp06-Dec-2017914
LLVMSupport.vcxproj06-Dec-201727.6K
LLVMSupport.vcxproj.filters06-Dec-20177.5K
Makefile06-Dec-2017690
ManagedStatic.cpp06-Dec-20172K
Memory.cpp06-Dec-20172.4K
MemoryBuffer.cpp06-Dec-201713.3K
MemoryObject.cpp06-Dec-2017946
Mutex.cpp06-Dec-20174.5K
PACKAGE.vcxproj.filters06-Dec-2017657
Path.cpp06-Dec-20178.3K
PathV2.cpp06-Dec-201720K
PluginLoader.cpp06-Dec-20171.6K
PrettyStackTrace.cpp06-Dec-20174.1K
Process.cpp06-Dec-20171K
Program.cpp06-Dec-20171.8K
raw_os_ostream.cpp06-Dec-2017967
raw_ostream.cpp06-Dec-201722.2K
README.txt.system06-Dec-20171.9K
regcclass.h06-Dec-20172.9K
regcname.h06-Dec-20174.2K
regcomp.c06-Dec-201734.8K
regengine.inc06-Dec-201726.5K
regerror.c06-Dec-20174.4K
Regex.cpp06-Dec-20174.6K
regex2.h06-Dec-20176.7K
regex_impl.h06-Dec-20173.6K
regexec.c06-Dec-20175.7K
regfree.c06-Dec-20172.5K
regstrlcpy.c06-Dec-20171.6K
regutils.h06-Dec-20172.2K
RWMutex.cpp06-Dec-20174.3K
SearchForAddressOfSpecialSymbol.cpp06-Dec-20171.7K
Signals.cpp06-Dec-20171.1K
SmallPtrSet.cpp06-Dec-20177.4K
SmallVector.cpp06-Dec-20171.4K
SourceMgr.cpp06-Dec-20177.3K
Statistic.cpp06-Dec-20174.7K
StringExtras.cpp06-Dec-20173.1K
StringMap.cpp06-Dec-20177.9K
StringPool.cpp06-Dec-2017997
StringRef.cpp06-Dec-201712.1K
system_error.cpp06-Dec-20172.8K
SystemUtils.cpp06-Dec-20172.2K
TargetRegistry.cpp06-Dec-20173.8K
Threading.cpp06-Dec-20174K
ThreadLocal.cpp06-Dec-20172.4K
Timer.cpp06-Dec-201712K
TimeValue.cpp06-Dec-20171.7K
ToolOutputFile.cpp06-Dec-20171.5K
Triple.cpp06-Dec-201719.6K
Twine.cpp06-Dec-20174.1K
Unix/06-Dec-2017
Valgrind.cpp06-Dec-20171.6K
Windows/06-Dec-2017

README.txt.system

      1 Design Of lib/System
      2 ====================
      3 
      4 The software in this directory is designed to completely shield LLVM from any
      5 and all operating system specific functionality. It is not intended to be a
      6 complete operating system wrapper (such as ACE), but only to provide the
      7 functionality necessary to support LLVM.
      8 
      9 The software located here, of necessity, has very specific and stringent design
     10 rules. Violation of these rules means that cracks in the shield could form and
     11 the primary goal of the library is defeated. By consistently using this library,
     12 LLVM becomes more easily ported to new platforms since the only thing requiring
     13 porting is this library.
     14 
     15 Complete documentation for the library can be found in the file:
     16   llvm/docs/SystemLibrary.html
     17 or at this URL:
     18   http://llvm.org/docs/SystemLibrary.html
     19 
     20 While we recommend that you read the more detailed documentation, for the
     21 impatient, here's a high level summary of the library's requirements.
     22 
     23  1. No system header files are to be exposed through the interface.
     24  2. Std C++ and Std C header files are okay to be exposed through the interface.
     25  3. No exposed system-specific functions.
     26  4. No exposed system-specific data.
     27  5. Data in lib/System classes must use only simple C++ intrinsic types.
     28  6. Errors are handled by returning "true" and setting an optional std::string
     29  7. Library must not throw any exceptions, period.
     30  8. Interface functions must not have throw() specifications.
     31  9. No duplicate function impementations are permitted within an operating
     32     system class.
     33 
     34 To accomplish these requirements, the library has numerous design criteria that
     35 must be satisfied. Here's a high level summary of the library's design criteria:
     36 
     37  1. No unused functionality (only what LLVM needs)
     38  2. High-Level Interfaces
     39  3. Use Opaque Classes
     40  4. Common Implementations
     41  5. Multiple Implementations
     42  6. Minimize Memory Allocation
     43  7. No Virtual Methods
     44