diff options
author | Hrvoje Varga <Hrvoje.Varga@imgtec.com> | 2016-06-09 12:57:23 +0000 |
---|---|---|
committer | Hrvoje Varga <Hrvoje.Varga@imgtec.com> | 2016-06-09 12:57:23 +0000 |
commit | c962c4936e83556490ff31af646180462e279dd7 (patch) | |
tree | 3d3794fb5b9af4a8054400b92827df3649bc46fb /llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h | |
parent | a7dbf987b5da24b223d91c1b35b9f8343c38e648 (diff) | |
download | bcm5719-llvm-c962c4936e83556490ff31af646180462e279dd7.tar.gz bcm5719-llvm-c962c4936e83556490ff31af646180462e279dd7.zip |
[mips][microMIPS] Implement BOVC, BNVC, EXT, INS and JALRC instructions
Differential Revision: http://reviews.llvm.org/D11798
llvm-svn: 272259
Diffstat (limited to 'llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h')
-rw-r--r-- | llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h b/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h index 01daaa25296..6bc9a1b1c28 100644 --- a/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h +++ b/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h @@ -109,6 +109,13 @@ public: SmallVectorImpl<MCFixup> &Fixups, const MCSubtargetInfo &STI) const; + // getBranchTargetOpValueMMR6 - Return binary encoding of the branch + // target operand. If the machine operand requires relocation, + // record the relocation and return zero. + unsigned getBranchTargetOpValueMMR6(const MCInst &MI, unsigned OpNo, + SmallVectorImpl<MCFixup> &Fixups, + const MCSubtargetInfo &STI) const; + // getBranchTarget7OpValue - Return binary encoding of the microMIPS branch // target operand. If the machine operand requires relocation, // record the relocation and return zero. |