mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
Summary: This patch renames functions that takes or returns alignment as log2, this patch will help with the transition to llvm::Align. The renaming makes it explicit that we deal with log(alignment) instead of a power of two alignment. A few renames uncovered dubious assignments: - `MirParser`/`MirPrinter` was expecting powers of two but `MachineFunction` and `MachineBasicBlock` were using deal with log2(align). This patch fixes it and updates the documentation. - `MachineBlockPlacement` exposes two flags (`align-all-blocks` and `align-all-nofallthru-blocks`) supposedly interpreted as power of two alignments, internally these values are interpreted as log2(align). This patch updates the documentation, - `MachineFunctionexposes` exposes `align-all-functions` also interpreted as power of two alignment, internally this value is interpreted as log2(align). This patch updates the documentation, Reviewers: lattner, thegameg, courbet Subscribers: dschuff, arsenm, jyknight, dylanmckay, sdardis, nemanjai, jvesely, nhaehnle, javed.absar, hiraditya, kbarton, fedor.sergeev, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, MaskRay, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, dexonsmith, PkmX, jocewei, jsji, Jim, s.egerton, llvm-commits, courbet Tags: #llvm Differential Revision: https://reviews.llvm.org/D65945 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@371045 91177308-0d34-0410-b5e6-96231b3b80d8
63 lines
1.9 KiB
C++
63 lines
1.9 KiB
C++
//===- ARCMachineFunctionInfo.h - ARC machine function info -----*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file declares ARC-specific per-machine-function information.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_ARC_ARCMACHINEFUNCTIONINFO_H
|
|
#define LLVM_LIB_TARGET_ARC_ARCMACHINEFUNCTIONINFO_H
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
#include <vector>
|
|
|
|
namespace llvm {
|
|
|
|
/// ARCFunctionInfo - This class is derived from MachineFunction private
|
|
/// ARC target-specific information for each MachineFunction.
|
|
class ARCFunctionInfo : public MachineFunctionInfo {
|
|
virtual void anchor();
|
|
bool ReturnStackOffsetSet;
|
|
int VarArgsFrameIndex;
|
|
unsigned ReturnStackOffset;
|
|
|
|
public:
|
|
ARCFunctionInfo()
|
|
: ReturnStackOffsetSet(false), VarArgsFrameIndex(0),
|
|
ReturnStackOffset(-1U), MaxCallStackReq(0) {}
|
|
|
|
explicit ARCFunctionInfo(MachineFunction &MF)
|
|
: ReturnStackOffsetSet(false), VarArgsFrameIndex(0),
|
|
ReturnStackOffset(-1U), MaxCallStackReq(0) {
|
|
// Functions are 4-byte (2**2) aligned.
|
|
MF.setLogAlignment(2);
|
|
}
|
|
|
|
~ARCFunctionInfo() {}
|
|
|
|
void setVarArgsFrameIndex(int off) { VarArgsFrameIndex = off; }
|
|
int getVarArgsFrameIndex() const { return VarArgsFrameIndex; }
|
|
|
|
void setReturnStackOffset(unsigned value) {
|
|
assert(!ReturnStackOffsetSet && "Return stack offset set twice");
|
|
ReturnStackOffset = value;
|
|
ReturnStackOffsetSet = true;
|
|
}
|
|
|
|
unsigned getReturnStackOffset() const {
|
|
assert(ReturnStackOffsetSet && "Return stack offset not set");
|
|
return ReturnStackOffset;
|
|
}
|
|
|
|
unsigned MaxCallStackReq;
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_LIB_TARGET_ARC_ARCMACHINEFUNCTIONINFO_H
|