LLVM 20.0.0git
|
#include "HexagonVLIWPacketizer.h"
#include "Hexagon.h"
#include "HexagonInstrInfo.h"
#include "HexagonRegisterInfo.h"
#include "HexagonSubtarget.h"
#include "llvm/ADT/BitVector.h"
#include "llvm/ADT/DenseSet.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/Analysis/AliasAnalysis.h"
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/MachineBranchProbabilityInfo.h"
#include "llvm/CodeGen/MachineDominators.h"
#include "llvm/CodeGen/MachineFrameInfo.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineFunctionPass.h"
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/CodeGen/MachineInstrBundle.h"
#include "llvm/CodeGen/MachineLoopInfo.h"
#include "llvm/CodeGen/MachineOperand.h"
#include "llvm/CodeGen/ScheduleDAG.h"
#include "llvm/CodeGen/TargetRegisterInfo.h"
#include "llvm/CodeGen/TargetSubtargetInfo.h"
#include "llvm/IR/DebugLoc.h"
#include "llvm/InitializePasses.h"
#include "llvm/MC/MCInstrDesc.h"
#include "llvm/Pass.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/raw_ostream.h"
#include <cassert>
#include <cstdint>
#include <iterator>
Go to the source code of this file.
Namespaces | |
namespace | llvm |
This is an optimization pass for GlobalISel generic memory operations. | |
Macros | |
#define | DEBUG_TYPE "packets" |
Enumerations | |
enum | PredicateKind { PK_False , PK_True , PK_Unknown } |
Variables | |
static cl::opt< bool > | DisablePacketizer ("disable-packetizer", cl::Hidden, cl::desc("Disable Hexagon packetizer pass")) |
static cl::opt< bool > | Slot1Store ("slot1-store-slot0-load", cl::Hidden, cl::init(true), cl::desc("Allow slot1 store and slot0 load")) |
static cl::opt< bool > | PacketizeVolatiles ("hexagon-packetize-volatiles", cl::Hidden, cl::init(true), cl::desc("Allow non-solo packetization of volatile memory references")) |
static cl::opt< bool > | EnableGenAllInsnClass ("enable-gen-insn", cl::Hidden, cl::desc("Generate all instruction with TC")) |
static cl::opt< bool > | DisableVecDblNVStores ("disable-vecdbl-nv-stores", cl::Hidden, cl::desc("Disable vector double new-value-stores")) |
cl::opt< bool > | ScheduleInlineAsm |
hexagon | packetizer |
hexagon Hexagon | Packetizer |
hexagon Hexagon | false |
#define DEBUG_TYPE "packets" |
Definition at line 56 of file HexagonVLIWPacketizer.cpp.
enum PredicateKind |
Enumerator | |
---|---|
PK_False | |
PK_True | |
PK_Unknown |
Definition at line 559 of file HexagonVLIWPacketizer.cpp.
|
static |
Definition at line 1106 of file HexagonVLIWPacketizer.cpp.
References llvm::MachineFunction::getSubtarget(), llvm::HexagonInstrInfo::getType(), llvm::HexagonSubtarget::hasV60OpsOnly(), llvm::MachineInstr::isBarrier(), llvm::MachineInstr::isBranch(), llvm::MachineInstr::isCall(), llvm::HexagonInstrInfo::isHVXMemWithAIndirect(), llvm::MachineInstr::isInlineAsm(), llvm::HexagonInstrInfo::isNewValueStore(), llvm::HexagonInstrInfo::isPureSlot0(), llvm::HexagonInstrInfo::isRestrictNoSlot1Store(), llvm::MachineInstr::isTerminator(), llvm::MachineInstr::mayStore(), MI, llvm::HexagonII::TypeALU32_2op, llvm::HexagonII::TypeALU32_3op, and llvm::HexagonII::TypeALU32_ADDI.
Referenced by llvm::HexagonPacketizerList::cannotCoexist().
|
static |
Returns true if the instruction modifies a callee-saved register.
Definition at line 349 of file HexagonVLIWPacketizer.cpp.
Referenced by llvm::HexagonPacketizerList::hasControlDependence().
|
static |
Definition at line 629 of file HexagonVLIWPacketizer.cpp.
References assert(), isLoadAbsSet(), and MI.
Referenced by llvm::HexagonPacketizerList::canPromoteToNewValueStore().
|
static |
Definition at line 576 of file HexagonVLIWPacketizer.cpp.
References assert(), llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::count(), llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::insert(), llvm::HexagonInstrInfo::isPostIncrement(), llvm::MachineOperand::isReg(), llvm_unreachable, and MI.
Referenced by llvm::HexagonPacketizerList::canPromoteToNewValueStore().
|
static |
Gets the predicate register of a predicated instruction.
We use the following rule: The first predicate register that is a use is the predicate register of a predicated instruction.
Definition at line 949 of file HexagonVLIWPacketizer.cpp.
References assert(), llvm::HexagonInstrInfo::isPredicated(), llvm_unreachable, and MI.
Referenced by llvm::HexagonPacketizerList::arePredicatesComplements().
|
static |
Returns true if an instruction is predicated on p0 and false if it's predicated on !p0.
Definition at line 567 of file HexagonVLIWPacketizer.cpp.
References llvm::HexagonInstrInfo::isPredicated(), llvm::HexagonInstrInfo::isPredicatedTrue(), MI, PK_False, PK_True, and PK_Unknown.
Referenced by llvm::HexagonPacketizerList::arePredicatesComplements(), and llvm::HexagonPacketizerList::canPromoteToNewValueStore().
|
static |
Definition at line 610 of file HexagonVLIWPacketizer.cpp.
References MI.
Referenced by llvm::HexagonPacketizerList::canPromoteToNewValueStore().
|
static |
Definition at line 148 of file HexagonVLIWPacketizer.cpp.
References llvm::MachineInstr::operands(), llvm::MachineInstr::readsRegister(), and TRI.
Referenced by llvm::HexagonPacketizerList::unpacketizeSoloInstrs().
INITIALIZE_PASS_BEGIN | ( | HexagonPacketizer | , |
"hexagon-packetizer" | , | ||
"Hexagon Packetizer" | , | ||
false | , | ||
false | |||
) |
|
static |
Definition at line 344 of file HexagonVLIWPacketizer.cpp.
References MI.
Referenced by llvm::HexagonPacketizerList::hasControlDependence().
|
static |
Definition at line 332 of file HexagonVLIWPacketizer.cpp.
References MI.
Referenced by llvm::HexagonPacketizerList::isLegalToPacketizeTogether().
|
static |
Definition at line 836 of file HexagonVLIWPacketizer.cpp.
References I.
Referenced by llvm::HexagonPacketizerList::canPromoteToDotNew().
|
static |
Definition at line 615 of file HexagonVLIWPacketizer.cpp.
References MI.
Referenced by llvm::HexagonPacketizerList::canPromoteToNewValueStore(), and getAbsSetOperand().
|
static |
Definition at line 327 of file HexagonVLIWPacketizer.cpp.
References llvm::SDep::Anti, llvm::SDep::Data, and llvm::SDep::Output.
Referenced by llvm::HexagonPacketizerList::isLegalToPacketizeTogether().
|
static |
Definition at line 336 of file HexagonVLIWPacketizer.cpp.
References MI.
Referenced by llvm::HexagonPacketizerList::isSoloInstruction().
|
static |
Definition at line 1195 of file HexagonVLIWPacketizer.cpp.
References MI.
Referenced by llvm::HexagonPacketizerList::hasDualStoreDependence().
|
static |
Definition at line 162 of file HexagonVLIWPacketizer.cpp.
References assert(), B, Before, llvm::MachineInstr::BundledPred, llvm::MachineInstr::BundledSucc, llvm::MachineInstrBundleIterator< Ty, IsReverse >::getInstrIterator(), I, llvm::MachineInstr::isBundledWithSucc(), MI, Size, and llvm::MachineInstr::unbundleFromPred().
Referenced by llvm::HexagonPacketizerList::unpacketizeSoloInstrs().
|
static |
|
static |
Referenced by llvm::HexagonPacketizerList::canPromoteToDotNew().
|
static |
hexagon Hexagon false |
Definition at line 132 of file HexagonVLIWPacketizer.cpp.
hexagon packetizer |
Definition at line 131 of file HexagonVLIWPacketizer.cpp.
hexagon Hexagon Packetizer |
Definition at line 132 of file HexagonVLIWPacketizer.cpp.
|
static |
Referenced by llvm::HexagonPacketizerList::isLegalToPacketizeTogether().
|
static |
Referenced by llvm::HexagonPacketizerList::isLegalToPacketizeTogether().