mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
This class is no longer an annotation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14437 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4aa5b2affb
commit
ea104df2b1
@ -28,7 +28,6 @@
|
|||||||
#ifndef LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
|
#ifndef LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
|
||||||
#define LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
|
#define LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
|
||||||
|
|
||||||
#include "Support/Annotation.h"
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
@ -38,14 +37,12 @@ class Instruction;
|
|||||||
class Value;
|
class Value;
|
||||||
class CallArgsDescriptor;
|
class CallArgsDescriptor;
|
||||||
|
|
||||||
extern AnnotationID MCFI_AID;
|
class MachineCodeForInstruction {
|
||||||
|
|
||||||
class MachineCodeForInstruction : public Annotation {
|
|
||||||
std::vector<Value*> tempVec; // used by m/c instr but not VM instr
|
std::vector<Value*> tempVec; // used by m/c instr but not VM instr
|
||||||
std::vector<MachineInstr*> Contents; // the machine instr for this VM instr
|
std::vector<MachineInstr*> Contents; // the machine instr for this VM instr
|
||||||
CallArgsDescriptor* callArgsDesc; // only used for CALL instructions
|
CallArgsDescriptor* callArgsDesc; // only used for CALL instructions
|
||||||
public:
|
public:
|
||||||
MachineCodeForInstruction() : Annotation(MCFI_AID), callArgsDesc(NULL) {}
|
MachineCodeForInstruction() : callArgsDesc(NULL) {}
|
||||||
~MachineCodeForInstruction();
|
~MachineCodeForInstruction();
|
||||||
|
|
||||||
static MachineCodeForInstruction &get(const Instruction *I);
|
static MachineCodeForInstruction &get(const Instruction *I);
|
||||||
|
@ -28,7 +28,6 @@
|
|||||||
#ifndef LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
|
#ifndef LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
|
||||||
#define LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
|
#define LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
|
||||||
|
|
||||||
#include "Support/Annotation.h"
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
@ -38,14 +37,12 @@ class Instruction;
|
|||||||
class Value;
|
class Value;
|
||||||
class CallArgsDescriptor;
|
class CallArgsDescriptor;
|
||||||
|
|
||||||
extern AnnotationID MCFI_AID;
|
class MachineCodeForInstruction {
|
||||||
|
|
||||||
class MachineCodeForInstruction : public Annotation {
|
|
||||||
std::vector<Value*> tempVec; // used by m/c instr but not VM instr
|
std::vector<Value*> tempVec; // used by m/c instr but not VM instr
|
||||||
std::vector<MachineInstr*> Contents; // the machine instr for this VM instr
|
std::vector<MachineInstr*> Contents; // the machine instr for this VM instr
|
||||||
CallArgsDescriptor* callArgsDesc; // only used for CALL instructions
|
CallArgsDescriptor* callArgsDesc; // only used for CALL instructions
|
||||||
public:
|
public:
|
||||||
MachineCodeForInstruction() : Annotation(MCFI_AID), callArgsDesc(NULL) {}
|
MachineCodeForInstruction() : callArgsDesc(NULL) {}
|
||||||
~MachineCodeForInstruction();
|
~MachineCodeForInstruction();
|
||||||
|
|
||||||
static MachineCodeForInstruction &get(const Instruction *I);
|
static MachineCodeForInstruction &get(const Instruction *I);
|
||||||
|
Loading…
Reference in New Issue
Block a user