2017-10-11 06:33:29 +08:00
|
|
|
//===- MachineFunction.cpp ------------------------------------------------===//
|
2004-09-06 02:41:35 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// 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
|
2004-09-06 02:41:35 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-09-06 02:41:35 +08:00
|
|
|
//
|
2002-10-28 09:16:38 +08:00
|
|
|
// Collect native machine code information for a function. This allows
|
|
|
|
// target-specific information about the generated code to be stored with each
|
|
|
|
// function.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2002-02-03 15:54:50 +08:00
|
|
|
|
2012-01-27 09:47:28 +08:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2017-10-11 06:33:29 +08:00
|
|
|
#include "llvm/ADT/BitVector.h"
|
|
|
|
#include "llvm/ADT/DenseMap.h"
|
|
|
|
#include "llvm/ADT/DenseSet.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
|
|
|
#include "llvm/ADT/SmallString.h"
|
2017-10-11 06:33:29 +08:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/Analysis/ConstantFolding.h"
|
2015-12-03 07:06:39 +08:00
|
|
|
#include "llvm/Analysis/EHPersonalities.h"
|
2017-10-11 06:33:29 +08:00
|
|
|
#include "llvm/CodeGen/MachineBasicBlock.h"
|
2007-12-31 12:13:23 +08:00
|
|
|
#include "llvm/CodeGen/MachineConstantPool.h"
|
2002-12-29 05:08:26 +08:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2007-12-31 12:13:23 +08:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2006-04-23 02:53:45 +08:00
|
|
|
#include "llvm/CodeGen/MachineJumpTableInfo.h"
|
2017-10-11 06:33:29 +08:00
|
|
|
#include "llvm/CodeGen/MachineMemOperand.h"
|
2010-04-05 13:49:50 +08:00
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
2007-12-31 12:13:23 +08:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2015-08-12 07:09:45 +08:00
|
|
|
#include "llvm/CodeGen/PseudoSourceValue.h"
|
2017-11-17 09:07:10 +08:00
|
|
|
#include "llvm/CodeGen/TargetFrameLowering.h"
|
|
|
|
#include "llvm/CodeGen/TargetLowering.h"
|
|
|
|
#include "llvm/CodeGen/TargetRegisterInfo.h"
|
|
|
|
#include "llvm/CodeGen/TargetSubtargetInfo.h"
|
2018-06-19 08:26:39 +08:00
|
|
|
#include "llvm/CodeGen/WasmEHFuncInfo.h"
|
2015-11-18 05:10:25 +08:00
|
|
|
#include "llvm/CodeGen/WinEHFuncInfo.h"
|
2018-04-30 22:59:11 +08:00
|
|
|
#include "llvm/Config/llvm-config.h"
|
2017-10-11 06:33:29 +08:00
|
|
|
#include "llvm/IR/Attributes.h"
|
|
|
|
#include "llvm/IR/BasicBlock.h"
|
|
|
|
#include "llvm/IR/Constant.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2017-10-11 06:33:29 +08:00
|
|
|
#include "llvm/IR/DerivedTypes.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/Function.h"
|
2017-10-11 06:33:29 +08:00
|
|
|
#include "llvm/IR/GlobalValue.h"
|
|
|
|
#include "llvm/IR/Instruction.h"
|
|
|
|
#include "llvm/IR/Instructions.h"
|
|
|
|
#include "llvm/IR/Metadata.h"
|
2015-07-08 02:20:57 +08:00
|
|
|
#include "llvm/IR/Module.h"
|
2015-06-27 06:04:20 +08:00
|
|
|
#include "llvm/IR/ModuleSlotTracker.h"
|
2017-10-11 06:33:29 +08:00
|
|
|
#include "llvm/IR/Value.h"
|
2010-01-26 13:58:28 +08:00
|
|
|
#include "llvm/MC/MCContext.h"
|
2017-10-11 06:33:29 +08:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
|
|
|
#include "llvm/MC/SectionKind.h"
|
|
|
|
#include "llvm/Support/Casting.h"
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
#include "llvm/Support/DOTGraphTraits.h"
|
2010-01-05 07:39:17 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
2017-10-11 06:33:29 +08:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2006-10-04 04:19:23 +08:00
|
|
|
#include "llvm/Support/GraphWriter.h"
|
2008-08-24 06:23:09 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2017-10-11 06:33:29 +08:00
|
|
|
#include <algorithm>
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <iterator>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2003-12-20 17:17:07 +08:00
|
|
|
using namespace llvm;
|
2002-02-03 15:54:50 +08:00
|
|
|
|
2014-04-22 06:55:11 +08:00
|
|
|
#define DEBUG_TYPE "codegen"
|
|
|
|
|
2015-12-30 02:18:07 +08:00
|
|
|
static cl::opt<unsigned>
|
2017-10-11 06:33:29 +08:00
|
|
|
AlignAllFunctions("align-all-functions",
|
|
|
|
cl::desc("Force the alignment of all functions."),
|
|
|
|
cl::init(0), cl::Hidden);
|
2015-12-30 02:18:07 +08:00
|
|
|
|
2016-08-20 06:31:45 +08:00
|
|
|
static const char *getPropertyName(MachineFunctionProperties::Property Prop) {
|
2017-10-11 06:33:29 +08:00
|
|
|
using P = MachineFunctionProperties::Property;
|
|
|
|
|
2016-08-20 06:31:45 +08:00
|
|
|
switch(Prop) {
|
2016-08-27 07:49:01 +08:00
|
|
|
case P::FailedISel: return "FailedISel";
|
2016-08-20 06:31:45 +08:00
|
|
|
case P::IsSSA: return "IsSSA";
|
|
|
|
case P::Legalized: return "Legalized";
|
2016-08-24 05:19:49 +08:00
|
|
|
case P::NoPHIs: return "NoPHIs";
|
2016-08-25 09:27:13 +08:00
|
|
|
case P::NoVRegs: return "NoVRegs";
|
2016-08-20 06:31:45 +08:00
|
|
|
case P::RegBankSelected: return "RegBankSelected";
|
|
|
|
case P::Selected: return "Selected";
|
|
|
|
case P::TracksLiveness: return "TracksLiveness";
|
|
|
|
}
|
2016-08-20 07:03:28 +08:00
|
|
|
llvm_unreachable("Invalid machine function property");
|
2016-08-20 06:31:45 +08:00
|
|
|
}
|
|
|
|
|
2018-09-21 07:01:56 +08:00
|
|
|
// Pin the vtable to this file.
|
|
|
|
void MachineFunction::Delegate::anchor() {}
|
|
|
|
|
2016-08-20 06:31:45 +08:00
|
|
|
void MachineFunctionProperties::print(raw_ostream &OS) const {
|
|
|
|
const char *Separator = "";
|
|
|
|
for (BitVector::size_type I = 0; I < Properties.size(); ++I) {
|
|
|
|
if (!Properties[I])
|
2016-04-22 06:19:24 +08:00
|
|
|
continue;
|
2016-08-20 06:31:45 +08:00
|
|
|
OS << Separator << getPropertyName(static_cast<Property>(I));
|
|
|
|
Separator = ", ";
|
2016-03-30 04:28:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-26 12:35:26 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-10-28 09:12:41 +08:00
|
|
|
// MachineFunction implementation
|
2010-01-26 12:35:26 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-01-30 02:41:25 +08:00
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
// Out-of-line virtual method.
|
2017-10-11 06:33:29 +08:00
|
|
|
MachineFunctionInfo::~MachineFunctionInfo() = default;
|
2009-09-16 06:44:26 +08:00
|
|
|
|
2016-08-31 02:40:47 +08:00
|
|
|
void ilist_alloc_traits<MachineBasicBlock>::deleteNode(MachineBasicBlock *MBB) {
|
2008-07-08 07:14:23 +08:00
|
|
|
MBB->getParent()->DeleteMachineBasicBlock(MBB);
|
2004-05-24 14:11:51 +08:00
|
|
|
}
|
2002-10-28 09:12:41 +08:00
|
|
|
|
2016-04-10 07:34:42 +08:00
|
|
|
static inline unsigned getFnStackAlignment(const TargetSubtargetInfo *STI,
|
2017-12-16 06:22:46 +08:00
|
|
|
const Function &F) {
|
|
|
|
if (F.hasFnAttribute(Attribute::StackAlignment))
|
|
|
|
return F.getFnStackAlignment();
|
2016-04-10 07:34:42 +08:00
|
|
|
return STI->getFrameLowering()->getStackAlignment();
|
|
|
|
}
|
|
|
|
|
2018-11-06 07:49:14 +08:00
|
|
|
MachineFunction::MachineFunction(const Function &F,
|
|
|
|
const LLVMTargetMachine &Target,
|
2017-12-16 06:22:46 +08:00
|
|
|
const TargetSubtargetInfo &STI,
|
2014-10-15 02:53:16 +08:00
|
|
|
unsigned FunctionNum, MachineModuleInfo &mmi)
|
2017-12-16 06:22:46 +08:00
|
|
|
: F(F), Target(Target), STI(&STI), Ctx(mmi.getContext()), MMI(mmi) {
|
2016-08-27 06:32:53 +08:00
|
|
|
FunctionNumber = FunctionNum;
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
2019-01-16 08:40:37 +08:00
|
|
|
void MachineFunction::handleInsertion(MachineInstr &MI) {
|
2018-09-21 07:01:56 +08:00
|
|
|
if (TheDelegate)
|
|
|
|
TheDelegate->MF_HandleInsertion(MI);
|
|
|
|
}
|
|
|
|
|
2019-01-16 08:40:37 +08:00
|
|
|
void MachineFunction::handleRemoval(MachineInstr &MI) {
|
2018-09-21 07:01:56 +08:00
|
|
|
if (TheDelegate)
|
|
|
|
TheDelegate->MF_HandleRemoval(MI);
|
|
|
|
}
|
|
|
|
|
2016-08-27 06:32:53 +08:00
|
|
|
void MachineFunction::init() {
|
2016-04-12 07:32:13 +08:00
|
|
|
// Assume the function starts in SSA form with correct liveness.
|
2016-04-05 02:03:29 +08:00
|
|
|
Properties.set(MachineFunctionProperties::Property::IsSSA);
|
2016-04-12 07:32:13 +08:00
|
|
|
Properties.set(MachineFunctionProperties::Property::TracksLiveness);
|
2014-10-08 15:51:41 +08:00
|
|
|
if (STI->getRegisterInfo())
|
2014-08-12 16:00:56 +08:00
|
|
|
RegInfo = new (Allocator) MachineRegisterInfo(this);
|
2008-10-13 20:37:16 +08:00
|
|
|
else
|
2014-04-14 08:51:57 +08:00
|
|
|
RegInfo = nullptr;
|
2013-06-18 04:41:25 +08:00
|
|
|
|
2014-04-14 08:51:57 +08:00
|
|
|
MFInfo = nullptr;
|
2016-04-12 01:54:03 +08:00
|
|
|
// We can realign the stack if the target supports it and the user hasn't
|
|
|
|
// explicitly asked us not to.
|
|
|
|
bool CanRealignSP = STI->getFrameLowering()->isStackRealignable() &&
|
2017-12-16 06:22:46 +08:00
|
|
|
!F.hasFnAttribute("no-realign-stack");
|
2016-04-12 01:54:03 +08:00
|
|
|
FrameInfo = new (Allocator) MachineFrameInfo(
|
2017-12-16 06:22:46 +08:00
|
|
|
getFnStackAlignment(STI, F), /*StackRealignable=*/CanRealignSP,
|
2016-04-12 01:54:03 +08:00
|
|
|
/*ForceRealign=*/CanRealignSP &&
|
2017-12-16 06:22:46 +08:00
|
|
|
F.hasFnAttribute(Attribute::StackAlignment));
|
2013-06-18 04:41:25 +08:00
|
|
|
|
2017-12-16 06:22:46 +08:00
|
|
|
if (F.hasFnAttribute(Attribute::StackAlignment))
|
|
|
|
FrameInfo->ensureMaxAlignment(F.getFnStackAlignment());
|
2013-06-18 04:41:25 +08:00
|
|
|
|
2015-07-08 02:20:57 +08:00
|
|
|
ConstantPool = new (Allocator) MachineConstantPool(getDataLayout());
|
2014-10-08 15:51:41 +08:00
|
|
|
Alignment = STI->getTargetLowering()->getMinFunctionAlignment();
|
2013-06-18 04:41:25 +08:00
|
|
|
|
2017-12-16 06:22:46 +08:00
|
|
|
// FIXME: Shouldn't use pref alignment if explicit alignment is set on F.
|
2015-08-04 23:49:57 +08:00
|
|
|
// FIXME: Use Function::optForSize().
|
2017-12-16 06:22:46 +08:00
|
|
|
if (!F.hasFnAttribute(Attribute::OptimizeForSize))
|
2014-10-08 15:51:41 +08:00
|
|
|
Alignment = std::max(Alignment,
|
|
|
|
STI->getTargetLowering()->getPrefFunctionAlignment());
|
2013-06-18 04:41:25 +08:00
|
|
|
|
2015-12-30 02:18:07 +08:00
|
|
|
if (AlignAllFunctions)
|
|
|
|
Alignment = AlignAllFunctions;
|
|
|
|
|
2014-04-14 08:51:57 +08:00
|
|
|
JumpTableInfo = nullptr;
|
2015-08-17 18:58:03 +08:00
|
|
|
|
2015-11-18 05:10:25 +08:00
|
|
|
if (isFuncletEHPersonality(classifyEHPersonality(
|
2017-12-16 06:22:46 +08:00
|
|
|
F.hasPersonalityFn() ? F.getPersonalityFn() : nullptr))) {
|
2015-11-18 05:10:25 +08:00
|
|
|
WinEHInfo = new (Allocator) WinEHFuncInfo();
|
|
|
|
}
|
|
|
|
|
2018-06-19 08:26:39 +08:00
|
|
|
if (isScopedEHPersonality(classifyEHPersonality(
|
|
|
|
F.hasPersonalityFn() ? F.getPersonalityFn() : nullptr))) {
|
|
|
|
WasmEHInfo = new (Allocator) WasmEHFuncInfo();
|
|
|
|
}
|
|
|
|
|
2016-08-27 06:32:53 +08:00
|
|
|
assert(Target.isCompatibleDataLayout(getDataLayout()) &&
|
2015-08-17 18:58:03 +08:00
|
|
|
"Can't create a MachineFunction using a Module with a "
|
|
|
|
"Target-incompatible DataLayout attached\n");
|
|
|
|
|
2017-09-15 04:53:51 +08:00
|
|
|
PSVManager =
|
|
|
|
llvm::make_unique<PseudoSourceValueManager>(*(getSubtarget().
|
|
|
|
getInstrInfo()));
|
2002-12-25 13:03:22 +08:00
|
|
|
}
|
|
|
|
|
2004-09-06 02:41:35 +08:00
|
|
|
MachineFunction::~MachineFunction() {
|
2016-08-27 06:32:53 +08:00
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachineFunction::clear() {
|
|
|
|
Properties.reset();
|
2013-01-05 13:05:51 +08:00
|
|
|
// Don't call destructors on MachineInstr and MachineOperand. All of their
|
|
|
|
// memory comes from the BumpPtrAllocator which is about to be purged.
|
|
|
|
//
|
|
|
|
// Do call MachineBasicBlock destructors, it contains std::vectors.
|
|
|
|
for (iterator I = begin(), E = end(); I != E; I = BasicBlocks.erase(I))
|
|
|
|
I->Insts.clearAndLeakNodesUnsafely();
|
2018-05-01 02:58:57 +08:00
|
|
|
MBBNumbering.clear();
|
2013-01-05 13:05:51 +08:00
|
|
|
|
2008-07-08 07:14:23 +08:00
|
|
|
InstructionRecycler.clear(Allocator);
|
2013-01-05 13:00:09 +08:00
|
|
|
OperandRecycler.clear(Allocator);
|
2008-07-08 07:14:23 +08:00
|
|
|
BasicBlockRecycler.clear(Allocator);
|
2017-09-06 04:14:58 +08:00
|
|
|
CodeViewAnnotations.clear();
|
2017-03-10 05:12:06 +08:00
|
|
|
VariableDbgInfos.clear();
|
2009-06-25 08:32:48 +08:00
|
|
|
if (RegInfo) {
|
|
|
|
RegInfo->~MachineRegisterInfo();
|
|
|
|
Allocator.Deallocate(RegInfo);
|
|
|
|
}
|
2008-07-08 07:14:23 +08:00
|
|
|
if (MFInfo) {
|
2009-06-25 08:32:48 +08:00
|
|
|
MFInfo->~MachineFunctionInfo();
|
|
|
|
Allocator.Deallocate(MFInfo);
|
2008-07-08 07:14:23 +08:00
|
|
|
}
|
2012-06-20 07:37:57 +08:00
|
|
|
|
|
|
|
FrameInfo->~MachineFrameInfo();
|
|
|
|
Allocator.Deallocate(FrameInfo);
|
|
|
|
|
|
|
|
ConstantPool->~MachineConstantPool();
|
|
|
|
Allocator.Deallocate(ConstantPool);
|
|
|
|
|
2010-01-26 07:26:13 +08:00
|
|
|
if (JumpTableInfo) {
|
|
|
|
JumpTableInfo->~MachineJumpTableInfo();
|
|
|
|
Allocator.Deallocate(JumpTableInfo);
|
|
|
|
}
|
2015-11-18 05:10:25 +08:00
|
|
|
|
|
|
|
if (WinEHInfo) {
|
|
|
|
WinEHInfo->~WinEHFuncInfo();
|
|
|
|
Allocator.Deallocate(WinEHInfo);
|
|
|
|
}
|
2018-09-29 04:54:04 +08:00
|
|
|
|
|
|
|
if (WasmEHInfo) {
|
|
|
|
WasmEHInfo->~WasmEHFuncInfo();
|
|
|
|
Allocator.Deallocate(WasmEHInfo);
|
|
|
|
}
|
2002-10-30 08:48:05 +08:00
|
|
|
}
|
|
|
|
|
2015-07-08 02:20:57 +08:00
|
|
|
const DataLayout &MachineFunction::getDataLayout() const {
|
2017-12-16 06:22:46 +08:00
|
|
|
return F.getParent()->getDataLayout();
|
2015-07-08 02:20:57 +08:00
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Get the JumpTableInfo for this function.
|
|
|
|
/// If it does not already exist, allocate one.
|
2010-01-26 07:26:13 +08:00
|
|
|
MachineJumpTableInfo *MachineFunction::
|
|
|
|
getOrCreateJumpTableInfo(unsigned EntryKind) {
|
|
|
|
if (JumpTableInfo) return JumpTableInfo;
|
2012-06-20 07:37:57 +08:00
|
|
|
|
2010-03-19 02:49:47 +08:00
|
|
|
JumpTableInfo = new (Allocator)
|
2010-01-26 07:26:13 +08:00
|
|
|
MachineJumpTableInfo((MachineJumpTableInfo::JTEntryKind)EntryKind);
|
|
|
|
return JumpTableInfo;
|
|
|
|
}
|
2006-10-04 03:18:57 +08:00
|
|
|
|
2014-04-11 06:58:43 +08:00
|
|
|
/// Should we be emitting segmented stack stuff for the function
|
2016-01-20 06:31:12 +08:00
|
|
|
bool MachineFunction::shouldSplitStack() const {
|
2017-12-16 06:22:58 +08:00
|
|
|
return getFunction().hasFnAttribute("split-stack");
|
2014-04-11 06:58:43 +08:00
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// This discards all of the MachineBasicBlock numbers and recomputes them.
|
|
|
|
/// This guarantees that the MBB numbers are sequential, dense, and match the
|
|
|
|
/// ordering of the blocks within the function. If a specific MachineBasicBlock
|
|
|
|
/// is specified, only that block and those after it are renumbered.
|
2006-10-04 03:18:57 +08:00
|
|
|
void MachineFunction::RenumberBlocks(MachineBasicBlock *MBB) {
|
|
|
|
if (empty()) { MBBNumbering.clear(); return; }
|
|
|
|
MachineFunction::iterator MBBI, E = end();
|
2014-04-14 08:51:57 +08:00
|
|
|
if (MBB == nullptr)
|
2006-10-04 03:18:57 +08:00
|
|
|
MBBI = begin();
|
|
|
|
else
|
2015-10-10 03:40:45 +08:00
|
|
|
MBBI = MBB->getIterator();
|
2012-06-20 07:37:57 +08:00
|
|
|
|
2006-10-04 03:18:57 +08:00
|
|
|
// Figure out the block number this should have.
|
|
|
|
unsigned BlockNo = 0;
|
2006-10-04 04:19:23 +08:00
|
|
|
if (MBBI != begin())
|
2014-03-02 20:27:27 +08:00
|
|
|
BlockNo = std::prev(MBBI)->getNumber() + 1;
|
2012-06-20 07:37:57 +08:00
|
|
|
|
2006-10-04 03:18:57 +08:00
|
|
|
for (; MBBI != E; ++MBBI, ++BlockNo) {
|
|
|
|
if (MBBI->getNumber() != (int)BlockNo) {
|
|
|
|
// Remove use of the old number.
|
|
|
|
if (MBBI->getNumber() != -1) {
|
|
|
|
assert(MBBNumbering[MBBI->getNumber()] == &*MBBI &&
|
|
|
|
"MBB number mismatch!");
|
2014-04-14 08:51:57 +08:00
|
|
|
MBBNumbering[MBBI->getNumber()] = nullptr;
|
2006-10-04 03:18:57 +08:00
|
|
|
}
|
2012-06-20 07:37:57 +08:00
|
|
|
|
2006-10-04 03:18:57 +08:00
|
|
|
// If BlockNo is already taken, set that block's number to -1.
|
|
|
|
if (MBBNumbering[BlockNo])
|
|
|
|
MBBNumbering[BlockNo]->setNumber(-1);
|
|
|
|
|
2015-10-10 03:40:45 +08:00
|
|
|
MBBNumbering[BlockNo] = &*MBBI;
|
2006-10-04 03:18:57 +08:00
|
|
|
MBBI->setNumber(BlockNo);
|
|
|
|
}
|
2012-06-20 07:37:57 +08:00
|
|
|
}
|
2006-10-04 03:18:57 +08:00
|
|
|
|
|
|
|
// Okay, all the blocks are renumbered. If we have compactified the block
|
|
|
|
// numbering, shrink MBBNumbering now.
|
|
|
|
assert(BlockNo <= MBBNumbering.size() && "Mismatch!");
|
|
|
|
MBBNumbering.resize(BlockNo);
|
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Allocate a new MachineInstr. Use this instead of `new MachineInstr'.
|
2016-06-12 23:39:02 +08:00
|
|
|
MachineInstr *MachineFunction::CreateMachineInstr(const MCInstrDesc &MCID,
|
|
|
|
const DebugLoc &DL,
|
|
|
|
bool NoImp) {
|
2008-07-08 07:14:23 +08:00
|
|
|
return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
|
2012-12-21 06:53:58 +08:00
|
|
|
MachineInstr(*this, MCID, DL, NoImp);
|
2008-07-08 07:14:23 +08:00
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Create a new MachineInstr which is a copy of the 'Orig' instruction,
|
|
|
|
/// identical in all ways except the instruction has no parent, prev, or next.
|
2008-07-08 07:14:23 +08:00
|
|
|
MachineInstr *
|
|
|
|
MachineFunction::CloneMachineInstr(const MachineInstr *Orig) {
|
|
|
|
return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
|
|
|
|
MachineInstr(*this, *Orig);
|
|
|
|
}
|
|
|
|
|
2017-08-23 07:56:30 +08:00
|
|
|
MachineInstr &MachineFunction::CloneMachineInstrBundle(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator InsertBefore, const MachineInstr &Orig) {
|
|
|
|
MachineInstr *FirstClone = nullptr;
|
|
|
|
MachineBasicBlock::const_instr_iterator I = Orig.getIterator();
|
2017-10-11 06:33:29 +08:00
|
|
|
while (true) {
|
2017-08-23 07:56:30 +08:00
|
|
|
MachineInstr *Cloned = CloneMachineInstr(&*I);
|
|
|
|
MBB.insert(InsertBefore, Cloned);
|
|
|
|
if (FirstClone == nullptr) {
|
|
|
|
FirstClone = Cloned;
|
|
|
|
} else {
|
|
|
|
Cloned->bundleWithPred();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!I->isBundledWithSucc())
|
|
|
|
break;
|
|
|
|
++I;
|
|
|
|
}
|
|
|
|
return *FirstClone;
|
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Delete the given MachineInstr.
|
2008-07-08 07:14:23 +08:00
|
|
|
///
|
2013-01-05 13:05:51 +08:00
|
|
|
/// This function also serves as the MachineInstr destructor - the real
|
|
|
|
/// ~MachineInstr() destructor must be empty.
|
2008-07-08 07:14:23 +08:00
|
|
|
void
|
|
|
|
MachineFunction::DeleteMachineInstr(MachineInstr *MI) {
|
2013-01-05 13:00:09 +08:00
|
|
|
// Strip it for parts. The operand array and the MI object itself are
|
|
|
|
// independently recyclable.
|
|
|
|
if (MI->Operands)
|
|
|
|
deallocateOperandArray(MI->CapOperands, MI->Operands);
|
2013-01-05 13:05:51 +08:00
|
|
|
// Don't call ~MachineInstr() which must be trivial anyway because
|
|
|
|
// ~MachineFunction drops whole lists of MachineInstrs wihout calling their
|
|
|
|
// destructors.
|
2008-07-08 07:14:23 +08:00
|
|
|
InstructionRecycler.Deallocate(Allocator, MI);
|
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Allocate a new MachineBasicBlock. Use this instead of
|
|
|
|
/// `new MachineBasicBlock'.
|
2008-07-08 07:14:23 +08:00
|
|
|
MachineBasicBlock *
|
|
|
|
MachineFunction::CreateMachineBasicBlock(const BasicBlock *bb) {
|
|
|
|
return new (BasicBlockRecycler.Allocate<MachineBasicBlock>(Allocator))
|
|
|
|
MachineBasicBlock(*this, bb);
|
|
|
|
}
|
2006-10-04 03:18:57 +08:00
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Delete the given MachineBasicBlock.
|
2008-07-08 07:14:23 +08:00
|
|
|
void
|
|
|
|
MachineFunction::DeleteMachineBasicBlock(MachineBasicBlock *MBB) {
|
|
|
|
assert(MBB->getParent() == this && "MBB parent mismatch!");
|
|
|
|
MBB->~MachineBasicBlock();
|
|
|
|
BasicBlockRecycler.Deallocate(Allocator, MBB);
|
|
|
|
}
|
|
|
|
|
2016-07-16 02:26:59 +08:00
|
|
|
MachineMemOperand *MachineFunction::getMachineMemOperand(
|
|
|
|
MachinePointerInfo PtrInfo, MachineMemOperand::Flags f, uint64_t s,
|
2016-10-16 06:01:18 +08:00
|
|
|
unsigned base_alignment, const AAMDNodes &AAInfo, const MDNode *Ranges,
|
2017-07-12 06:23:00 +08:00
|
|
|
SyncScope::ID SSID, AtomicOrdering Ordering,
|
2016-10-16 06:01:18 +08:00
|
|
|
AtomicOrdering FailureOrdering) {
|
2016-07-15 01:07:44 +08:00
|
|
|
return new (Allocator)
|
2016-10-16 06:01:18 +08:00
|
|
|
MachineMemOperand(PtrInfo, f, s, base_alignment, AAInfo, Ranges,
|
2017-07-12 06:23:00 +08:00
|
|
|
SSID, Ordering, FailureOrdering);
|
2009-09-26 04:36:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
MachineMemOperand *
|
|
|
|
MachineFunction::getMachineMemOperand(const MachineMemOperand *MMO,
|
|
|
|
int64_t Offset, uint64_t Size) {
|
2019-01-31 09:49:58 +08:00
|
|
|
const MachinePointerInfo &PtrInfo = MMO->getPointerInfo();
|
|
|
|
|
|
|
|
// If there is no pointer value, the offset isn't tracked so we need to adjust
|
|
|
|
// the base alignment.
|
|
|
|
unsigned Align = PtrInfo.V.isNull()
|
|
|
|
? MinAlign(MMO->getBaseAlignment(), Offset)
|
|
|
|
: MMO->getBaseAlignment();
|
|
|
|
|
2010-03-19 02:49:47 +08:00
|
|
|
return new (Allocator)
|
2019-01-31 09:49:58 +08:00
|
|
|
MachineMemOperand(PtrInfo.getWithOffset(Offset), MMO->getFlags(), Size,
|
|
|
|
Align, AAMDNodes(), nullptr, MMO->getSyncScopeID(),
|
|
|
|
MMO->getOrdering(), MMO->getFailureOrdering());
|
2009-09-26 04:36:54 +08:00
|
|
|
}
|
|
|
|
|
2017-08-01 11:32:15 +08:00
|
|
|
MachineMemOperand *
|
|
|
|
MachineFunction::getMachineMemOperand(const MachineMemOperand *MMO,
|
|
|
|
const AAMDNodes &AAInfo) {
|
|
|
|
MachinePointerInfo MPI = MMO->getValue() ?
|
|
|
|
MachinePointerInfo(MMO->getValue(), MMO->getOffset()) :
|
|
|
|
MachinePointerInfo(MMO->getPseudoValue(), MMO->getOffset());
|
|
|
|
|
|
|
|
return new (Allocator)
|
|
|
|
MachineMemOperand(MPI, MMO->getFlags(), MMO->getSize(),
|
|
|
|
MMO->getBaseAlignment(), AAInfo,
|
|
|
|
MMO->getRanges(), MMO->getSyncScopeID(),
|
|
|
|
MMO->getOrdering(), MMO->getFailureOrdering());
|
|
|
|
}
|
|
|
|
|
2018-08-17 05:30:05 +08:00
|
|
|
MachineInstr::ExtraInfo *
|
|
|
|
MachineFunction::createMIExtraInfo(ArrayRef<MachineMemOperand *> MMOs,
|
|
|
|
MCSymbol *PreInstrSymbol,
|
|
|
|
MCSymbol *PostInstrSymbol) {
|
|
|
|
return MachineInstr::ExtraInfo::create(Allocator, MMOs, PreInstrSymbol,
|
|
|
|
PostInstrSymbol);
|
2009-10-10 02:10:05 +08:00
|
|
|
}
|
|
|
|
|
2015-07-22 00:59:53 +08:00
|
|
|
const char *MachineFunction::createExternalSymbolName(StringRef Name) {
|
|
|
|
char *Dest = Allocator.Allocate<char>(Name.size() + 1);
|
2018-11-17 09:44:25 +08:00
|
|
|
llvm::copy(Name, Dest);
|
2015-07-22 00:59:53 +08:00
|
|
|
Dest[Name.size()] = 0;
|
|
|
|
return Dest;
|
|
|
|
}
|
|
|
|
|
2018-07-26 08:27:47 +08:00
|
|
|
uint32_t *MachineFunction::allocateRegMask() {
|
|
|
|
unsigned NumRegs = getSubtarget().getRegisterInfo()->getNumRegs();
|
|
|
|
unsigned Size = MachineOperand::getRegMaskSize(NumRegs);
|
|
|
|
uint32_t *Mask = Allocator.Allocate<uint32_t>(Size);
|
|
|
|
memset(Mask, 0, Size * sizeof(Mask[0]));
|
|
|
|
return Mask;
|
|
|
|
}
|
|
|
|
|
2017-10-15 22:32:27 +08:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2016-01-30 04:50:44 +08:00
|
|
|
LLVM_DUMP_METHOD void MachineFunction::dump() const {
|
2010-01-05 07:39:17 +08:00
|
|
|
print(dbgs());
|
2008-07-08 07:14:23 +08:00
|
|
|
}
|
2012-09-07 03:06:06 +08:00
|
|
|
#endif
|
2002-10-30 08:48:05 +08:00
|
|
|
|
2012-08-22 14:07:19 +08:00
|
|
|
StringRef MachineFunction::getName() const {
|
2017-12-16 06:22:58 +08:00
|
|
|
return getFunction().getName();
|
2012-08-22 14:07:19 +08:00
|
|
|
}
|
|
|
|
|
2016-05-06 02:14:43 +08:00
|
|
|
void MachineFunction::print(raw_ostream &OS, const SlotIndexes *Indexes) const {
|
2012-08-23 01:18:53 +08:00
|
|
|
OS << "# Machine code for function " << getName() << ": ";
|
2016-03-30 04:28:20 +08:00
|
|
|
getProperties().print(OS);
|
2016-09-29 09:47:42 +08:00
|
|
|
OS << '\n';
|
2002-12-29 04:37:16 +08:00
|
|
|
|
|
|
|
// Print Frame Information
|
2008-07-08 07:14:23 +08:00
|
|
|
FrameInfo->print(*this, OS);
|
2012-06-20 07:37:57 +08:00
|
|
|
|
2006-04-23 02:53:45 +08:00
|
|
|
// Print JumpTable Information
|
2010-01-26 07:26:13 +08:00
|
|
|
if (JumpTableInfo)
|
|
|
|
JumpTableInfo->print(OS);
|
2003-01-13 08:23:03 +08:00
|
|
|
|
|
|
|
// Print Constant Pool
|
2009-08-23 09:12:47 +08:00
|
|
|
ConstantPool->print(OS);
|
2012-06-20 07:37:57 +08:00
|
|
|
|
2014-08-05 10:39:49 +08:00
|
|
|
const TargetRegisterInfo *TRI = getSubtarget().getRegisterInfo();
|
2012-06-20 07:37:57 +08:00
|
|
|
|
2008-10-13 20:37:16 +08:00
|
|
|
if (RegInfo && !RegInfo->livein_empty()) {
|
2009-11-01 04:19:03 +08:00
|
|
|
OS << "Function Live Ins: ";
|
2007-12-31 12:13:23 +08:00
|
|
|
for (MachineRegisterInfo::livein_iterator
|
|
|
|
I = RegInfo->livein_begin(), E = RegInfo->livein_end(); I != E; ++I) {
|
2017-11-28 20:42:37 +08:00
|
|
|
OS << printReg(I->first, TRI);
|
2006-05-16 13:55:30 +08:00
|
|
|
if (I->second)
|
2017-11-28 20:42:37 +08:00
|
|
|
OS << " in " << printReg(I->second, TRI);
|
2014-03-02 20:27:27 +08:00
|
|
|
if (std::next(I) != E)
|
2009-11-01 04:19:03 +08:00
|
|
|
OS << ", ";
|
2005-09-01 06:34:59 +08:00
|
|
|
}
|
2009-08-23 09:12:47 +08:00
|
|
|
OS << '\n';
|
2005-09-01 06:34:59 +08:00
|
|
|
}
|
2012-06-20 07:37:57 +08:00
|
|
|
|
2017-12-16 06:22:58 +08:00
|
|
|
ModuleSlotTracker MST(getFunction().getParent());
|
|
|
|
MST.incorporateFunction(getFunction());
|
2014-05-01 02:29:51 +08:00
|
|
|
for (const auto &BB : *this) {
|
2009-11-01 04:19:03 +08:00
|
|
|
OS << '\n';
|
2018-02-26 23:23:42 +08:00
|
|
|
// If we print the whole function, print it at its most verbose level.
|
|
|
|
BB.print(OS, MST, Indexes, /*IsStandalone=*/true);
|
2009-11-01 04:19:03 +08:00
|
|
|
}
|
2004-03-30 05:58:31 +08:00
|
|
|
|
2012-08-23 01:18:53 +08:00
|
|
|
OS << "\n# End machine code for function " << getName() << ".\n\n";
|
2002-10-30 08:48:05 +08:00
|
|
|
}
|
|
|
|
|
2004-07-08 08:47:58 +08:00
|
|
|
namespace llvm {
|
2017-10-11 06:33:29 +08:00
|
|
|
|
2004-09-06 02:41:35 +08:00
|
|
|
template<>
|
|
|
|
struct DOTGraphTraits<const MachineFunction*> : public DefaultDOTGraphTraits {
|
2017-10-11 06:33:29 +08:00
|
|
|
DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {}
|
2009-11-30 20:38:13 +08:00
|
|
|
|
2004-09-06 02:41:35 +08:00
|
|
|
static std::string getGraphName(const MachineFunction *F) {
|
2015-03-28 01:51:30 +08:00
|
|
|
return ("CFG for '" + F->getName() + "' function").str();
|
2004-09-06 02:41:35 +08:00
|
|
|
}
|
2004-07-08 08:47:58 +08:00
|
|
|
|
2009-11-30 20:38:47 +08:00
|
|
|
std::string getNodeLabel(const MachineBasicBlock *Node,
|
|
|
|
const MachineFunction *Graph) {
|
2009-08-23 11:13:20 +08:00
|
|
|
std::string OutStr;
|
|
|
|
{
|
|
|
|
raw_string_ostream OSS(OutStr);
|
2010-10-30 09:26:19 +08:00
|
|
|
|
|
|
|
if (isSimple()) {
|
2017-12-05 01:18:51 +08:00
|
|
|
OSS << printMBBReference(*Node);
|
2010-10-30 09:26:19 +08:00
|
|
|
if (const BasicBlock *BB = Node->getBasicBlock())
|
|
|
|
OSS << ": " << BB->getName();
|
|
|
|
} else
|
2009-08-23 11:13:20 +08:00
|
|
|
Node->print(OSS);
|
2004-09-06 02:41:35 +08:00
|
|
|
}
|
2004-07-08 08:47:58 +08:00
|
|
|
|
2004-09-06 02:41:35 +08:00
|
|
|
if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
|
2004-07-08 08:47:58 +08:00
|
|
|
|
2004-09-06 02:41:35 +08:00
|
|
|
// Process string output to make it nicer...
|
|
|
|
for (unsigned i = 0; i != OutStr.length(); ++i)
|
|
|
|
if (OutStr[i] == '\n') { // Left justify
|
|
|
|
OutStr[i] = '\\';
|
|
|
|
OutStr.insert(OutStr.begin()+i+1, 'l');
|
|
|
|
}
|
|
|
|
return OutStr;
|
|
|
|
}
|
|
|
|
};
|
2017-10-11 06:33:29 +08:00
|
|
|
|
|
|
|
} // end namespace llvm
|
2004-07-08 08:47:58 +08:00
|
|
|
|
|
|
|
void MachineFunction::viewCFG() const
|
|
|
|
{
|
2005-10-12 20:09:05 +08:00
|
|
|
#ifndef NDEBUG
|
2012-08-23 01:18:53 +08:00
|
|
|
ViewGraph(this, "mf" + getName());
|
2006-06-28 00:49:46 +08:00
|
|
|
#else
|
2010-07-08 01:28:45 +08:00
|
|
|
errs() << "MachineFunction::viewCFG is only available in debug builds on "
|
2009-08-23 16:50:52 +08:00
|
|
|
<< "systems with Graphviz or gv!\n";
|
2006-06-28 00:49:46 +08:00
|
|
|
#endif // NDEBUG
|
2004-07-08 08:47:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void MachineFunction::viewCFGOnly() const
|
|
|
|
{
|
2009-06-25 01:37:09 +08:00
|
|
|
#ifndef NDEBUG
|
2012-08-23 01:18:53 +08:00
|
|
|
ViewGraph(this, "mf" + getName(), true);
|
2009-06-25 01:37:09 +08:00
|
|
|
#else
|
2010-07-08 01:28:45 +08:00
|
|
|
errs() << "MachineFunction::viewCFGOnly is only available in debug builds on "
|
2009-08-23 16:50:52 +08:00
|
|
|
<< "systems with Graphviz or gv!\n";
|
2009-06-25 01:37:09 +08:00
|
|
|
#endif // NDEBUG
|
2004-07-08 08:47:58 +08:00
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Add the specified physical register as a live-in value and
|
2009-04-21 02:36:57 +08:00
|
|
|
/// create a corresponding virtual register for it.
|
|
|
|
unsigned MachineFunction::addLiveIn(unsigned PReg,
|
2011-02-22 07:21:26 +08:00
|
|
|
const TargetRegisterClass *RC) {
|
2010-05-25 05:33:37 +08:00
|
|
|
MachineRegisterInfo &MRI = getRegInfo();
|
|
|
|
unsigned VReg = MRI.getLiveInVirtReg(PReg);
|
|
|
|
if (VReg) {
|
2013-12-12 08:15:47 +08:00
|
|
|
const TargetRegisterClass *VRegRC = MRI.getRegClass(VReg);
|
|
|
|
(void)VRegRC;
|
|
|
|
// A physical register can be added several times.
|
|
|
|
// Between two calls, the register class of the related virtual register
|
|
|
|
// may have been constrained to match some operation constraints.
|
|
|
|
// In that case, check that the current register class includes the
|
|
|
|
// physical register and is a sub class of the specified RC.
|
|
|
|
assert((VRegRC == RC || (VRegRC->contains(PReg) &&
|
|
|
|
RC->hasSubClassEq(VRegRC))) &&
|
|
|
|
"Register class mismatch!");
|
2010-05-25 05:33:37 +08:00
|
|
|
return VReg;
|
|
|
|
}
|
|
|
|
VReg = MRI.createVirtualRegister(RC);
|
|
|
|
MRI.addLiveIn(PReg, VReg);
|
2009-04-21 02:36:57 +08:00
|
|
|
return VReg;
|
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Return the MCSymbol for the specified non-empty jump table.
|
2010-06-30 06:34:52 +08:00
|
|
|
/// If isLinkerPrivate is specified, an 'l' label is returned, otherwise a
|
|
|
|
/// normal 'L' label is returned.
|
2014-06-25 20:40:56 +08:00
|
|
|
MCSymbol *MachineFunction::getJTISymbol(unsigned JTI, MCContext &Ctx,
|
2010-06-30 06:34:52 +08:00
|
|
|
bool isLinkerPrivate) const {
|
2015-07-08 02:20:57 +08:00
|
|
|
const DataLayout &DL = getDataLayout();
|
2010-01-26 14:28:43 +08:00
|
|
|
assert(JumpTableInfo && "No jump tables");
|
2010-01-27 18:27:10 +08:00
|
|
|
assert(JTI < JumpTableInfo->getJumpTables().size() && "Invalid JTI!");
|
2012-06-20 07:37:57 +08:00
|
|
|
|
2016-10-01 13:57:55 +08:00
|
|
|
StringRef Prefix = isLinkerPrivate ? DL.getLinkerPrivateGlobalPrefix()
|
|
|
|
: DL.getPrivateGlobalPrefix();
|
2014-06-27 06:52:05 +08:00
|
|
|
SmallString<60> Name;
|
|
|
|
raw_svector_ostream(Name)
|
|
|
|
<< Prefix << "JTI" << getFunctionNumber() << '_' << JTI;
|
2015-05-19 02:43:14 +08:00
|
|
|
return Ctx.getOrCreateSymbol(Name);
|
2010-01-26 14:28:43 +08:00
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Return a function-local symbol to represent the PIC base.
|
2010-11-15 06:48:15 +08:00
|
|
|
MCSymbol *MachineFunction::getPICBaseSymbol() const {
|
2015-07-08 02:20:57 +08:00
|
|
|
const DataLayout &DL = getDataLayout();
|
|
|
|
return Ctx.getOrCreateSymbol(Twine(DL.getPrivateGlobalPrefix()) +
|
|
|
|
Twine(getFunctionNumber()) + "$pb");
|
2010-11-15 06:48:15 +08:00
|
|
|
}
|
2010-01-26 14:28:43 +08:00
|
|
|
|
2016-12-02 03:32:15 +08:00
|
|
|
/// \name Exception Handling
|
|
|
|
/// \{
|
|
|
|
|
|
|
|
LandingPadInfo &
|
|
|
|
MachineFunction::getOrCreateLandingPadInfo(MachineBasicBlock *LandingPad) {
|
|
|
|
unsigned N = LandingPads.size();
|
|
|
|
for (unsigned i = 0; i < N; ++i) {
|
|
|
|
LandingPadInfo &LP = LandingPads[i];
|
|
|
|
if (LP.LandingPadBlock == LandingPad)
|
|
|
|
return LP;
|
|
|
|
}
|
|
|
|
|
|
|
|
LandingPads.push_back(LandingPadInfo(LandingPad));
|
|
|
|
return LandingPads[N];
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachineFunction::addInvoke(MachineBasicBlock *LandingPad,
|
|
|
|
MCSymbol *BeginLabel, MCSymbol *EndLabel) {
|
|
|
|
LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
|
|
|
|
LP.BeginLabels.push_back(BeginLabel);
|
|
|
|
LP.EndLabels.push_back(EndLabel);
|
|
|
|
}
|
|
|
|
|
|
|
|
MCSymbol *MachineFunction::addLandingPad(MachineBasicBlock *LandingPad) {
|
|
|
|
MCSymbol *LandingPadLabel = Ctx.createTempSymbol();
|
|
|
|
LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
|
|
|
|
LP.LandingPadLabel = LandingPadLabel;
|
2018-09-26 03:56:44 +08:00
|
|
|
|
|
|
|
const Instruction *FirstI = LandingPad->getBasicBlock()->getFirstNonPHI();
|
|
|
|
if (const auto *LPI = dyn_cast<LandingPadInst>(FirstI)) {
|
|
|
|
if (const auto *PF =
|
|
|
|
dyn_cast<Function>(F.getPersonalityFn()->stripPointerCasts()))
|
|
|
|
getMMI().addPersonality(PF);
|
|
|
|
|
|
|
|
if (LPI->isCleanup())
|
|
|
|
addCleanup(LandingPad);
|
|
|
|
|
|
|
|
// FIXME: New EH - Add the clauses in reverse order. This isn't 100%
|
2018-09-29 17:22:25 +08:00
|
|
|
// correct, but we need to do it this way because of how the DWARF EH
|
|
|
|
// emitter processes the clauses.
|
2018-09-26 03:56:44 +08:00
|
|
|
for (unsigned I = LPI->getNumClauses(); I != 0; --I) {
|
|
|
|
Value *Val = LPI->getClause(I - 1);
|
|
|
|
if (LPI->isCatch(I - 1)) {
|
|
|
|
addCatchTypeInfo(LandingPad,
|
|
|
|
dyn_cast<GlobalValue>(Val->stripPointerCasts()));
|
|
|
|
} else {
|
|
|
|
// Add filters in a list.
|
|
|
|
auto *CVal = cast<Constant>(Val);
|
|
|
|
SmallVector<const GlobalValue *, 4> FilterList;
|
|
|
|
for (User::op_iterator II = CVal->op_begin(), IE = CVal->op_end();
|
|
|
|
II != IE; ++II)
|
|
|
|
FilterList.push_back(cast<GlobalValue>((*II)->stripPointerCasts()));
|
|
|
|
|
|
|
|
addFilterTypeInfo(LandingPad, FilterList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Reland "[WebAssembly] LSDA info generation"
Summary:
This adds support for LSDA (exception table) generation for wasm EH.
Wasm EH mostly follows the structure of Itanium-style exception tables,
with one exception: a call site table entry in wasm EH corresponds to
not a call site but a landing pad.
In wasm EH, the VM is responsible for stack unwinding. After an
exception occurs and the stack is unwound, the control flow is
transferred to wasm 'catch' instruction by the VM, after which the
personality function is called from the compiler-generated code. (Refer
to WasmEHPrepare pass for more information on this part.)
This patch:
- Changes wasm.landingpad.index intrinsic to take a token argument, to
make this 1:1 match with a catchpad instruction
- Stores landingpad index info and catch type info MachineFunction in
before instruction selection
- Lowers wasm.lsda intrinsic to an MCSymbol pointing to the start of an
exception table
- Adds WasmException class with overridden methods for table generation
- Adds support for LSDA section in Wasm object writer
Reviewers: dschuff, sbc100, rnk
Subscribers: mgorny, jgravelle-google, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D52748
llvm-svn: 345345
2018-10-26 07:55:10 +08:00
|
|
|
} else if (const auto *CPI = dyn_cast<CatchPadInst>(FirstI)) {
|
|
|
|
for (unsigned I = CPI->getNumArgOperands(); I != 0; --I) {
|
|
|
|
Value *TypeInfo = CPI->getArgOperand(I - 1)->stripPointerCasts();
|
|
|
|
addCatchTypeInfo(LandingPad, dyn_cast<GlobalValue>(TypeInfo));
|
|
|
|
}
|
2018-09-26 03:56:44 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
assert(isa<CleanupPadInst>(FirstI) && "Invalid landingpad!");
|
|
|
|
}
|
|
|
|
|
2016-12-02 03:32:15 +08:00
|
|
|
return LandingPadLabel;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachineFunction::addCatchTypeInfo(MachineBasicBlock *LandingPad,
|
|
|
|
ArrayRef<const GlobalValue *> TyInfo) {
|
|
|
|
LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
|
|
|
|
for (unsigned N = TyInfo.size(); N; --N)
|
|
|
|
LP.TypeIds.push_back(getTypeIDFor(TyInfo[N - 1]));
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachineFunction::addFilterTypeInfo(MachineBasicBlock *LandingPad,
|
|
|
|
ArrayRef<const GlobalValue *> TyInfo) {
|
|
|
|
LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
|
|
|
|
std::vector<unsigned> IdsInFilter(TyInfo.size());
|
|
|
|
for (unsigned I = 0, E = TyInfo.size(); I != E; ++I)
|
|
|
|
IdsInFilter[I] = getTypeIDFor(TyInfo[I]);
|
|
|
|
LP.TypeIds.push_back(getFilterIDFor(IdsInFilter));
|
|
|
|
}
|
|
|
|
|
Reland "[WebAssembly] LSDA info generation"
Summary:
This adds support for LSDA (exception table) generation for wasm EH.
Wasm EH mostly follows the structure of Itanium-style exception tables,
with one exception: a call site table entry in wasm EH corresponds to
not a call site but a landing pad.
In wasm EH, the VM is responsible for stack unwinding. After an
exception occurs and the stack is unwound, the control flow is
transferred to wasm 'catch' instruction by the VM, after which the
personality function is called from the compiler-generated code. (Refer
to WasmEHPrepare pass for more information on this part.)
This patch:
- Changes wasm.landingpad.index intrinsic to take a token argument, to
make this 1:1 match with a catchpad instruction
- Stores landingpad index info and catch type info MachineFunction in
before instruction selection
- Lowers wasm.lsda intrinsic to an MCSymbol pointing to the start of an
exception table
- Adds WasmException class with overridden methods for table generation
- Adds support for LSDA section in Wasm object writer
Reviewers: dschuff, sbc100, rnk
Subscribers: mgorny, jgravelle-google, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D52748
llvm-svn: 345345
2018-10-26 07:55:10 +08:00
|
|
|
void MachineFunction::tidyLandingPads(DenseMap<MCSymbol *, uintptr_t> *LPMap,
|
|
|
|
bool TidyIfNoBeginLabels) {
|
2016-12-02 03:32:15 +08:00
|
|
|
for (unsigned i = 0; i != LandingPads.size(); ) {
|
|
|
|
LandingPadInfo &LandingPad = LandingPads[i];
|
|
|
|
if (LandingPad.LandingPadLabel &&
|
|
|
|
!LandingPad.LandingPadLabel->isDefined() &&
|
|
|
|
(!LPMap || (*LPMap)[LandingPad.LandingPadLabel] == 0))
|
|
|
|
LandingPad.LandingPadLabel = nullptr;
|
|
|
|
|
|
|
|
// Special case: we *should* emit LPs with null LP MBB. This indicates
|
|
|
|
// "nounwind" case.
|
|
|
|
if (!LandingPad.LandingPadLabel && LandingPad.LandingPadBlock) {
|
|
|
|
LandingPads.erase(LandingPads.begin() + i);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
Reland "[WebAssembly] LSDA info generation"
Summary:
This adds support for LSDA (exception table) generation for wasm EH.
Wasm EH mostly follows the structure of Itanium-style exception tables,
with one exception: a call site table entry in wasm EH corresponds to
not a call site but a landing pad.
In wasm EH, the VM is responsible for stack unwinding. After an
exception occurs and the stack is unwound, the control flow is
transferred to wasm 'catch' instruction by the VM, after which the
personality function is called from the compiler-generated code. (Refer
to WasmEHPrepare pass for more information on this part.)
This patch:
- Changes wasm.landingpad.index intrinsic to take a token argument, to
make this 1:1 match with a catchpad instruction
- Stores landingpad index info and catch type info MachineFunction in
before instruction selection
- Lowers wasm.lsda intrinsic to an MCSymbol pointing to the start of an
exception table
- Adds WasmException class with overridden methods for table generation
- Adds support for LSDA section in Wasm object writer
Reviewers: dschuff, sbc100, rnk
Subscribers: mgorny, jgravelle-google, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D52748
llvm-svn: 345345
2018-10-26 07:55:10 +08:00
|
|
|
if (TidyIfNoBeginLabels) {
|
|
|
|
for (unsigned j = 0, e = LandingPads[i].BeginLabels.size(); j != e; ++j) {
|
|
|
|
MCSymbol *BeginLabel = LandingPad.BeginLabels[j];
|
|
|
|
MCSymbol *EndLabel = LandingPad.EndLabels[j];
|
|
|
|
if ((BeginLabel->isDefined() || (LPMap && (*LPMap)[BeginLabel] != 0)) &&
|
|
|
|
(EndLabel->isDefined() || (LPMap && (*LPMap)[EndLabel] != 0)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
LandingPad.BeginLabels.erase(LandingPad.BeginLabels.begin() + j);
|
|
|
|
LandingPad.EndLabels.erase(LandingPad.EndLabels.begin() + j);
|
|
|
|
--j;
|
|
|
|
--e;
|
|
|
|
}
|
2016-12-02 03:32:15 +08:00
|
|
|
|
Reland "[WebAssembly] LSDA info generation"
Summary:
This adds support for LSDA (exception table) generation for wasm EH.
Wasm EH mostly follows the structure of Itanium-style exception tables,
with one exception: a call site table entry in wasm EH corresponds to
not a call site but a landing pad.
In wasm EH, the VM is responsible for stack unwinding. After an
exception occurs and the stack is unwound, the control flow is
transferred to wasm 'catch' instruction by the VM, after which the
personality function is called from the compiler-generated code. (Refer
to WasmEHPrepare pass for more information on this part.)
This patch:
- Changes wasm.landingpad.index intrinsic to take a token argument, to
make this 1:1 match with a catchpad instruction
- Stores landingpad index info and catch type info MachineFunction in
before instruction selection
- Lowers wasm.lsda intrinsic to an MCSymbol pointing to the start of an
exception table
- Adds WasmException class with overridden methods for table generation
- Adds support for LSDA section in Wasm object writer
Reviewers: dschuff, sbc100, rnk
Subscribers: mgorny, jgravelle-google, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D52748
llvm-svn: 345345
2018-10-26 07:55:10 +08:00
|
|
|
// Remove landing pads with no try-ranges.
|
|
|
|
if (LandingPads[i].BeginLabels.empty()) {
|
|
|
|
LandingPads.erase(LandingPads.begin() + i);
|
|
|
|
continue;
|
|
|
|
}
|
2016-12-02 03:32:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// If there is no landing pad, ensure that the list of typeids is empty.
|
|
|
|
// If the only typeid is a cleanup, this is the same as having no typeids.
|
|
|
|
if (!LandingPad.LandingPadBlock ||
|
|
|
|
(LandingPad.TypeIds.size() == 1 && !LandingPad.TypeIds[0]))
|
|
|
|
LandingPad.TypeIds.clear();
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachineFunction::addCleanup(MachineBasicBlock *LandingPad) {
|
|
|
|
LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
|
|
|
|
LP.TypeIds.push_back(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachineFunction::addSEHCatchHandler(MachineBasicBlock *LandingPad,
|
|
|
|
const Function *Filter,
|
|
|
|
const BlockAddress *RecoverBA) {
|
|
|
|
LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
|
|
|
|
SEHHandler Handler;
|
|
|
|
Handler.FilterOrFinally = Filter;
|
|
|
|
Handler.RecoverBA = RecoverBA;
|
|
|
|
LP.SEHHandlers.push_back(Handler);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachineFunction::addSEHCleanupHandler(MachineBasicBlock *LandingPad,
|
|
|
|
const Function *Cleanup) {
|
|
|
|
LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad);
|
|
|
|
SEHHandler Handler;
|
|
|
|
Handler.FilterOrFinally = Cleanup;
|
|
|
|
Handler.RecoverBA = nullptr;
|
|
|
|
LP.SEHHandlers.push_back(Handler);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachineFunction::setCallSiteLandingPad(MCSymbol *Sym,
|
|
|
|
ArrayRef<unsigned> Sites) {
|
|
|
|
LPadToCallSiteMap[Sym].append(Sites.begin(), Sites.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned MachineFunction::getTypeIDFor(const GlobalValue *TI) {
|
|
|
|
for (unsigned i = 0, N = TypeInfos.size(); i != N; ++i)
|
|
|
|
if (TypeInfos[i] == TI) return i + 1;
|
|
|
|
|
|
|
|
TypeInfos.push_back(TI);
|
|
|
|
return TypeInfos.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
int MachineFunction::getFilterIDFor(std::vector<unsigned> &TyIds) {
|
|
|
|
// If the new filter coincides with the tail of an existing filter, then
|
|
|
|
// re-use the existing filter. Folding filters more than this requires
|
|
|
|
// re-ordering filters and/or their elements - probably not worth it.
|
|
|
|
for (std::vector<unsigned>::iterator I = FilterEnds.begin(),
|
|
|
|
E = FilterEnds.end(); I != E; ++I) {
|
|
|
|
unsigned i = *I, j = TyIds.size();
|
|
|
|
|
|
|
|
while (i && j)
|
|
|
|
if (FilterIds[--i] != TyIds[--j])
|
|
|
|
goto try_next;
|
|
|
|
|
|
|
|
if (!j)
|
|
|
|
// The new filter coincides with range [i, end) of the existing filter.
|
|
|
|
return -(1 + i);
|
|
|
|
|
|
|
|
try_next:;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the new filter.
|
|
|
|
int FilterID = -(1 + FilterIds.size());
|
|
|
|
FilterIds.reserve(FilterIds.size() + TyIds.size() + 1);
|
|
|
|
FilterIds.insert(FilterIds.end(), TyIds.begin(), TyIds.end());
|
|
|
|
FilterEnds.push_back(FilterIds.size());
|
|
|
|
FilterIds.push_back(0); // terminator
|
|
|
|
return FilterID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \}
|
|
|
|
|
2006-04-23 02:53:45 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MachineJumpTableInfo implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Return the size of each entry in the jump table.
|
2012-10-09 00:38:25 +08:00
|
|
|
unsigned MachineJumpTableInfo::getEntrySize(const DataLayout &TD) const {
|
2010-01-26 07:26:13 +08:00
|
|
|
// The size of a jump table entry is 4 bytes unless the entry is just the
|
|
|
|
// address of a block, in which case it is the pointer size.
|
|
|
|
switch (getEntryKind()) {
|
|
|
|
case MachineJumpTableInfo::EK_BlockAddress:
|
Revert the majority of the next patch in the address space series:
r165941: Resubmit the changes to llvm core to update the functions to
support different pointer sizes on a per address space basis.
Despite this commit log, this change primarily changed stuff outside of
VMCore, and those changes do not carry any tests for correctness (or
even plausibility), and we have consistently found questionable or flat
out incorrect cases in these changes. Most of them are probably correct,
but we need to devise a system that makes it more clear when we have
handled the address space concerns correctly, and ideally each pass that
gets updated would receive an accompanying test case that exercises that
pass specificaly w.r.t. alternate address spaces.
However, from this commit, I have retained the new C API entry points.
Those were an orthogonal change that probably should have been split
apart, but they seem entirely good.
In several places the changes were very obvious cleanups with no actual
multiple address space code added; these I have not reverted when
I spotted them.
In a few other places there were merge conflicts due to a cleaner
solution being implemented later, often not using address spaces at all.
In those cases, I've preserved the new code which isn't address space
dependent.
This is part of my ongoing effort to clean out the partial address space
code which carries high risk and low test coverage, and not likely to be
finished before the 3.2 release looms closer. Duncan and I would both
like to see the above issues addressed before we return to these
changes.
llvm-svn: 167222
2012-11-01 17:14:31 +08:00
|
|
|
return TD.getPointerSize();
|
2012-02-03 12:33:00 +08:00
|
|
|
case MachineJumpTableInfo::EK_GPRel64BlockAddress:
|
|
|
|
return 8;
|
2010-01-26 07:26:13 +08:00
|
|
|
case MachineJumpTableInfo::EK_GPRel32BlockAddress:
|
|
|
|
case MachineJumpTableInfo::EK_LabelDifference32:
|
2010-01-26 12:05:28 +08:00
|
|
|
case MachineJumpTableInfo::EK_Custom32:
|
2010-01-26 07:26:13 +08:00
|
|
|
return 4;
|
2010-03-11 22:58:16 +08:00
|
|
|
case MachineJumpTableInfo::EK_Inline:
|
|
|
|
return 0;
|
2010-01-26 07:26:13 +08:00
|
|
|
}
|
2012-02-06 16:17:43 +08:00
|
|
|
llvm_unreachable("Unknown jump table encoding!");
|
2010-01-26 07:26:13 +08:00
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Return the alignment of each entry in the jump table.
|
2012-10-09 00:38:25 +08:00
|
|
|
unsigned MachineJumpTableInfo::getEntryAlignment(const DataLayout &TD) const {
|
2010-01-26 07:26:13 +08:00
|
|
|
// The alignment of a jump table entry is the alignment of int32 unless the
|
|
|
|
// entry is just the address of a block, in which case it is the pointer
|
|
|
|
// alignment.
|
|
|
|
switch (getEntryKind()) {
|
|
|
|
case MachineJumpTableInfo::EK_BlockAddress:
|
2017-11-15 14:17:32 +08:00
|
|
|
return TD.getPointerABIAlignment(0);
|
2012-02-03 12:33:00 +08:00
|
|
|
case MachineJumpTableInfo::EK_GPRel64BlockAddress:
|
|
|
|
return TD.getABIIntegerTypeAlignment(64);
|
2010-01-26 07:26:13 +08:00
|
|
|
case MachineJumpTableInfo::EK_GPRel32BlockAddress:
|
|
|
|
case MachineJumpTableInfo::EK_LabelDifference32:
|
2010-01-26 12:05:28 +08:00
|
|
|
case MachineJumpTableInfo::EK_Custom32:
|
2010-01-26 07:26:13 +08:00
|
|
|
return TD.getABIIntegerTypeAlignment(32);
|
2010-03-11 22:58:16 +08:00
|
|
|
case MachineJumpTableInfo::EK_Inline:
|
|
|
|
return 1;
|
2010-01-26 07:26:13 +08:00
|
|
|
}
|
2012-02-06 16:17:43 +08:00
|
|
|
llvm_unreachable("Unknown jump table encoding!");
|
2010-01-26 07:26:13 +08:00
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Create a new jump table entry in the jump table info.
|
Fix pr6543: svn r88806 changed MachineJumpTableInfo::getJumpTableIndex() to
always create a new jump table. The intention was to avoid merging jump
tables in SelectionDAGBuilder, and to wait for the branch folding pass to
merge tables. Unfortunately, the same getJumpTableIndex() method is also
used to merge tables in branch folding, so as a result of this change
branch tables are never merged. Worse, the branch folding code is expecting
getJumpTableIndex to always return the index of an existing table, but with
this change, it never does so. In at least some cases, e.g., pr6543, this
creates references to non-existent tables.
I've fixed the problem by adding a new createJumpTableIndex function, which
will always create a new table, and I've changed getJumpTableIndex to only
look at existing tables.
llvm-svn: 98845
2010-03-19 02:42:41 +08:00
|
|
|
unsigned MachineJumpTableInfo::createJumpTableIndex(
|
2006-10-29 02:17:09 +08:00
|
|
|
const std::vector<MachineBasicBlock*> &DestBBs) {
|
2006-10-29 02:11:20 +08:00
|
|
|
assert(!DestBBs.empty() && "Cannot create an empty jump table!");
|
2006-04-23 02:53:45 +08:00
|
|
|
JumpTables.push_back(MachineJumpTableEntry(DestBBs));
|
|
|
|
return JumpTables.size()-1;
|
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// If Old is the target of any jump tables, update the jump tables to branch
|
|
|
|
/// to New instead.
|
2010-01-26 13:58:28 +08:00
|
|
|
bool MachineJumpTableInfo::ReplaceMBBInJumpTables(MachineBasicBlock *Old,
|
|
|
|
MachineBasicBlock *New) {
|
2009-04-15 09:18:49 +08:00
|
|
|
assert(Old != New && "Not making a change?");
|
|
|
|
bool MadeChange = false;
|
2009-11-15 04:09:13 +08:00
|
|
|
for (size_t i = 0, e = JumpTables.size(); i != e; ++i)
|
|
|
|
ReplaceMBBInJumpTable(i, Old, New);
|
|
|
|
return MadeChange;
|
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// If Old is a target of the jump tables, update the jump table to branch to
|
|
|
|
/// New instead.
|
2010-01-26 13:58:28 +08:00
|
|
|
bool MachineJumpTableInfo::ReplaceMBBInJumpTable(unsigned Idx,
|
|
|
|
MachineBasicBlock *Old,
|
|
|
|
MachineBasicBlock *New) {
|
2009-11-15 04:09:13 +08:00
|
|
|
assert(Old != New && "Not making a change?");
|
|
|
|
bool MadeChange = false;
|
|
|
|
MachineJumpTableEntry &JTE = JumpTables[Idx];
|
|
|
|
for (size_t j = 0, e = JTE.MBBs.size(); j != e; ++j)
|
|
|
|
if (JTE.MBBs[j] == Old) {
|
|
|
|
JTE.MBBs[j] = New;
|
|
|
|
MadeChange = true;
|
|
|
|
}
|
2009-04-15 09:18:49 +08:00
|
|
|
return MadeChange;
|
|
|
|
}
|
2006-04-23 02:53:45 +08:00
|
|
|
|
2009-08-23 09:12:47 +08:00
|
|
|
void MachineJumpTableInfo::print(raw_ostream &OS) const {
|
2009-11-01 04:19:03 +08:00
|
|
|
if (JumpTables.empty()) return;
|
|
|
|
|
|
|
|
OS << "Jump Tables:\n";
|
|
|
|
|
2006-04-23 02:53:45 +08:00
|
|
|
for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) {
|
2017-12-13 18:30:59 +08:00
|
|
|
OS << printJumpTableEntryReference(i) << ": ";
|
2009-11-01 04:19:03 +08:00
|
|
|
for (unsigned j = 0, f = JumpTables[i].MBBs.size(); j != f; ++j)
|
2017-12-05 01:18:51 +08:00
|
|
|
OS << ' ' << printMBBReference(*JumpTables[i].MBBs[j]);
|
2006-04-23 02:53:45 +08:00
|
|
|
}
|
2009-11-01 04:19:03 +08:00
|
|
|
|
|
|
|
OS << '\n';
|
2006-04-23 02:53:45 +08:00
|
|
|
}
|
|
|
|
|
2017-10-15 22:32:27 +08:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2016-01-30 04:50:44 +08:00
|
|
|
LLVM_DUMP_METHOD void MachineJumpTableInfo::dump() const { print(dbgs()); }
|
2012-09-07 03:06:06 +08:00
|
|
|
#endif
|
2006-04-23 02:53:45 +08:00
|
|
|
|
2017-12-13 18:30:59 +08:00
|
|
|
Printable llvm::printJumpTableEntryReference(unsigned Idx) {
|
|
|
|
return Printable([Idx](raw_ostream &OS) { OS << "%jump-table." << Idx; });
|
|
|
|
}
|
|
|
|
|
2003-01-13 08:23:03 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MachineConstantPool implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-10-11 06:33:29 +08:00
|
|
|
void MachineConstantPoolValue::anchor() {}
|
2011-12-20 10:50:00 +08:00
|
|
|
|
2011-07-18 12:54:35 +08:00
|
|
|
Type *MachineConstantPoolEntry::getType() const {
|
2006-09-14 13:50:57 +08:00
|
|
|
if (isMachineConstantPoolEntry())
|
2009-07-22 07:34:23 +08:00
|
|
|
return Val.MachineCPVal->getType();
|
2006-09-14 13:50:57 +08:00
|
|
|
return Val.ConstVal->getType();
|
|
|
|
}
|
|
|
|
|
2015-11-17 08:51:23 +08:00
|
|
|
bool MachineConstantPoolEntry::needsRelocation() const {
|
2009-07-22 07:34:23 +08:00
|
|
|
if (isMachineConstantPoolEntry())
|
2015-11-17 08:51:23 +08:00
|
|
|
return true;
|
|
|
|
return Val.ConstVal->needsRelocation();
|
2009-07-22 07:34:23 +08:00
|
|
|
}
|
|
|
|
|
2014-07-15 06:06:29 +08:00
|
|
|
SectionKind
|
|
|
|
MachineConstantPoolEntry::getSectionKind(const DataLayout *DL) const {
|
2015-11-17 08:51:23 +08:00
|
|
|
if (needsRelocation())
|
|
|
|
return SectionKind::getReadOnlyWithRel();
|
|
|
|
switch (DL->getTypeAllocSize(getType())) {
|
|
|
|
case 4:
|
|
|
|
return SectionKind::getMergeableConst4();
|
|
|
|
case 8:
|
|
|
|
return SectionKind::getMergeableConst8();
|
|
|
|
case 16:
|
|
|
|
return SectionKind::getMergeableConst16();
|
2016-02-23 06:23:11 +08:00
|
|
|
case 32:
|
|
|
|
return SectionKind::getMergeableConst32();
|
2014-07-15 06:06:29 +08:00
|
|
|
default:
|
2015-11-17 08:51:23 +08:00
|
|
|
return SectionKind::getReadOnly();
|
2014-07-15 06:06:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-13 05:00:35 +08:00
|
|
|
MachineConstantPool::~MachineConstantPool() {
|
2016-09-26 15:26:24 +08:00
|
|
|
// A constant may be a member of both Constants and MachineCPVsSharingEntries,
|
|
|
|
// so keep track of which we've deleted to avoid double deletions.
|
|
|
|
DenseSet<MachineConstantPoolValue*> Deleted;
|
2006-09-13 05:00:35 +08:00
|
|
|
for (unsigned i = 0, e = Constants.size(); i != e; ++i)
|
2016-09-26 15:26:24 +08:00
|
|
|
if (Constants[i].isMachineConstantPoolEntry()) {
|
|
|
|
Deleted.insert(Constants[i].Val.MachineCPVal);
|
2006-09-13 05:00:35 +08:00
|
|
|
delete Constants[i].Val.MachineCPVal;
|
2016-09-26 15:26:24 +08:00
|
|
|
}
|
2011-02-22 16:54:30 +08:00
|
|
|
for (DenseSet<MachineConstantPoolValue*>::iterator I =
|
|
|
|
MachineCPVsSharingEntries.begin(), E = MachineCPVsSharingEntries.end();
|
2016-09-26 15:26:24 +08:00
|
|
|
I != E; ++I) {
|
|
|
|
if (Deleted.count(*I) == 0)
|
|
|
|
delete *I;
|
|
|
|
}
|
2006-09-13 05:00:35 +08:00
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Test whether the given two constants can be allocated the same constant pool
|
|
|
|
/// entry.
|
2010-04-15 09:51:59 +08:00
|
|
|
static bool CanShareConstantPoolEntry(const Constant *A, const Constant *B,
|
2015-07-08 02:20:57 +08:00
|
|
|
const DataLayout &DL) {
|
2009-10-28 09:12:16 +08:00
|
|
|
// Handle the trivial case quickly.
|
|
|
|
if (A == B) return true;
|
|
|
|
|
|
|
|
// If they have the same type but weren't the same constant, quickly
|
|
|
|
// reject them.
|
|
|
|
if (A->getType() == B->getType()) return false;
|
|
|
|
|
2012-01-27 09:46:00 +08:00
|
|
|
// We can't handle structs or arrays.
|
|
|
|
if (isa<StructType>(A->getType()) || isa<ArrayType>(A->getType()) ||
|
|
|
|
isa<StructType>(B->getType()) || isa<ArrayType>(B->getType()))
|
|
|
|
return false;
|
2014-06-25 20:40:56 +08:00
|
|
|
|
2009-10-28 09:12:16 +08:00
|
|
|
// For now, only support constants with the same size.
|
2015-07-08 02:20:57 +08:00
|
|
|
uint64_t StoreSize = DL.getTypeStoreSize(A->getType());
|
|
|
|
if (StoreSize != DL.getTypeStoreSize(B->getType()) || StoreSize > 128)
|
2009-10-28 09:12:16 +08:00
|
|
|
return false;
|
|
|
|
|
2012-01-27 09:46:00 +08:00
|
|
|
Type *IntTy = IntegerType::get(A->getContext(), StoreSize*8);
|
|
|
|
|
|
|
|
// Try constant folding a bitcast of both instructions to an integer. If we
|
|
|
|
// get two identical ConstantInt's, then we are good to share them. We use
|
|
|
|
// the constant folding APIs to do this so that we get the benefit of
|
2012-10-09 00:38:25 +08:00
|
|
|
// DataLayout.
|
2012-01-27 09:46:00 +08:00
|
|
|
if (isa<PointerType>(A->getType()))
|
2016-01-21 14:31:08 +08:00
|
|
|
A = ConstantFoldCastOperand(Instruction::PtrToInt,
|
|
|
|
const_cast<Constant *>(A), IntTy, DL);
|
2012-01-27 09:46:00 +08:00
|
|
|
else if (A->getType() != IntTy)
|
2016-01-21 14:31:08 +08:00
|
|
|
A = ConstantFoldCastOperand(Instruction::BitCast, const_cast<Constant *>(A),
|
|
|
|
IntTy, DL);
|
2012-01-27 09:46:00 +08:00
|
|
|
if (isa<PointerType>(B->getType()))
|
2016-01-21 14:31:08 +08:00
|
|
|
B = ConstantFoldCastOperand(Instruction::PtrToInt,
|
|
|
|
const_cast<Constant *>(B), IntTy, DL);
|
2012-01-27 09:46:00 +08:00
|
|
|
else if (B->getType() != IntTy)
|
2016-01-21 14:31:08 +08:00
|
|
|
B = ConstantFoldCastOperand(Instruction::BitCast, const_cast<Constant *>(B),
|
|
|
|
IntTy, DL);
|
2012-06-20 07:37:57 +08:00
|
|
|
|
2012-01-27 09:46:00 +08:00
|
|
|
return A == B;
|
2009-10-28 09:12:16 +08:00
|
|
|
}
|
|
|
|
|
2015-06-13 23:32:45 +08:00
|
|
|
/// Create a new entry in the constant pool or return an existing one.
|
|
|
|
/// User must specify the log2 of the minimum required alignment for the object.
|
2014-06-25 20:40:56 +08:00
|
|
|
unsigned MachineConstantPool::getConstantPoolIndex(const Constant *C,
|
2006-02-09 12:46:04 +08:00
|
|
|
unsigned Alignment) {
|
|
|
|
assert(Alignment && "Alignment must be specified!");
|
|
|
|
if (Alignment > PoolAlignment) PoolAlignment = Alignment;
|
2009-10-28 09:12:16 +08:00
|
|
|
|
2006-02-09 12:46:04 +08:00
|
|
|
// Check to see if we already have this constant.
|
|
|
|
//
|
|
|
|
// FIXME, this could be made much more efficient for large constant pools.
|
|
|
|
for (unsigned i = 0, e = Constants.size(); i != e; ++i)
|
2009-10-28 09:12:16 +08:00
|
|
|
if (!Constants[i].isMachineConstantPoolEntry() &&
|
2015-07-08 02:20:57 +08:00
|
|
|
CanShareConstantPoolEntry(Constants[i].Val.ConstVal, C, DL)) {
|
2009-10-28 09:12:16 +08:00
|
|
|
if ((unsigned)Constants[i].getAlignment() < Alignment)
|
|
|
|
Constants[i].Alignment = Alignment;
|
2006-02-09 12:46:04 +08:00
|
|
|
return i;
|
2009-10-28 09:12:16 +08:00
|
|
|
}
|
2012-06-20 07:37:57 +08:00
|
|
|
|
2009-03-13 15:51:59 +08:00
|
|
|
Constants.push_back(MachineConstantPoolEntry(C, Alignment));
|
2006-02-09 12:46:04 +08:00
|
|
|
return Constants.size()-1;
|
|
|
|
}
|
|
|
|
|
2006-09-13 05:00:35 +08:00
|
|
|
unsigned MachineConstantPool::getConstantPoolIndex(MachineConstantPoolValue *V,
|
|
|
|
unsigned Alignment) {
|
|
|
|
assert(Alignment && "Alignment must be specified!");
|
|
|
|
if (Alignment > PoolAlignment) PoolAlignment = Alignment;
|
2012-06-20 07:37:57 +08:00
|
|
|
|
2006-09-13 05:00:35 +08:00
|
|
|
// Check to see if we already have this constant.
|
|
|
|
//
|
|
|
|
// FIXME, this could be made much more efficient for large constant pools.
|
|
|
|
int Idx = V->getExistingMachineCPValue(this, Alignment);
|
2011-02-22 16:54:30 +08:00
|
|
|
if (Idx != -1) {
|
|
|
|
MachineCPVsSharingEntries.insert(V);
|
2006-09-13 05:00:35 +08:00
|
|
|
return (unsigned)Idx;
|
2011-02-22 16:54:30 +08:00
|
|
|
}
|
2009-03-13 15:51:59 +08:00
|
|
|
|
|
|
|
Constants.push_back(MachineConstantPoolEntry(V, Alignment));
|
2006-09-13 05:00:35 +08:00
|
|
|
return Constants.size()-1;
|
|
|
|
}
|
|
|
|
|
2008-08-24 06:53:13 +08:00
|
|
|
void MachineConstantPool::print(raw_ostream &OS) const {
|
2009-11-01 04:19:03 +08:00
|
|
|
if (Constants.empty()) return;
|
|
|
|
|
|
|
|
OS << "Constant Pool:\n";
|
2006-02-01 06:23:14 +08:00
|
|
|
for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
|
2009-11-01 04:19:03 +08:00
|
|
|
OS << " cp#" << i << ": ";
|
2006-09-13 05:00:35 +08:00
|
|
|
if (Constants[i].isMachineConstantPoolEntry())
|
|
|
|
Constants[i].Val.MachineCPVal->print(OS);
|
|
|
|
else
|
2014-01-09 10:29:41 +08:00
|
|
|
Constants[i].Val.ConstVal->printAsOperand(OS, /*PrintType=*/false);
|
2009-11-01 04:19:03 +08:00
|
|
|
OS << ", align=" << Constants[i].getAlignment();
|
2006-02-01 06:23:14 +08:00
|
|
|
OS << "\n";
|
|
|
|
}
|
2003-01-13 08:23:03 +08:00
|
|
|
}
|
|
|
|
|
2017-10-15 22:32:27 +08:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2016-01-30 04:50:44 +08:00
|
|
|
LLVM_DUMP_METHOD void MachineConstantPool::dump() const { print(dbgs()); }
|
2012-09-07 03:06:06 +08:00
|
|
|
#endif
|