mirror of
https://github.com/opnsense/src.git
synced 2026-06-12 02:00:31 -04:00
all of the features in the current working draft of the upcoming C++ standard, provisionally named C++1y. The code generator's performance is greatly increased, and the loop auto-vectorizer is now enabled at -Os and -O2 in addition to -O3. The PowerPC backend has made several major improvements to code generation quality and compile time, and the X86, SPARC, ARM32, Aarch64 and SystemZ backends have all seen major feature work. Release notes for llvm and clang can be found here: <http://llvm.org/releases/3.4/docs/ReleaseNotes.html> <http://llvm.org/releases/3.4/tools/clang/docs/ReleaseNotes.html> MFC after: 1 month
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
//===-- SystemZMCInstLower.h - Lower MachineInstr to MCInst ----*- C++ -*--===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_SYSTEMZMCINSTLOWER_H
|
|
#define LLVM_SYSTEMZMCINSTLOWER_H
|
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
#include "llvm/Support/DataTypes.h"
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
namespace llvm {
|
|
class MCInst;
|
|
class MCOperand;
|
|
class MachineInstr;
|
|
class MachineOperand;
|
|
class Mangler;
|
|
class SystemZAsmPrinter;
|
|
|
|
class LLVM_LIBRARY_VISIBILITY SystemZMCInstLower {
|
|
MCContext &Ctx;
|
|
SystemZAsmPrinter &AsmPrinter;
|
|
|
|
public:
|
|
SystemZMCInstLower(MCContext &ctx, SystemZAsmPrinter &asmPrinter);
|
|
|
|
// Lower MachineInstr MI to MCInst OutMI.
|
|
void lower(const MachineInstr *MI, MCInst &OutMI) const;
|
|
|
|
// Return an MCOperand for MO.
|
|
MCOperand lowerOperand(const MachineOperand& MO) const;
|
|
|
|
// Return an MCExpr for symbolic operand MO with variant kind Kind.
|
|
const MCExpr *getExpr(const MachineOperand &MO,
|
|
MCSymbolRefExpr::VariantKind Kind) const;
|
|
};
|
|
} // end namespace llvm
|
|
|
|
#endif
|