mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 18:24:23 +00:00
MIR Serialization: Serialize references from the stack objects to named allocas.
This commit serializes the references to the named LLVM alloca instructions from the stack objects in the machine frame info. This commit adds a field 'Name' to the struct 'yaml::MachineStackObject'. This new field is used to store the name of the alloca instruction when the alloca is present and when it has a name. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242339 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -108,7 +108,7 @@ public:
|
||||
const yaml::MachineFunction &YamlMF,
|
||||
DenseMap<unsigned, unsigned> &VirtualRegisterSlots);
|
||||
|
||||
bool initializeFrameInfo(MachineFrameInfo &MFI,
|
||||
bool initializeFrameInfo(const Function &F, MachineFrameInfo &MFI,
|
||||
const yaml::MachineFunction &YamlMF);
|
||||
|
||||
private:
|
||||
@ -264,7 +264,7 @@ bool MIRParserImpl::initializeMachineFunction(MachineFunction &MF) {
|
||||
if (initializeRegisterInfo(MF, MF.getRegInfo(), YamlMF,
|
||||
PFS.VirtualRegisterSlots))
|
||||
return true;
|
||||
if (initializeFrameInfo(*MF.getFrameInfo(), YamlMF))
|
||||
if (initializeFrameInfo(*MF.getFunction(), *MF.getFrameInfo(), YamlMF))
|
||||
return true;
|
||||
|
||||
const auto &F = *MF.getFunction();
|
||||
@ -366,7 +366,8 @@ bool MIRParserImpl::initializeRegisterInfo(
|
||||
return false;
|
||||
}
|
||||
|
||||
bool MIRParserImpl::initializeFrameInfo(MachineFrameInfo &MFI,
|
||||
bool MIRParserImpl::initializeFrameInfo(const Function &F,
|
||||
MachineFrameInfo &MFI,
|
||||
const yaml::MachineFunction &YamlMF) {
|
||||
const yaml::MachineFrameInfo &YamlMFI = YamlMF.FrameInfo;
|
||||
MFI.setFrameAddressIsTaken(YamlMFI.IsFrameAddressTaken);
|
||||
@ -400,13 +401,23 @@ bool MIRParserImpl::initializeFrameInfo(MachineFrameInfo &MFI,
|
||||
// Initialize the ordinary frame objects.
|
||||
for (const auto &Object : YamlMF.StackObjects) {
|
||||
int ObjectIdx;
|
||||
const AllocaInst *Alloca = nullptr;
|
||||
const yaml::StringValue &Name = Object.Name;
|
||||
if (!Name.Value.empty()) {
|
||||
Alloca = dyn_cast_or_null<AllocaInst>(
|
||||
F.getValueSymbolTable().lookup(Name.Value));
|
||||
if (!Alloca)
|
||||
return error(Name.SourceRange.Start,
|
||||
"alloca instruction named '" + Name.Value +
|
||||
"' isn't defined in the function '" + F.getName() +
|
||||
"'");
|
||||
}
|
||||
if (Object.Type == yaml::MachineStackObject::VariableSized)
|
||||
ObjectIdx =
|
||||
MFI.CreateVariableSizedObject(Object.Alignment, /*Alloca=*/nullptr);
|
||||
ObjectIdx = MFI.CreateVariableSizedObject(Object.Alignment, Alloca);
|
||||
else
|
||||
ObjectIdx = MFI.CreateStackObject(
|
||||
Object.Size, Object.Alignment,
|
||||
Object.Type == yaml::MachineStackObject::SpillSlot);
|
||||
Object.Type == yaml::MachineStackObject::SpillSlot, Alloca);
|
||||
MFI.setObjectOffset(ObjectIdx, Object.Offset);
|
||||
// TODO: Store the mapping between object IDs and object indices to parse
|
||||
// stack object references correctly.
|
||||
|
@ -19,6 +19,7 @@
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/CodeGen/MIRYamlMapping.h"
|
||||
#include "llvm/IR/BasicBlock.h"
|
||||
#include "llvm/IR/Instructions.h"
|
||||
#include "llvm/IR/Module.h"
|
||||
#include "llvm/IR/ModuleSlotTracker.h"
|
||||
#include "llvm/Support/MemoryBuffer.h"
|
||||
@ -199,6 +200,9 @@ void MIRPrinter::convertStackObjects(yaml::MachineFunction &MF,
|
||||
|
||||
yaml::MachineStackObject YamlObject;
|
||||
YamlObject.ID = ID++;
|
||||
if (const auto *Alloca = MFI.getObjectAllocation(I))
|
||||
YamlObject.Name.Value =
|
||||
Alloca->hasName() ? Alloca->getName() : "<unnamed alloca>";
|
||||
YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
|
||||
? yaml::MachineStackObject::SpillSlot
|
||||
: MFI.isVariableSizedObjectIndex(I)
|
||||
|
Reference in New Issue
Block a user