Name
Date
Size
#Lines
LOC

..--

.ci/H--513375

.github/H--4,4933,726

bolt/H--196,162164,850

clang/H--6,512,7593,070,024

clang-tools-extra/H--850,786712,762

cmake/H--711634

compiler-rt/H--611,276488,486

cross-project-tests/H--18,46511,773

flang/H--589,326371,819

libc/H--450,484364,527

libclc/H--27,03821,330

libcxx/H--1,289,402969,298

libcxxabi/H--65,70457,005

libunwind/H--25,00119,878

lld/H--312,166237,003

lldb/H--1,091,626810,710

llvm/H--19,800,32816,408,911

llvm-libgcc/H--636509

mlir/H--1,255,508946,201

offload/H--45,03528,592

openmp/H--177,080128,095

polly/H--429,791319,155

pstl/H--22,28316,881

runtimes/H--581496

third-party/H--67,36043,427

utils/bazel/H--43,49039,674

.clang-formatH A D14-Apr-202119 21

.clang-tidyH A D05-Mar-20241.4 KiB2726

.git-blame-ignore-revsH A D18-Dec-20243.5 KiB

.gitattributesH A D18-Oct-20249 KiB

.gitignoreH A D05-Dec-20242.2 KiB7367

.mailmapH A D24-Aug-20242.3 KiB5250

CODE_OF_CONDUCT.mdH A D09-Sep-2023112 42

CONTRIBUTING.mdH A D10-Sep-2023687 1812

LICENSE.TXTH A D24-Aug-202214.8 KiB280229

README.mdH A D17-Feb-20242.2 KiB4532

SECURITY.mdH A D20-Apr-2021205 64

pyproject.tomlH A D02-Mar-202457 76

README.md

1# The LLVM Compiler Infrastructure
2
3[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/llvm/llvm-project/badge)](https://securityscorecards.dev/viewer/?uri=github.com/llvm/llvm-project)
4[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/8273/badge)](https://www.bestpractices.dev/projects/8273)
5[![libc++](https://github.com/llvm/llvm-project/actions/workflows/libcxx-build-and-test.yaml/badge.svg?branch=main&event=schedule)](https://github.com/llvm/llvm-project/actions/workflows/libcxx-build-and-test.yaml?query=event%3Aschedule)
6
7Welcome to the LLVM project!
8
9This repository contains the source code for LLVM, a toolkit for the
10construction of highly optimized compilers, optimizers, and run-time
11environments.
12
13The LLVM project has multiple components. The core of the project is
14itself called "LLVM". This contains all of the tools, libraries, and header
15files needed to process intermediate representations and convert them into
16object files. Tools include an assembler, disassembler, bitcode analyzer, and
17bitcode optimizer.
18
19C-like languages use the [Clang](https://clang.llvm.org/) frontend. This
20component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode
21-- and from there into object files, using LLVM.
22
23Other components include:
24the [libc++ C++ standard library](https://libcxx.llvm.org),
25the [LLD linker](https://lld.llvm.org), and more.
26
27## Getting the Source Code and Building LLVM
28
29Consult the
30[Getting Started with LLVM](https://llvm.org/docs/GettingStarted.html#getting-the-source-code-and-building-llvm)
31page for information on building and running LLVM.
32
33For information on how to contribute to the LLVM project, please take a look at
34the [Contributing to LLVM](https://llvm.org/docs/Contributing.html) guide.
35
36## Getting in touch
37
38Join the [LLVM Discourse forums](https://discourse.llvm.org/), [Discord
39chat](https://discord.gg/xS7Z362),
40[LLVM Office Hours](https://llvm.org/docs/GettingInvolved.html#office-hours) or
41[Regular sync-ups](https://llvm.org/docs/GettingInvolved.html#online-sync-ups).
42
43The LLVM project has adopted a [code of conduct](https://llvm.org/docs/CodeOfConduct.html) for
44participants to all modes of communication within the project.
45