commit | 1477a67dceb99e3bac01e793ecaf18e36a01f33d | [log] [tgz] |
---|---|---|
author | Gil Rapaport <gil.rapaport@mobileye.com> | Mon Sep 01 15:10:17 2025 +0300 |
committer | GitHub <noreply@github.com> | Mon Sep 01 15:10:17 2025 +0300 |
tree | 12df9b87ee2d3ee096518621576977b9441fae1f | |
parent | 82245fc11d47f8c3d4fd00fe74c104c6321eca4d [diff] |
[mlir][emitc] Isolate expressions from above (#155641) The expression op is currently not isolated from above. This served its original usage as an optional, translation-oriented op, but is becoming less convenient now that expressions appear earlier in the emitc compilation flow and are gaining use as components of other emitc ops. This patch therefore adds the isolated-from-above trait to expressions. Syntactically, the only change is in the expression's signature which now includes the values being used in the expression as arguments and their types. The region's argument's names shadow the used values to keep the def-use relations clear.
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.