Home | History | Annotate | only in /external/swiftshader/third_party/LLVM/lib/Support
Up to higher level directory
NameDateSize
Allocator.cpp21-Aug-20185.8K
APFloat.cpp21-Aug-2018103.1K
APInt.cpp21-Aug-201888.7K
APSInt.cpp21-Aug-2018779
Atomic.cpp21-Aug-20182.9K
BlockFrequency.cpp21-Aug-20182.8K
BranchProbability.cpp21-Aug-20181.1K
circular_raw_ostream.cpp21-Aug-20181.3K
CommandLine.cpp21-Aug-201849.5K
ConstantRange.cpp21-Aug-201822.7K
COPYRIGHT.regex21-Aug-20182.7K
CrashRecoveryContext.cpp21-Aug-201810.1K
DAGDeltaAlgorithm.cpp21-Aug-201812.6K
DataExtractor.cpp21-Aug-20184.8K
Debug.cpp21-Aug-20184.6K
DeltaAlgorithm.cpp21-Aug-20183.4K
Disassembler.cpp21-Aug-20181.7K
Dwarf.cpp21-Aug-201838.5K
DynamicLibrary.cpp21-Aug-20184.9K
Errno.cpp21-Aug-20182.1K
ErrorHandling.cpp21-Aug-20183.2K
FileUtilities.cpp21-Aug-20189.1K
FoldingSet.cpp21-Aug-201814K
FormattedStream.cpp21-Aug-20183.3K
GraphWriter.cpp21-Aug-20185.5K
Host.cpp21-Aug-201811K
IncludeFile.cpp21-Aug-2018707
INSTALL.vcxproj.filters21-Aug-2018657
IntEqClasses.cpp21-Aug-20182.1K
IntervalMap.cpp21-Aug-20184.3K
IsInf.cpp21-Aug-20181.5K
IsNAN.cpp21-Aug-2018914
LLVMSupport.vcxproj21-Aug-201827.6K
LLVMSupport.vcxproj.filters21-Aug-20187.5K
Makefile21-Aug-2018690
ManagedStatic.cpp21-Aug-20182K
Memory.cpp21-Aug-20182.4K
MemoryBuffer.cpp21-Aug-201813.3K
MemoryObject.cpp21-Aug-2018946
Mutex.cpp21-Aug-20184.5K
PACKAGE.vcxproj.filters21-Aug-2018657
Path.cpp21-Aug-20188.3K
PathV2.cpp21-Aug-201820K
PluginLoader.cpp21-Aug-20181.6K
PrettyStackTrace.cpp21-Aug-20184.1K
Process.cpp21-Aug-20181K
Program.cpp21-Aug-20181.8K
raw_os_ostream.cpp21-Aug-2018967
raw_ostream.cpp21-Aug-201822.2K
README.txt.system21-Aug-20181.9K
regcclass.h21-Aug-20182.9K
regcname.h21-Aug-20184.2K
regcomp.c21-Aug-201834.8K
regengine.inc21-Aug-201826.5K
regerror.c21-Aug-20184.4K
Regex.cpp21-Aug-20184.6K
regex2.h21-Aug-20186.7K
regex_impl.h21-Aug-20183.6K
regexec.c21-Aug-20185.7K
regfree.c21-Aug-20182.5K
regstrlcpy.c21-Aug-20181.6K
regutils.h21-Aug-20182.2K
RWMutex.cpp21-Aug-20184.3K
SearchForAddressOfSpecialSymbol.cpp21-Aug-20181.7K
Signals.cpp21-Aug-20181.1K
SmallPtrSet.cpp21-Aug-20187.4K
SmallVector.cpp21-Aug-20181.4K
SourceMgr.cpp21-Aug-20187.3K
Statistic.cpp21-Aug-20184.7K
StringExtras.cpp21-Aug-20183.1K
StringMap.cpp21-Aug-20187.9K
StringPool.cpp21-Aug-2018997
StringRef.cpp21-Aug-201812.1K
system_error.cpp21-Aug-20182.8K
SystemUtils.cpp21-Aug-20182.2K
TargetRegistry.cpp21-Aug-20183.8K
Threading.cpp21-Aug-20184K
ThreadLocal.cpp21-Aug-20182.4K
Timer.cpp21-Aug-201812K
TimeValue.cpp21-Aug-20181.7K
ToolOutputFile.cpp21-Aug-20181.5K
Triple.cpp21-Aug-201819.6K
Twine.cpp21-Aug-20184.1K
Unix/21-Aug-2018
Valgrind.cpp21-Aug-20181.6K
Windows/21-Aug-2018

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