LLVM 22.0.0git
|
#include "AArch64.h"
#include "AArch64MachineFunctionInfo.h"
#include "llvm/ADT/SmallSet.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/MachineFunctionPass.h"
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/CodeGen/TargetRegisterInfo.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/raw_ostream.h"
Go to the source code of this file.
Classes | |
struct | LOHInfo |
State tracked per register. More... |
Macros | |
#define | DEBUG_TYPE "aarch64-collect-loh" |
#define | AARCH64_COLLECT_LOH_NAME "AArch64 Collect Linker Optimization Hint (LOH)" |
Functions | |
STATISTIC (NumADRPSimpleCandidate, "Number of simplifiable ADRP dominate by another") | |
STATISTIC (NumADDToSTR, "Number of simplifiable STR reachable by ADD") | |
STATISTIC (NumLDRToSTR, "Number of simplifiable STR reachable by LDR") | |
STATISTIC (NumADDToLDR, "Number of simplifiable LDR reachable by ADD") | |
STATISTIC (NumLDRToLDR, "Number of simplifiable LDR reachable by LDR") | |
STATISTIC (NumADRPToLDR, "Number of simplifiable LDR reachable by ADRP") | |
STATISTIC (NumADRSimpleCandidate, "Number of simplifiable ADRP + ADD") | |
INITIALIZE_PASS (AArch64CollectLOH, "aarch64-collect-loh", AARCH64_COLLECT_LOH_NAME, false, false) static bool canAddBePartOfLOH(const MachineInstr &MI) | |
static bool | canDefBePartOfLOH (const MachineInstr &MI) |
Answer the following question: Can Def be one of the definition involved in a part of a LOH? | |
static bool | isCandidateStore (const MachineInstr &MI, const MachineOperand &MO) |
Check whether the given instruction can the end of a LOH chain involving a store. | |
static bool | isCandidateLoad (const MachineInstr &MI) |
Check whether the given instruction can be the end of a LOH chain involving a load. | |
static bool | supportLoadFromLiteral (const MachineInstr &MI) |
Check whether the given instruction can load a literal. | |
static bool | areInstructionsConsecutive (const MachineInstr *First, const MachineInstr *Second) |
Returns true if there are no non-debug instructions between First and Second . | |
static int | mapRegToGPRIndex (MCRegister Reg) |
Map register number to index from 0-30. | |
static void | handleUse (const MachineInstr &MI, const MachineOperand &MO, LOHInfo &Info) |
Update state Info given MI uses the tracked register. | |
static void | handleClobber (LOHInfo &Info) |
Update state Info given the tracked register is clobbered. | |
static bool | handleMiddleInst (const MachineInstr &MI, LOHInfo &DefInfo, LOHInfo &OpInfo) |
Update state Info given that MI is possibly the middle instruction of an LOH involving 3 instructions. | |
static void | handleADRP (const MachineInstr &MI, AArch64FunctionInfo &AFI, LOHInfo &Info, LOHInfo *LOHInfos) |
Update state when seeing and ADRP instruction. | |
static void | handleRegMaskClobber (const uint32_t *RegMask, MCPhysReg Reg, LOHInfo *LOHInfos) |
static void | handleNormalInst (const MachineInstr &MI, LOHInfo *LOHInfos) |
Variables | |
static const unsigned | N_GPR_REGS = 31 |
Number of GPR registers tracked by mapRegToGPRIndex() |
#define AARCH64_COLLECT_LOH_NAME "AArch64 Collect Linker Optimization Hint (LOH)" |
Definition at line 124 of file AArch64CollectLOH.cpp.
Referenced by INITIALIZE_PASS().
#define DEBUG_TYPE "aarch64-collect-loh" |
Definition at line 113 of file AArch64CollectLOH.cpp.
|
static |
Returns true
if there are no non-debug instructions between First
and Second
.
Definition at line 252 of file AArch64CollectLOH.cpp.
References llvm::First, llvm::ilist_node_impl< OptionsT >::getIterator(), and llvm::next_nodbg().
Referenced by handleADRP().
|
static |
Answer the following question: Can Def be one of the definition involved in a part of a LOH?
Definition at line 168 of file AArch64CollectLOH.cpp.
References MI, llvm::MachineOperand::MO_GlobalAddress, and llvm::AArch64II::MO_GOT.
|
static |
Update state when seeing and ADRP instruction.
Definition at line 391 of file AArch64CollectLOH.cpp.
References llvm::AArch64FunctionInfo::addLOHDirective(), areInstructionsConsecutive(), llvm::dbgs(), llvm::MachineInstr::getOperand(), llvm::MachineOperand::getReg(), handleClobber(), Info, LLVM_DEBUG, llvm_unreachable, mapRegToGPRIndex(), llvm::MCLOH_AdrpAdd, llvm::MCLOH_AdrpAddLdr, llvm::MCLOH_AdrpAddStr, llvm::MCLOH_AdrpAdrp, llvm::MCLOH_AdrpLdr, llvm::MCLOH_AdrpLdrGot, llvm::MCLOH_AdrpLdrGotLdr, llvm::MCLOH_AdrpLdrGotStr, MI, LOHInfo::MultiUsers, LOHInfo::OneUser, OpIdx, and supportLoadFromLiteral().
|
static |
Update state Info
given the tracked register is clobbered.
Definition at line 334 of file AArch64CollectLOH.cpp.
References Info.
Referenced by handleADRP(), handleMiddleInst(), handleNormalInst(), and handleRegMaskClobber().
|
static |
Update state Info
given that MI
is possibly the middle instruction of an LOH involving 3 instructions.
Definition at line 343 of file AArch64CollectLOH.cpp.
References assert(), handleClobber(), LOHInfo::IsCandidate, LOHInfo::LastADRP, llvm::MCLOH_AdrpAddLdr, llvm::MCLOH_AdrpAddStr, llvm::MCLOH_AdrpLdr, llvm::MCLOH_AdrpLdrGotLdr, llvm::MCLOH_AdrpLdrGotStr, MI, llvm::AArch64II::MO_GOT, and LOHInfo::OneUser.
|
static |
Definition at line 502 of file AArch64CollectLOH.cpp.
References handleClobber(), handleRegMaskClobber(), handleUse(), llvm::SmallSet< T, N, C >::insert(), mapRegToGPRIndex(), MI, and Reg.
Definition at line 493 of file AArch64CollectLOH.cpp.
References llvm::MachineOperand::clobbersPhysReg(), handleClobber(), mapRegToGPRIndex(), and Reg.
Referenced by handleNormalInst().
|
static |
Update state Info
given MI
uses the tracked register.
Definition at line 298 of file AArch64CollectLOH.cpp.
References const, handleUse(), if(), Info, isCandidateLoad(), isCandidateStore(), llvm::MCLOH_AdrpAddStr, llvm::MCLOH_AdrpLdr, MI, and llvm::AArch64II::MO_GOT.
Referenced by handleNormalInst(), and handleUse().
INITIALIZE_PASS | ( | AArch64CollectLOH | , |
"aarch64-collect-loh" | , | ||
AARCH64_COLLECT_LOH_NAME | , | ||
false | , | ||
false | ) const & |
Definition at line 150 of file AArch64CollectLOH.cpp.
References AARCH64_COLLECT_LOH_NAME, const, and MI.
|
static |
Check whether the given instruction can be the end of a LOH chain involving a load.
Definition at line 215 of file AArch64CollectLOH.cpp.
References MI, and llvm::AArch64II::MO_GOT.
Referenced by handleUse().
|
static |
Check whether the given instruction can the end of a LOH chain involving a store.
Definition at line 191 of file AArch64CollectLOH.cpp.
References llvm::MachineOperand::getOperandNo(), and MI.
Referenced by handleUse().
|
static |
Map register number to index from 0-30.
Definition at line 264 of file AArch64CollectLOH.cpp.
References N_GPR_REGS, and Reg.
Referenced by handleADRP(), handleNormalInst(), and handleRegMaskClobber().
STATISTIC | ( | NumADDToLDR | , |
"Number of simplifiable LDR reachable by ADD" | ) |
STATISTIC | ( | NumADDToSTR | , |
"Number of simplifiable STR reachable by ADD" | ) |
STATISTIC | ( | NumADRPSimpleCandidate | , |
"Number of simplifiable ADRP dominate by another" | ) |
STATISTIC | ( | NumADRPToLDR | , |
"Number of simplifiable LDR reachable by ADRP" | ) |
STATISTIC | ( | NumADRSimpleCandidate | , |
"Number of simplifiable ADRP + ADD" | ) |
STATISTIC | ( | NumLDRToLDR | , |
"Number of simplifiable LDR reachable by LDR" | ) |
STATISTIC | ( | NumLDRToSTR | , |
"Number of simplifiable STR reachable by LDR" | ) |
|
static |
Check whether the given instruction can load a literal.
Definition at line 236 of file AArch64CollectLOH.cpp.
References MI.
Referenced by handleADRP().
Number of GPR registers tracked by mapRegToGPRIndex()
Definition at line 262 of file AArch64CollectLOH.cpp.
Referenced by mapRegToGPRIndex().