commit | 028e425f86ccff44aa521c2e2ac428dbda2c13d4 | [log] [tgz] |
---|---|---|
author | Cinhi Young <cyanoxygen2725@gmail.com> | Wed Apr 03 10:14:02 2024 +0800 |
committer | Tom Stellard <tstellar@redhat.com> | Tue Apr 16 17:07:04 2024 -0700 |
tree | 62d3b42112e6d57a176330e21f02026c408db84d | |
parent | e3c832b37b0a7b97eb16eaff2dda747093a858e2 [diff] |
[MIPS] Fix the opcode of max.fmt and mina.fmt (#85609) - The opcode of the mina.fmt and max.fmt is documented wrong, the object code compiled from the same assembly with LLVM behaves differently than one compiled with GCC and Binutils. - Modify the opcodes to match Binutils. The actual opcodes are as follows: {5,3} | bits {2,0} of func | ... | 100 | 101 | 110 | 111 -----+-----+-----+-----+-----+----- 010 | ... | min | mina | max | maxa (cherry picked from commit 8b859c6e4a8e9ab9969582267bbdc04ed6bfa535)
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.