brintos

brintos / llvm-project-archived public Read only

0
0
Text · 6.6 KiB · 6e0cd41 Raw
145 lines · html
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"2          "http://www.w3.org/TR/html4/strict.dtd">3<!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ -->4<html>5<head>6  <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">7  <title>"compiler-rt" Runtime Library</title>8  <link type="text/css" rel="stylesheet" href="menu.css">9  <link type="text/css" rel="stylesheet" href="content.css">10</head>11 12<body>13<!--#include virtual="menu.html.incl"-->14<div id="content">15  <!--*********************************************************************-->16  <h1>"compiler-rt" runtime libraries</h1>17  <!--*********************************************************************-->18 19  <p>The compiler-rt project consists of:20  <ul>21  <li>22    <p><b>builtins</b> - a simple library that provides an implementation23    of the low-level target-specific hooks required by code generation and24    other runtime components.  For example, when compiling for a 32-bit target,25    converting a double to a 64-bit unsigned integer is compiling into a runtime26    call to the "__fixunsdfdi" function.  The builtins library provides27    optimized implementations of this and other low-level routines, either in28    target-independent C form, or as a heavily-optimized assembly.</p>29    <p>builtins provides full support for the libgcc interfaces on supported30    targets and high performance hand tuned implementations of commonly used31    functions like __floatundidf in assembly that are dramatically faster than32    the libgcc implementations. It should be very easy to bring builtins to33    support a new target by adding the new routines needed by that target.</p>34  </li>35  <li>36    <b>sanitizer runtimes</b> - runtime libraries that are required to run37    the code with sanitizer instrumentation. This includes runtimes for:38    <ul>39    <li><a href="https://clang.llvm.org/docs/AddressSanitizer.html">AddressSanitizer</a></li>40    <li><a href="https://clang.llvm.org/docs/ThreadSanitizer.html">ThreadSanitizer</a></li>41    <li><a href="https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html">UndefinedBehaviorSanitizer</a></li>42    <li><a href="https://clang.llvm.org/docs/MemorySanitizer.html">MemorySanitizer</a></li>43    <li><a href="https://clang.llvm.org/docs/LeakSanitizer.html">LeakSanitizer</a></li>44    <li><a href="https://clang.llvm.org/docs/DataFlowSanitizer.html">DataFlowSanitizer</a></li>45    </ul>46  </li>47  <li>48    <b>profile</b> - library which is used to collect coverage information.49  </li>50  <li>51    <b>BlocksRuntime</b> - a target-independent implementation of Apple "Blocks"52    runtime interfaces.53  </li>54  </ul>55  </p>56 57  <p>All of the code in the compiler-rt project is <a58     href="https://llvm.org/docs/DeveloperPolicy.html#copyright-license-and-patents">dual licensed</a>59     under the MIT license and the UIUC License (a BSD-like license).</p>60 61  <!--=====================================================================-->62  <h2 id="users">Clients</h2>63  <!--=====================================================================-->64 65  <p>Currently compiler-rt is primarily used by66    the <a href="https://clang.llvm.org">Clang</a>67    and <a href="https://llvm.org">LLVM</a> projects as the implementation for68    the runtime compiler support libraries. For more information on using69    compiler-rt with Clang, please see the Clang70    <a href="https://clang.llvm.org/get_started.html">Getting Started</a>71    page.</p>72 73  <!--=====================================================================-->74  <h2 id="requirements">Platform Support</h2>75  <!--=====================================================================-->76 77   <p><b>builtins</b> is known to work on the following platforms:</p>78   <ul>79   <li>Machine Architectures: i386, X86-64, SPARC64, ARM, PowerPC, PowerPC 64.</li>80   <li>OS: DragonFlyBSD, FreeBSD, NetBSD, OpenBSD, Linux, Darwin, Windows.</li>81   </ul>82 83   <p>Most sanitizer runtimes are supported only on Linux x86-64. See tool-specific84   pages in <a href="https://clang.llvm.org/docs/index.html">Clang docs</a> for more85   details.</p>86 87  <!--=====================================================================-->88  <h2 id="dir-structure">Source Structure</h2>89  <!--=====================================================================-->90 91   <p>A short explanation of the directory structure of compiler-rt:</p>92 93   <p>For testing it is possible to build a generic library and an optimized library.94       The optimized library is formed by overlaying the optimized versions onto the generic library.95       Of course, some architectures have additional functions,96       so the optimized library may have functions not found in the generic version.</p>97 98   <ul>99    <li> include/ contains headers that can be included in user programs (for example,100         users may directly call certain function from sanitizer runtimes).</li>101    <li> lib/ contains libraries implementations. </li>102    <li> lib/builtins is a generic portable implementation of <b>builtins</b> routines.</li>103    <li> lib/builtins/(arch) has optimized versions of some routines104         for the supported architectures.</li>105    <li> test/ contains test suites for compiler-rt runtimes.</li>106   </ul>107 108  <!--=====================================================================-->109  <h2>Get it and get involved!</h2>110  <!--=====================================================================-->111 112  <p>Generally, you need to build LLVM/Clang in order to build compiler-rt. You113    can build it either together with llvm and clang, or separately.114 115  <p>To build it together, simply add compiler-rt to the -DLLVM_ENABLE_RUNTIMES= option to116    cmake.117 118  <p>To build it separately, first119  <a href="https://llvm.org/docs/CMake.html#quick-start">build LLVM</a>, and then run:120 121  <ul>122  <li>cd llvm-project</li>123  <li>mkdir build-compiler-rt</li>124  <li>cd build-compiler-rt</li>125  <li>cmake ../compiler-rt -DLLVM_CMAKE_DIR=/path/to/llvm-build-dir</li>126  <li>make</li>127  </ul>128 129  <p>Tests for sanitizer runtimes are ported to130  <a href="https://llvm.org/docs/CommandGuide/lit.html">llvm-lit</a> and are131  run by <b>make check-all</b> command in LLVM/Clang/compiler-rt build tree.</p>132 133  <p>compiler-rt libraries are installed to the system with <b>make install</b>134  command in either LLVM/Clang/compiler-rt or standalone135  compiler-rt build tree.</p>136 137  <p>If you have questions, please ask on the <a href="https://discourse.llvm.org/c/runtimes/64">138   Discourse forums</a> under the Runtime category.  Commits to compiler-rt are automatically 139   sent to the <a140  href="https://lists.llvm.org/mailman/listinfo/llvm-commits">llvm-commits</a>141    mailing list.</p>142</div>143</body>144</html>145