forked from OSchip/llvm-project
parent
dd9fbaa9c0
commit
a3efae35f5
|
@ -126,12 +126,6 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void EmitImmediate(const MCOperand &Disp,
|
|
||||||
unsigned ImmSize, MCFixupKind FixupKind,
|
|
||||||
unsigned &CurByte, raw_ostream &OS,
|
|
||||||
SmallVectorImpl<MCFixup> &Fixups,
|
|
||||||
int ImmOffset = 0) const;
|
|
||||||
|
|
||||||
void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
|
void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
|
||||||
SmallVectorImpl<MCFixup> &Fixups) const;
|
SmallVectorImpl<MCFixup> &Fixups) const;
|
||||||
};
|
};
|
||||||
|
@ -144,13 +138,6 @@ MCCodeEmitter *llvm::createARMMCCodeEmitter(const Target &,
|
||||||
return new ARMMCCodeEmitter(TM, Ctx);
|
return new ARMMCCodeEmitter(TM, Ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ARMMCCodeEmitter::
|
|
||||||
EmitImmediate(const MCOperand &DispOp, unsigned Size, MCFixupKind FixupKind,
|
|
||||||
unsigned &CurByte, raw_ostream &OS,
|
|
||||||
SmallVectorImpl<MCFixup> &Fixups, int ImmOffset) const {
|
|
||||||
assert(0 && "ARMMCCodeEmitter::EmitImmediate() not yet implemented.");
|
|
||||||
}
|
|
||||||
|
|
||||||
/// getMachineOpValue - Return binary encoding of operand. If the machine
|
/// getMachineOpValue - Return binary encoding of operand. If the machine
|
||||||
/// operand requires relocation, record the relocation and return zero.
|
/// operand requires relocation, record the relocation and return zero.
|
||||||
unsigned ARMMCCodeEmitter::getMachineOpValue(const MCInst &MI,
|
unsigned ARMMCCodeEmitter::getMachineOpValue(const MCInst &MI,
|
||||||
|
|
Loading…
Reference in New Issue