mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
fcd3c4065d
than on MipsSubtargetInfo. This required a bit of massaging in the MC level to handle this since MC is a) largely a collection of disparate classes with no hierarchy, and b) there's no overarching equivalent to the TargetMachine, instead only the subtarget via MCSubtargetInfo (which is the base class of TargetSubtargetInfo). We're now storing the ABI in both the TargetMachine level and in the MC level because the AsmParser and the TargetStreamer both need to know what ABI we have to parse assembly and emit objects. The target streamer has a pointer to the one in the asm parser and is updated when the asm parser is created. This is fragile as the FIXME comment notes, but shouldn't be a problem in practice since we always create an asm parser before attempting to emit object code via the assembler. The TargetMachine now contains the ABI so that the DataLayout can be constructed dependent upon ABI. All testcases have been updated to use the -target-abi command line flag so that we can set the ABI without using a subtarget feature. Should be no change visible externally here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227102 91177308-0d34-0410-b5e6-96231b3b80d8
77 lines
2.7 KiB
C++
77 lines
2.7 KiB
C++
//===-- MipsOptionRecord.h - Abstraction for storing information ----------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// MipsOptionRecord - Abstraction for storing arbitrary information in
|
|
// ELF files. Arbitrary information (e.g. register usage) can be stored in Mips
|
|
// specific ELF sections like .Mips.options. Specific records should subclass
|
|
// MipsOptionRecord and provide an implementation to EmitMipsOptionRecord which
|
|
// basically just dumps the information into an ELF section. More information
|
|
// about .Mips.option can be found in the SysV ABI and the 64-bit ELF Object
|
|
// specification.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_MIPS_MIPSOPTIONRECORD_H
|
|
#define LLVM_LIB_TARGET_MIPS_MIPSOPTIONRECORD_H
|
|
|
|
#include "MCTargetDesc/MipsMCTargetDesc.h"
|
|
#include "llvm/MC/MCContext.h"
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
|
|
|
namespace llvm {
|
|
class MipsELFStreamer;
|
|
class MCSubtargetInfo;
|
|
|
|
class MipsOptionRecord {
|
|
public:
|
|
virtual ~MipsOptionRecord(){};
|
|
virtual void EmitMipsOptionRecord() = 0;
|
|
};
|
|
|
|
class MipsRegInfoRecord : public MipsOptionRecord {
|
|
public:
|
|
MipsRegInfoRecord(MipsELFStreamer *S, MCContext &Context)
|
|
: Streamer(S), Context(Context) {
|
|
ri_gprmask = 0;
|
|
ri_cprmask[0] = ri_cprmask[1] = ri_cprmask[2] = ri_cprmask[3] = 0;
|
|
ri_gp_value = 0;
|
|
|
|
const MCRegisterInfo *TRI = Context.getRegisterInfo();
|
|
GPR32RegClass = &(TRI->getRegClass(Mips::GPR32RegClassID));
|
|
GPR64RegClass = &(TRI->getRegClass(Mips::GPR64RegClassID));
|
|
FGR32RegClass = &(TRI->getRegClass(Mips::FGR32RegClassID));
|
|
FGR64RegClass = &(TRI->getRegClass(Mips::FGR64RegClassID));
|
|
AFGR64RegClass = &(TRI->getRegClass(Mips::AFGR64RegClassID));
|
|
MSA128BRegClass = &(TRI->getRegClass(Mips::MSA128BRegClassID));
|
|
COP2RegClass = &(TRI->getRegClass(Mips::COP2RegClassID));
|
|
COP3RegClass = &(TRI->getRegClass(Mips::COP3RegClassID));
|
|
}
|
|
~MipsRegInfoRecord() {}
|
|
|
|
void EmitMipsOptionRecord() override;
|
|
void SetPhysRegUsed(unsigned Reg, const MCRegisterInfo *MCRegInfo);
|
|
|
|
private:
|
|
MipsELFStreamer *Streamer;
|
|
MCContext &Context;
|
|
const MCRegisterClass *GPR32RegClass;
|
|
const MCRegisterClass *GPR64RegClass;
|
|
const MCRegisterClass *FGR32RegClass;
|
|
const MCRegisterClass *FGR64RegClass;
|
|
const MCRegisterClass *AFGR64RegClass;
|
|
const MCRegisterClass *MSA128BRegClass;
|
|
const MCRegisterClass *COP2RegClass;
|
|
const MCRegisterClass *COP3RegClass;
|
|
uint32_t ri_gprmask;
|
|
uint32_t ri_cprmask[4];
|
|
int64_t ri_gp_value;
|
|
};
|
|
} // namespace llvm
|
|
#endif
|