2009-09-15 08:27:25 +08:00
|
|
|
//===-- ARMAsmParser.cpp - Parse ARM assembly to MCInst instructions ------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-07-26 08:24:13 +08:00
|
|
|
#include "MCTargetDesc/ARMBaseInfo.h"
|
2011-07-21 07:34:39 +08:00
|
|
|
#include "MCTargetDesc/ARMAddressingModes.h"
|
|
|
|
#include "MCTargetDesc/ARMMCExpr.h"
|
2010-01-22 09:44:57 +08:00
|
|
|
#include "llvm/MC/MCParser/MCAsmLexer.h"
|
|
|
|
#include "llvm/MC/MCParser/MCAsmParser.h"
|
|
|
|
#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
|
2011-05-17 00:17:21 +08:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2010-11-06 06:33:53 +08:00
|
|
|
#include "llvm/MC/MCContext.h"
|
2009-09-15 08:27:25 +08:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/MC/MCInst.h"
|
2011-07-26 08:24:13 +08:00
|
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
2011-07-08 09:53:10 +08:00
|
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
2011-07-26 08:24:13 +08:00
|
|
|
#include "llvm/MC/MCTargetAsmParser.h"
|
2009-09-15 08:27:25 +08:00
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
2010-01-22 09:44:57 +08:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2010-08-11 14:37:12 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2011-07-09 05:06:23 +08:00
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
2011-07-26 08:24:13 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2010-01-22 09:44:57 +08:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2011-01-14 06:50:36 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2010-08-11 14:37:20 +08:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2010-01-22 09:44:57 +08:00
|
|
|
#include "llvm/ADT/Twine.h"
|
2011-07-08 09:53:10 +08:00
|
|
|
|
2009-09-15 08:27:25 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-10-29 01:20:03 +08:00
|
|
|
namespace {
|
2010-11-07 05:42:12 +08:00
|
|
|
|
|
|
|
class ARMOperand;
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2011-07-26 08:24:13 +08:00
|
|
|
class ARMAsmParser : public MCTargetAsmParser {
|
2011-07-09 13:47:46 +08:00
|
|
|
MCSubtargetInfo &STI;
|
2009-09-15 08:27:25 +08:00
|
|
|
MCAsmParser &Parser;
|
|
|
|
|
|
|
|
MCAsmParser &getParser() const { return Parser; }
|
|
|
|
MCAsmLexer &getLexer() const { return Parser.getLexer(); }
|
|
|
|
|
|
|
|
void Warning(SMLoc L, const Twine &Msg) { Parser.Warning(L, Msg); }
|
|
|
|
bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); }
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
int tryParseRegister();
|
|
|
|
bool tryParseRegisterWithWriteBack(SmallVectorImpl<MCParsedAsmOperand*> &);
|
2011-07-27 04:41:24 +08:00
|
|
|
int tryParseShiftRegister(SmallVectorImpl<MCParsedAsmOperand*> &);
|
2011-07-27 01:10:22 +08:00
|
|
|
bool parseRegisterList(SmallVectorImpl<MCParsedAsmOperand*> &);
|
|
|
|
bool parseMemory(SmallVectorImpl<MCParsedAsmOperand*> &,
|
2011-04-01 07:26:08 +08:00
|
|
|
ARMII::AddrMode AddrMode);
|
2011-07-27 01:10:22 +08:00
|
|
|
bool parseOperand(SmallVectorImpl<MCParsedAsmOperand*> &, StringRef Mnemonic);
|
|
|
|
bool parsePrefix(ARMMCExpr::VariantKind &RefKind);
|
|
|
|
const MCExpr *applyPrefixToExpr(const MCExpr *E,
|
2011-01-12 07:53:41 +08:00
|
|
|
MCSymbolRefExpr::VariantKind Variant);
|
|
|
|
|
2009-10-07 06:26:42 +08:00
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
bool parseMemoryOffsetReg(bool &Negative,
|
2009-10-31 06:55:57 +08:00
|
|
|
bool &OffsetRegShifted,
|
2011-03-19 06:50:18 +08:00
|
|
|
enum ARM_AM::ShiftOpc &ShiftType,
|
2009-10-31 06:55:57 +08:00
|
|
|
const MCExpr *&ShiftAmount,
|
|
|
|
const MCExpr *&Offset,
|
|
|
|
bool &OffsetIsReg,
|
2010-04-03 06:27:05 +08:00
|
|
|
int &OffsetRegNum,
|
|
|
|
SMLoc &E);
|
2011-07-27 01:10:22 +08:00
|
|
|
bool parseShift(enum ARM_AM::ShiftOpc &St,
|
2011-03-19 06:50:18 +08:00
|
|
|
const MCExpr *&ShiftAmount, SMLoc &E);
|
2011-07-27 01:10:22 +08:00
|
|
|
bool parseDirectiveWord(unsigned Size, SMLoc L);
|
|
|
|
bool parseDirectiveThumb(SMLoc L);
|
|
|
|
bool parseDirectiveThumbFunc(SMLoc L);
|
|
|
|
bool parseDirectiveCode(SMLoc L);
|
|
|
|
bool parseDirectiveSyntax(SMLoc L);
|
2009-10-16 04:48:48 +08:00
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
StringRef splitMnemonic(StringRef Mnemonic, unsigned &PredicationCode,
|
2011-07-20 04:10:31 +08:00
|
|
|
bool &CarrySetting, unsigned &ProcessorIMod);
|
2011-07-27 01:10:22 +08:00
|
|
|
void getMnemonicAcceptInfo(StringRef Mnemonic, bool &CanAcceptCarrySet,
|
2011-01-19 04:55:11 +08:00
|
|
|
bool &CanAcceptPredicationCode);
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2011-07-08 09:53:10 +08:00
|
|
|
bool isThumb() const {
|
|
|
|
// FIXME: Can tablegen auto-generate this?
|
2011-07-09 13:47:46 +08:00
|
|
|
return (STI.getFeatureBits() & ARM::ModeThumb) != 0;
|
2011-07-08 09:53:10 +08:00
|
|
|
}
|
|
|
|
bool isThumbOne() const {
|
2011-07-09 13:47:46 +08:00
|
|
|
return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2) == 0;
|
2011-07-08 09:53:10 +08:00
|
|
|
}
|
2011-07-09 06:36:29 +08:00
|
|
|
void SwitchMode() {
|
2011-07-09 13:47:46 +08:00
|
|
|
unsigned FB = ComputeAvailableFeatures(STI.ToggleFeature(ARM::ModeThumb));
|
|
|
|
setAvailableFeatures(FB);
|
2011-07-09 06:36:29 +08:00
|
|
|
}
|
2011-07-08 09:53:10 +08:00
|
|
|
|
2009-10-07 06:26:42 +08:00
|
|
|
/// @name Auto-generated Match Functions
|
|
|
|
/// {
|
2010-08-11 13:24:50 +08:00
|
|
|
|
2010-09-07 03:11:01 +08:00
|
|
|
#define GET_ASSEMBLER_HEADER
|
|
|
|
#include "ARMGenAsmMatcher.inc"
|
2009-10-07 06:26:42 +08:00
|
|
|
|
|
|
|
/// }
|
|
|
|
|
2011-07-26 04:14:50 +08:00
|
|
|
OperandMatchResultTy parseCoprocNumOperand(
|
2011-02-12 09:34:40 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*>&);
|
2011-07-26 04:14:50 +08:00
|
|
|
OperandMatchResultTy parseCoprocRegOperand(
|
2011-02-12 09:34:40 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*>&);
|
2011-07-26 04:14:50 +08:00
|
|
|
OperandMatchResultTy parseMemBarrierOptOperand(
|
2011-02-19 03:49:06 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*>&);
|
2011-07-26 04:14:50 +08:00
|
|
|
OperandMatchResultTy parseProcIFlagsOperand(
|
2011-02-19 03:49:06 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*>&);
|
2011-07-26 04:14:50 +08:00
|
|
|
OperandMatchResultTy parseMSRMaskOperand(
|
2011-02-19 03:49:06 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*>&);
|
2011-07-26 04:14:50 +08:00
|
|
|
OperandMatchResultTy parseMemMode2Operand(
|
2011-04-01 07:26:08 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*>&);
|
2011-07-26 04:14:50 +08:00
|
|
|
OperandMatchResultTy parseMemMode3Operand(
|
2011-04-05 01:18:19 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*>&);
|
2011-07-22 01:23:04 +08:00
|
|
|
OperandMatchResultTy parsePKHImm(SmallVectorImpl<MCParsedAsmOperand*> &O,
|
|
|
|
StringRef Op, int Low, int High);
|
|
|
|
OperandMatchResultTy parsePKHLSLImm(SmallVectorImpl<MCParsedAsmOperand*> &O) {
|
|
|
|
return parsePKHImm(O, "lsl", 0, 31);
|
|
|
|
}
|
|
|
|
OperandMatchResultTy parsePKHASRImm(SmallVectorImpl<MCParsedAsmOperand*> &O) {
|
|
|
|
return parsePKHImm(O, "asr", 1, 32);
|
|
|
|
}
|
2011-07-23 01:44:50 +08:00
|
|
|
OperandMatchResultTy parseSetEndImm(SmallVectorImpl<MCParsedAsmOperand*>&);
|
2011-07-26 06:20:28 +08:00
|
|
|
OperandMatchResultTy parseShifterImm(SmallVectorImpl<MCParsedAsmOperand*>&);
|
2011-07-28 04:15:40 +08:00
|
|
|
OperandMatchResultTy parseRotImm(SmallVectorImpl<MCParsedAsmOperand*>&);
|
2011-07-29 05:34:26 +08:00
|
|
|
OperandMatchResultTy parseBitfield(SmallVectorImpl<MCParsedAsmOperand*>&);
|
2011-04-01 07:26:08 +08:00
|
|
|
|
|
|
|
// Asm Match Converter Methods
|
2011-07-27 01:10:22 +08:00
|
|
|
bool cvtLdWriteBackRegAddrMode2(MCInst &Inst, unsigned Opcode,
|
2011-04-01 07:26:08 +08:00
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &);
|
2011-07-27 01:10:22 +08:00
|
|
|
bool cvtStWriteBackRegAddrMode2(MCInst &Inst, unsigned Opcode,
|
2011-04-01 07:26:08 +08:00
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &);
|
2011-07-27 01:10:22 +08:00
|
|
|
bool cvtLdWriteBackRegAddrMode3(MCInst &Inst, unsigned Opcode,
|
2011-04-05 01:18:19 +08:00
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &);
|
2011-07-27 01:10:22 +08:00
|
|
|
bool cvtStWriteBackRegAddrMode3(MCInst &Inst, unsigned Opcode,
|
2011-04-05 01:18:19 +08:00
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &);
|
2011-02-12 09:34:40 +08:00
|
|
|
|
2011-07-27 02:25:39 +08:00
|
|
|
|
|
|
|
bool validateInstruction(MCInst &Inst,
|
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &Ops);
|
|
|
|
|
2009-09-15 08:27:25 +08:00
|
|
|
public:
|
2011-07-09 13:47:46 +08:00
|
|
|
ARMAsmParser(MCSubtargetInfo &_STI, MCAsmParser &_Parser)
|
2011-07-26 08:24:13 +08:00
|
|
|
: MCTargetAsmParser(), STI(_STI), Parser(_Parser) {
|
2011-07-08 09:53:10 +08:00
|
|
|
MCAsmParserExtension::Initialize(_Parser);
|
2011-07-09 06:36:29 +08:00
|
|
|
|
2011-07-08 09:53:10 +08:00
|
|
|
// Initialize the set of available features.
|
2011-07-09 13:47:46 +08:00
|
|
|
setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
|
2011-07-08 09:53:10 +08:00
|
|
|
}
|
2009-09-15 08:27:25 +08:00
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
// Implementation of the MCTargetAsmParser interface:
|
|
|
|
bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
|
|
|
|
bool ParseInstruction(StringRef Name, SMLoc NameLoc,
|
2011-07-27 02:25:39 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
2011-07-27 01:10:22 +08:00
|
|
|
bool ParseDirective(AsmToken DirectiveID);
|
|
|
|
|
|
|
|
bool MatchAndEmitInstruction(SMLoc IDLoc,
|
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
|
|
|
MCStreamer &Out);
|
2009-09-15 08:27:25 +08:00
|
|
|
};
|
2010-10-29 22:46:02 +08:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
2010-10-29 01:20:03 +08:00
|
|
|
namespace {
|
|
|
|
|
2009-10-07 06:26:42 +08:00
|
|
|
/// ARMOperand - Instances of this class represent a parsed ARM machine
|
|
|
|
/// instruction.
|
2010-11-07 05:42:12 +08:00
|
|
|
class ARMOperand : public MCParsedAsmOperand {
|
2010-04-03 06:27:05 +08:00
|
|
|
enum KindTy {
|
2010-08-11 14:36:53 +08:00
|
|
|
CondCode,
|
2010-12-07 02:21:12 +08:00
|
|
|
CCOut,
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
CoprocNum,
|
|
|
|
CoprocReg,
|
2009-10-14 06:19:02 +08:00
|
|
|
Immediate,
|
2011-02-08 06:09:15 +08:00
|
|
|
MemBarrierOpt,
|
2010-08-11 14:36:53 +08:00
|
|
|
Memory,
|
2011-02-19 03:45:59 +08:00
|
|
|
MSRMask,
|
2011-02-14 21:09:44 +08:00
|
|
|
ProcIFlags,
|
2010-08-11 14:36:53 +08:00
|
|
|
Register,
|
2010-11-07 03:56:04 +08:00
|
|
|
RegisterList,
|
2010-11-17 12:32:08 +08:00
|
|
|
DPRRegisterList,
|
|
|
|
SPRRegisterList,
|
2011-07-14 01:50:29 +08:00
|
|
|
ShiftedRegister,
|
2011-07-22 02:54:16 +08:00
|
|
|
ShiftedImmediate,
|
2011-07-26 06:20:28 +08:00
|
|
|
ShifterImmediate,
|
2011-07-28 04:15:40 +08:00
|
|
|
RotateImmediate,
|
2011-07-29 05:34:26 +08:00
|
|
|
BitfieldDescriptor,
|
2010-08-11 14:36:53 +08:00
|
|
|
Token
|
2009-10-07 06:26:42 +08:00
|
|
|
} Kind;
|
|
|
|
|
2010-04-03 06:27:05 +08:00
|
|
|
SMLoc StartLoc, EndLoc;
|
2010-11-19 05:50:54 +08:00
|
|
|
SmallVector<unsigned, 8> Registers;
|
2009-10-07 06:26:42 +08:00
|
|
|
|
|
|
|
union {
|
2010-08-11 14:36:53 +08:00
|
|
|
struct {
|
|
|
|
ARMCC::CondCodes Val;
|
|
|
|
} CC;
|
|
|
|
|
2011-02-08 06:09:15 +08:00
|
|
|
struct {
|
|
|
|
ARM_MB::MemBOpt Val;
|
|
|
|
} MBOpt;
|
|
|
|
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
struct {
|
|
|
|
unsigned Val;
|
|
|
|
} Cop;
|
|
|
|
|
2011-02-14 21:09:44 +08:00
|
|
|
struct {
|
|
|
|
ARM_PROC::IFlags Val;
|
|
|
|
} IFlags;
|
|
|
|
|
2011-02-19 03:45:59 +08:00
|
|
|
struct {
|
|
|
|
unsigned Val;
|
|
|
|
} MMask;
|
|
|
|
|
2009-10-07 06:26:42 +08:00
|
|
|
struct {
|
|
|
|
const char *Data;
|
|
|
|
unsigned Length;
|
|
|
|
} Tok;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
unsigned RegNum;
|
|
|
|
} Reg;
|
|
|
|
|
2009-10-14 06:19:02 +08:00
|
|
|
struct {
|
|
|
|
const MCExpr *Val;
|
|
|
|
} Imm;
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2011-01-10 23:26:21 +08:00
|
|
|
/// Combined record for all forms of ARM address expressions.
|
2009-10-07 06:26:42 +08:00
|
|
|
struct {
|
2011-04-01 07:26:08 +08:00
|
|
|
ARMII::AddrMode AddrMode;
|
2009-10-07 06:26:42 +08:00
|
|
|
unsigned BaseRegNum;
|
2011-01-18 13:55:15 +08:00
|
|
|
union {
|
|
|
|
unsigned RegNum; ///< Offset register num, when OffsetIsReg.
|
|
|
|
const MCExpr *Value; ///< Offset value, when !OffsetIsReg.
|
|
|
|
} Offset;
|
2010-11-07 05:42:12 +08:00
|
|
|
const MCExpr *ShiftAmount; // used when OffsetRegShifted is true
|
2011-03-19 06:50:18 +08:00
|
|
|
enum ARM_AM::ShiftOpc ShiftType; // used when OffsetRegShifted is true
|
2010-11-07 05:42:12 +08:00
|
|
|
unsigned OffsetRegShifted : 1; // only used when OffsetIsReg is true
|
2010-11-19 07:43:05 +08:00
|
|
|
unsigned Preindexed : 1;
|
|
|
|
unsigned Postindexed : 1;
|
|
|
|
unsigned OffsetIsReg : 1;
|
|
|
|
unsigned Negative : 1; // only used when OffsetIsReg is true
|
|
|
|
unsigned Writeback : 1;
|
2009-10-07 06:26:42 +08:00
|
|
|
} Mem;
|
2011-03-19 06:50:18 +08:00
|
|
|
|
|
|
|
struct {
|
2011-07-26 06:20:28 +08:00
|
|
|
bool isASR;
|
2011-07-14 01:50:29 +08:00
|
|
|
unsigned Imm;
|
2011-07-26 06:20:28 +08:00
|
|
|
} ShifterImm;
|
2011-07-14 01:50:29 +08:00
|
|
|
struct {
|
|
|
|
ARM_AM::ShiftOpc ShiftTy;
|
|
|
|
unsigned SrcReg;
|
|
|
|
unsigned ShiftReg;
|
|
|
|
unsigned ShiftImm;
|
2011-07-26 04:49:51 +08:00
|
|
|
} RegShiftedReg;
|
2011-07-22 02:54:16 +08:00
|
|
|
struct {
|
|
|
|
ARM_AM::ShiftOpc ShiftTy;
|
|
|
|
unsigned SrcReg;
|
|
|
|
unsigned ShiftImm;
|
2011-07-26 04:49:51 +08:00
|
|
|
} RegShiftedImm;
|
2011-07-28 04:15:40 +08:00
|
|
|
struct {
|
|
|
|
unsigned Imm;
|
|
|
|
} RotImm;
|
2011-07-29 05:34:26 +08:00
|
|
|
struct {
|
|
|
|
unsigned LSB;
|
|
|
|
unsigned Width;
|
|
|
|
} Bitfield;
|
2009-10-07 06:26:42 +08:00
|
|
|
};
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2010-11-07 05:42:12 +08:00
|
|
|
ARMOperand(KindTy K) : MCParsedAsmOperand(), Kind(K) {}
|
|
|
|
public:
|
2010-04-03 06:27:05 +08:00
|
|
|
ARMOperand(const ARMOperand &o) : MCParsedAsmOperand() {
|
|
|
|
Kind = o.Kind;
|
|
|
|
StartLoc = o.StartLoc;
|
|
|
|
EndLoc = o.EndLoc;
|
|
|
|
switch (Kind) {
|
2010-08-11 14:36:53 +08:00
|
|
|
case CondCode:
|
|
|
|
CC = o.CC;
|
|
|
|
break;
|
2010-04-03 06:27:05 +08:00
|
|
|
case Token:
|
2010-08-11 14:36:53 +08:00
|
|
|
Tok = o.Tok;
|
2010-04-03 06:27:05 +08:00
|
|
|
break;
|
2010-12-07 02:21:12 +08:00
|
|
|
case CCOut:
|
2010-04-03 06:27:05 +08:00
|
|
|
case Register:
|
|
|
|
Reg = o.Reg;
|
|
|
|
break;
|
2010-11-07 03:56:04 +08:00
|
|
|
case RegisterList:
|
2010-11-17 12:32:08 +08:00
|
|
|
case DPRRegisterList:
|
|
|
|
case SPRRegisterList:
|
2010-11-19 05:50:54 +08:00
|
|
|
Registers = o.Registers;
|
2010-11-07 03:56:04 +08:00
|
|
|
break;
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
case CoprocNum:
|
|
|
|
case CoprocReg:
|
|
|
|
Cop = o.Cop;
|
|
|
|
break;
|
2010-04-03 06:27:05 +08:00
|
|
|
case Immediate:
|
|
|
|
Imm = o.Imm;
|
|
|
|
break;
|
2011-02-08 06:09:15 +08:00
|
|
|
case MemBarrierOpt:
|
|
|
|
MBOpt = o.MBOpt;
|
|
|
|
break;
|
2010-04-03 06:27:05 +08:00
|
|
|
case Memory:
|
|
|
|
Mem = o.Mem;
|
|
|
|
break;
|
2011-02-19 03:45:59 +08:00
|
|
|
case MSRMask:
|
|
|
|
MMask = o.MMask;
|
|
|
|
break;
|
2011-02-14 21:09:44 +08:00
|
|
|
case ProcIFlags:
|
|
|
|
IFlags = o.IFlags;
|
2011-03-19 06:50:18 +08:00
|
|
|
break;
|
2011-07-26 06:20:28 +08:00
|
|
|
case ShifterImmediate:
|
|
|
|
ShifterImm = o.ShifterImm;
|
2011-03-19 06:50:18 +08:00
|
|
|
break;
|
2011-07-14 01:50:29 +08:00
|
|
|
case ShiftedRegister:
|
2011-07-26 04:49:51 +08:00
|
|
|
RegShiftedReg = o.RegShiftedReg;
|
2011-07-14 01:50:29 +08:00
|
|
|
break;
|
2011-07-22 02:54:16 +08:00
|
|
|
case ShiftedImmediate:
|
2011-07-26 04:49:51 +08:00
|
|
|
RegShiftedImm = o.RegShiftedImm;
|
2011-07-22 02:54:16 +08:00
|
|
|
break;
|
2011-07-28 04:15:40 +08:00
|
|
|
case RotateImmediate:
|
|
|
|
RotImm = o.RotImm;
|
|
|
|
break;
|
2011-07-29 05:34:26 +08:00
|
|
|
case BitfieldDescriptor:
|
|
|
|
Bitfield = o.Bitfield;
|
|
|
|
break;
|
2010-04-03 06:27:05 +08:00
|
|
|
}
|
|
|
|
}
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2010-04-03 06:27:05 +08:00
|
|
|
/// getStartLoc - Get the location of the first token of this operand.
|
|
|
|
SMLoc getStartLoc() const { return StartLoc; }
|
|
|
|
/// getEndLoc - Get the location of the last token of this operand.
|
|
|
|
SMLoc getEndLoc() const { return EndLoc; }
|
2009-10-07 06:26:42 +08:00
|
|
|
|
2010-08-11 14:36:53 +08:00
|
|
|
ARMCC::CondCodes getCondCode() const {
|
|
|
|
assert(Kind == CondCode && "Invalid access!");
|
|
|
|
return CC.Val;
|
|
|
|
}
|
|
|
|
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
unsigned getCoproc() const {
|
|
|
|
assert((Kind == CoprocNum || Kind == CoprocReg) && "Invalid access!");
|
|
|
|
return Cop.Val;
|
|
|
|
}
|
|
|
|
|
2009-10-07 06:26:42 +08:00
|
|
|
StringRef getToken() const {
|
|
|
|
assert(Kind == Token && "Invalid access!");
|
|
|
|
return StringRef(Tok.Data, Tok.Length);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned getReg() const {
|
2010-12-07 23:50:35 +08:00
|
|
|
assert((Kind == Register || Kind == CCOut) && "Invalid access!");
|
2010-11-10 06:44:22 +08:00
|
|
|
return Reg.RegNum;
|
2009-10-07 06:26:42 +08:00
|
|
|
}
|
|
|
|
|
2010-11-10 07:28:44 +08:00
|
|
|
const SmallVectorImpl<unsigned> &getRegList() const {
|
2010-11-17 12:32:08 +08:00
|
|
|
assert((Kind == RegisterList || Kind == DPRRegisterList ||
|
|
|
|
Kind == SPRRegisterList) && "Invalid access!");
|
2010-11-19 05:50:54 +08:00
|
|
|
return Registers;
|
2010-11-07 03:56:04 +08:00
|
|
|
}
|
|
|
|
|
2009-10-14 06:19:02 +08:00
|
|
|
const MCExpr *getImm() const {
|
|
|
|
assert(Kind == Immediate && "Invalid access!");
|
|
|
|
return Imm.Val;
|
|
|
|
}
|
|
|
|
|
2011-02-08 06:09:15 +08:00
|
|
|
ARM_MB::MemBOpt getMemBarrierOpt() const {
|
|
|
|
assert(Kind == MemBarrierOpt && "Invalid access!");
|
|
|
|
return MBOpt.Val;
|
|
|
|
}
|
|
|
|
|
2011-02-14 21:09:44 +08:00
|
|
|
ARM_PROC::IFlags getProcIFlags() const {
|
|
|
|
assert(Kind == ProcIFlags && "Invalid access!");
|
|
|
|
return IFlags.Val;
|
|
|
|
}
|
|
|
|
|
2011-02-19 03:45:59 +08:00
|
|
|
unsigned getMSRMask() const {
|
|
|
|
assert(Kind == MSRMask && "Invalid access!");
|
|
|
|
return MMask.Val;
|
|
|
|
}
|
|
|
|
|
2011-01-18 13:55:21 +08:00
|
|
|
/// @name Memory Operand Accessors
|
|
|
|
/// @{
|
2011-04-01 07:26:08 +08:00
|
|
|
ARMII::AddrMode getMemAddrMode() const {
|
|
|
|
return Mem.AddrMode;
|
|
|
|
}
|
2011-01-18 13:55:21 +08:00
|
|
|
unsigned getMemBaseRegNum() const {
|
|
|
|
return Mem.BaseRegNum;
|
|
|
|
}
|
|
|
|
unsigned getMemOffsetRegNum() const {
|
|
|
|
assert(Mem.OffsetIsReg && "Invalid access!");
|
|
|
|
return Mem.Offset.RegNum;
|
|
|
|
}
|
|
|
|
const MCExpr *getMemOffset() const {
|
|
|
|
assert(!Mem.OffsetIsReg && "Invalid access!");
|
|
|
|
return Mem.Offset.Value;
|
|
|
|
}
|
|
|
|
unsigned getMemOffsetRegShifted() const {
|
|
|
|
assert(Mem.OffsetIsReg && "Invalid access!");
|
|
|
|
return Mem.OffsetRegShifted;
|
|
|
|
}
|
|
|
|
const MCExpr *getMemShiftAmount() const {
|
|
|
|
assert(Mem.OffsetIsReg && Mem.OffsetRegShifted && "Invalid access!");
|
|
|
|
return Mem.ShiftAmount;
|
|
|
|
}
|
2011-03-19 06:50:18 +08:00
|
|
|
enum ARM_AM::ShiftOpc getMemShiftType() const {
|
2011-01-18 13:55:21 +08:00
|
|
|
assert(Mem.OffsetIsReg && Mem.OffsetRegShifted && "Invalid access!");
|
|
|
|
return Mem.ShiftType;
|
|
|
|
}
|
|
|
|
bool getMemPreindexed() const { return Mem.Preindexed; }
|
|
|
|
bool getMemPostindexed() const { return Mem.Postindexed; }
|
|
|
|
bool getMemOffsetIsReg() const { return Mem.OffsetIsReg; }
|
|
|
|
bool getMemNegative() const { return Mem.Negative; }
|
|
|
|
bool getMemWriteback() const { return Mem.Writeback; }
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
bool isCoprocNum() const { return Kind == CoprocNum; }
|
|
|
|
bool isCoprocReg() const { return Kind == CoprocReg; }
|
2010-08-11 14:36:53 +08:00
|
|
|
bool isCondCode() const { return Kind == CondCode; }
|
2010-12-07 02:21:12 +08:00
|
|
|
bool isCCOut() const { return Kind == CCOut; }
|
2010-08-11 13:24:50 +08:00
|
|
|
bool isImm() const { return Kind == Immediate; }
|
2011-06-28 07:54:06 +08:00
|
|
|
bool isImm0_255() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return Value >= 0 && Value < 256;
|
|
|
|
}
|
2011-07-14 06:01:08 +08:00
|
|
|
bool isImm0_7() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return Value >= 0 && Value < 8;
|
|
|
|
}
|
|
|
|
bool isImm0_15() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return Value >= 0 && Value < 16;
|
|
|
|
}
|
2011-07-22 07:26:25 +08:00
|
|
|
bool isImm0_31() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return Value >= 0 && Value < 32;
|
|
|
|
}
|
2011-07-26 07:09:14 +08:00
|
|
|
bool isImm1_16() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return Value > 0 && Value < 17;
|
|
|
|
}
|
2011-07-23 07:16:18 +08:00
|
|
|
bool isImm1_32() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return Value > 0 && Value < 33;
|
|
|
|
}
|
2011-07-14 04:10:10 +08:00
|
|
|
bool isImm0_65535() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return Value >= 0 && Value < 65536;
|
|
|
|
}
|
2011-07-20 03:13:28 +08:00
|
|
|
bool isImm0_65535Expr() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
// If it's not a constant expression, it'll generate a fixup and be
|
|
|
|
// handled later.
|
|
|
|
if (!CE) return true;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return Value >= 0 && Value < 65536;
|
|
|
|
}
|
2011-07-27 00:24:27 +08:00
|
|
|
bool isImm24bit() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return Value >= 0 && Value <= 0xffffff;
|
|
|
|
}
|
2011-07-22 01:23:04 +08:00
|
|
|
bool isPKHLSLImm() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return Value >= 0 && Value < 32;
|
|
|
|
}
|
|
|
|
bool isPKHASRImm() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return Value > 0 && Value <= 32;
|
|
|
|
}
|
2011-07-20 00:50:30 +08:00
|
|
|
bool isARMSOImm() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return ARM_AM::getSOImmVal(Value) != -1;
|
|
|
|
}
|
2011-06-28 07:54:06 +08:00
|
|
|
bool isT2SOImm() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return ARM_AM::getT2SOImmVal(Value) != -1;
|
|
|
|
}
|
2011-07-23 01:44:50 +08:00
|
|
|
bool isSetEndImm() const {
|
|
|
|
if (Kind != Immediate)
|
|
|
|
return false;
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return Value == 1 || Value == 0;
|
|
|
|
}
|
2010-11-08 08:32:40 +08:00
|
|
|
bool isReg() const { return Kind == Register; }
|
2010-11-07 03:56:04 +08:00
|
|
|
bool isRegList() const { return Kind == RegisterList; }
|
2010-11-17 12:32:08 +08:00
|
|
|
bool isDPRRegList() const { return Kind == DPRRegisterList; }
|
|
|
|
bool isSPRRegList() const { return Kind == SPRRegisterList; }
|
2010-10-29 08:27:31 +08:00
|
|
|
bool isToken() const { return Kind == Token; }
|
2011-02-08 06:09:15 +08:00
|
|
|
bool isMemBarrierOpt() const { return Kind == MemBarrierOpt; }
|
2010-10-29 08:27:31 +08:00
|
|
|
bool isMemory() const { return Kind == Memory; }
|
2011-07-26 06:20:28 +08:00
|
|
|
bool isShifterImm() const { return Kind == ShifterImmediate; }
|
2011-07-26 04:49:51 +08:00
|
|
|
bool isRegShiftedReg() const { return Kind == ShiftedRegister; }
|
|
|
|
bool isRegShiftedImm() const { return Kind == ShiftedImmediate; }
|
2011-07-28 04:15:40 +08:00
|
|
|
bool isRotImm() const { return Kind == RotateImmediate; }
|
2011-07-29 05:34:26 +08:00
|
|
|
bool isBitfield() const { return Kind == BitfieldDescriptor; }
|
2011-04-01 07:26:08 +08:00
|
|
|
bool isMemMode2() const {
|
|
|
|
if (getMemAddrMode() != ARMII::AddrMode2)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (getMemOffsetIsReg())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (getMemNegative() &&
|
|
|
|
!(getMemPostindexed() || getMemPreindexed()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
|
|
|
|
// The offset must be in the range 0-4095 (imm12).
|
|
|
|
if (Value > 4095 || Value < -4095)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-04-05 01:18:19 +08:00
|
|
|
bool isMemMode3() const {
|
|
|
|
if (getMemAddrMode() != ARMII::AddrMode3)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (getMemOffsetIsReg()) {
|
|
|
|
if (getMemOffsetRegShifted())
|
|
|
|
return false; // No shift with offset reg allowed
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (getMemNegative() &&
|
|
|
|
!(getMemPostindexed() || getMemPreindexed()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
|
|
|
|
if (!CE) return false;
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
|
|
|
|
// The offset must be in the range 0-255 (imm8).
|
|
|
|
if (Value > 255 || Value < -255)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2010-11-09 07:49:57 +08:00
|
|
|
bool isMemMode5() const {
|
2011-01-18 13:55:27 +08:00
|
|
|
if (!isMemory() || getMemOffsetIsReg() || getMemWriteback() ||
|
|
|
|
getMemNegative())
|
2010-11-09 07:49:57 +08:00
|
|
|
return false;
|
2010-11-30 15:44:32 +08:00
|
|
|
|
2011-01-18 13:55:27 +08:00
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
|
2010-11-30 15:44:32 +08:00
|
|
|
if (!CE) return false;
|
|
|
|
|
2010-11-09 07:49:57 +08:00
|
|
|
// The offset must be a multiple of 4 in the range 0-1020.
|
|
|
|
int64_t Value = CE->getValue();
|
|
|
|
return ((Value & 0x3) == 0 && Value <= 1020 && Value >= -1020);
|
|
|
|
}
|
2011-03-25 05:04:58 +08:00
|
|
|
bool isMemMode7() const {
|
|
|
|
if (!isMemory() ||
|
|
|
|
getMemPreindexed() ||
|
|
|
|
getMemPostindexed() ||
|
|
|
|
getMemOffsetIsReg() ||
|
|
|
|
getMemNegative() ||
|
|
|
|
getMemWriteback())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
|
|
|
|
if (!CE) return false;
|
|
|
|
|
|
|
|
if (CE->getValue())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2010-12-14 11:36:38 +08:00
|
|
|
bool isMemModeRegThumb() const {
|
2011-01-18 13:55:27 +08:00
|
|
|
if (!isMemory() || !getMemOffsetIsReg() || getMemWriteback())
|
2010-12-14 11:36:38 +08:00
|
|
|
return false;
|
2011-01-18 13:34:11 +08:00
|
|
|
return true;
|
2010-12-14 11:36:38 +08:00
|
|
|
}
|
|
|
|
bool isMemModeImmThumb() const {
|
2011-01-18 13:55:27 +08:00
|
|
|
if (!isMemory() || getMemOffsetIsReg() || getMemWriteback())
|
2010-11-30 15:44:32 +08:00
|
|
|
return false;
|
|
|
|
|
2011-01-18 13:55:27 +08:00
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
|
2010-11-30 15:44:32 +08:00
|
|
|
if (!CE) return false;
|
|
|
|
|
|
|
|
// The offset must be a multiple of 4 in the range 0-124.
|
|
|
|
uint64_t Value = CE->getValue();
|
|
|
|
return ((Value & 0x3) == 0 && Value <= 124);
|
|
|
|
}
|
2011-02-19 03:45:59 +08:00
|
|
|
bool isMSRMask() const { return Kind == MSRMask; }
|
2011-02-14 21:09:44 +08:00
|
|
|
bool isProcIFlags() const { return Kind == ProcIFlags; }
|
2010-08-11 13:24:50 +08:00
|
|
|
|
|
|
|
void addExpr(MCInst &Inst, const MCExpr *Expr) const {
|
2010-10-29 08:27:31 +08:00
|
|
|
// Add as immediates when possible. Null MCExpr = 0.
|
|
|
|
if (Expr == 0)
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(0));
|
|
|
|
else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
|
2010-08-11 13:24:50 +08:00
|
|
|
Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
|
|
|
|
else
|
|
|
|
Inst.addOperand(MCOperand::CreateExpr(Expr));
|
|
|
|
}
|
|
|
|
|
2010-08-11 14:36:53 +08:00
|
|
|
void addCondCodeOperands(MCInst &Inst, unsigned N) const {
|
2010-08-11 14:37:20 +08:00
|
|
|
assert(N == 2 && "Invalid number of operands!");
|
2010-08-11 14:36:53 +08:00
|
|
|
Inst.addOperand(MCOperand::CreateImm(unsigned(getCondCode())));
|
2010-12-07 02:30:57 +08:00
|
|
|
unsigned RegNum = getCondCode() == ARMCC::AL ? 0: ARM::CPSR;
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(RegNum));
|
2010-08-11 14:36:53 +08:00
|
|
|
}
|
|
|
|
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
void addCoprocNumOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(getCoproc()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void addCoprocRegOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(getCoproc()));
|
|
|
|
}
|
|
|
|
|
2010-12-07 02:21:12 +08:00
|
|
|
void addCCOutOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(getReg()));
|
|
|
|
}
|
|
|
|
|
2009-10-07 06:26:42 +08:00
|
|
|
void addRegOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(getReg()));
|
|
|
|
}
|
|
|
|
|
2011-07-26 04:49:51 +08:00
|
|
|
void addRegShiftedRegOperands(MCInst &Inst, unsigned N) const {
|
2011-07-14 01:50:29 +08:00
|
|
|
assert(N == 3 && "Invalid number of operands!");
|
2011-07-26 04:49:51 +08:00
|
|
|
assert(isRegShiftedReg() && "addRegShiftedRegOperands() on non RegShiftedReg!");
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(RegShiftedReg.SrcReg));
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(RegShiftedReg.ShiftReg));
|
2011-07-14 01:50:29 +08:00
|
|
|
Inst.addOperand(MCOperand::CreateImm(
|
2011-07-26 04:49:51 +08:00
|
|
|
ARM_AM::getSORegOpc(RegShiftedReg.ShiftTy, RegShiftedReg.ShiftImm)));
|
2011-07-14 01:50:29 +08:00
|
|
|
}
|
|
|
|
|
2011-07-26 04:49:51 +08:00
|
|
|
void addRegShiftedImmOperands(MCInst &Inst, unsigned N) const {
|
2011-07-22 07:38:37 +08:00
|
|
|
assert(N == 2 && "Invalid number of operands!");
|
2011-07-26 04:49:51 +08:00
|
|
|
assert(isRegShiftedImm() && "addRegShiftedImmOperands() on non RegShiftedImm!");
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(RegShiftedImm.SrcReg));
|
2011-07-22 02:54:16 +08:00
|
|
|
Inst.addOperand(MCOperand::CreateImm(
|
2011-07-26 04:49:51 +08:00
|
|
|
ARM_AM::getSORegOpc(RegShiftedImm.ShiftTy, RegShiftedImm.ShiftImm)));
|
2011-07-22 02:54:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-26 06:20:28 +08:00
|
|
|
void addShifterImmOperands(MCInst &Inst, unsigned N) const {
|
2011-03-19 06:50:18 +08:00
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
2011-07-26 06:20:28 +08:00
|
|
|
Inst.addOperand(MCOperand::CreateImm((ShifterImm.isASR << 5) |
|
|
|
|
ShifterImm.Imm));
|
2011-03-19 06:50:18 +08:00
|
|
|
}
|
|
|
|
|
2010-11-09 07:49:57 +08:00
|
|
|
void addRegListOperands(MCInst &Inst, unsigned N) const {
|
2010-11-10 06:44:22 +08:00
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
2010-11-10 07:28:44 +08:00
|
|
|
const SmallVectorImpl<unsigned> &RegList = getRegList();
|
|
|
|
for (SmallVectorImpl<unsigned>::const_iterator
|
2010-11-10 06:44:22 +08:00
|
|
|
I = RegList.begin(), E = RegList.end(); I != E; ++I)
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(*I));
|
2010-11-09 07:49:57 +08:00
|
|
|
}
|
|
|
|
|
2010-11-17 12:32:08 +08:00
|
|
|
void addDPRRegListOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
addRegListOperands(Inst, N);
|
|
|
|
}
|
|
|
|
|
|
|
|
void addSPRRegListOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
addRegListOperands(Inst, N);
|
|
|
|
}
|
|
|
|
|
2011-07-28 04:15:40 +08:00
|
|
|
void addRotImmOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
// Encoded as val>>3. The printer handles display as 8, 16, 24.
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(RotImm.Imm >> 3));
|
|
|
|
}
|
|
|
|
|
2011-07-29 05:34:26 +08:00
|
|
|
void addBitfieldOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
// Munge the lsb/width into a bitfield mask.
|
|
|
|
unsigned lsb = Bitfield.LSB;
|
|
|
|
unsigned width = Bitfield.Width;
|
|
|
|
// Make a 32-bit mask w/ the referenced bits clear and all other bits set.
|
|
|
|
uint32_t Mask = ~(((uint32_t)0xffffffff >> lsb) << (32 - width) >>
|
|
|
|
(32 - (lsb + width)));
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(Mask));
|
|
|
|
}
|
|
|
|
|
2010-08-11 13:24:50 +08:00
|
|
|
void addImmOperands(MCInst &Inst, unsigned N) const {
|
2011-06-28 07:54:06 +08:00
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
addExpr(Inst, getImm());
|
|
|
|
}
|
|
|
|
|
|
|
|
void addImm0_255Operands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
addExpr(Inst, getImm());
|
|
|
|
}
|
|
|
|
|
2011-07-14 06:01:08 +08:00
|
|
|
void addImm0_7Operands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
addExpr(Inst, getImm());
|
|
|
|
}
|
|
|
|
|
|
|
|
void addImm0_15Operands(MCInst &Inst, unsigned N) const {
|
2011-07-22 07:26:25 +08:00
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
addExpr(Inst, getImm());
|
|
|
|
}
|
|
|
|
|
|
|
|
void addImm0_31Operands(MCInst &Inst, unsigned N) const {
|
2011-07-14 06:01:08 +08:00
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
addExpr(Inst, getImm());
|
|
|
|
}
|
|
|
|
|
2011-07-26 07:09:14 +08:00
|
|
|
void addImm1_16Operands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
// The constant encodes as the immediate-1, and we store in the instruction
|
|
|
|
// the bits as encoded, so subtract off one here.
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(CE->getValue() - 1));
|
|
|
|
}
|
|
|
|
|
2011-07-23 07:16:18 +08:00
|
|
|
void addImm1_32Operands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
// The constant encodes as the immediate-1, and we store in the instruction
|
|
|
|
// the bits as encoded, so subtract off one here.
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(CE->getValue() - 1));
|
|
|
|
}
|
|
|
|
|
2011-07-14 04:10:10 +08:00
|
|
|
void addImm0_65535Operands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
addExpr(Inst, getImm());
|
|
|
|
}
|
|
|
|
|
2011-07-20 03:13:28 +08:00
|
|
|
void addImm0_65535ExprOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
addExpr(Inst, getImm());
|
2011-07-27 00:24:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void addImm24bitOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
addExpr(Inst, getImm());
|
2011-07-20 03:13:28 +08:00
|
|
|
}
|
|
|
|
|
2011-07-22 01:23:04 +08:00
|
|
|
void addPKHLSLImmOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
addExpr(Inst, getImm());
|
|
|
|
}
|
|
|
|
|
|
|
|
void addPKHASRImmOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
// An ASR value of 32 encodes as 0, so that's how we want to add it to
|
|
|
|
// the instruction as well.
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
int Val = CE->getValue();
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(Val == 32 ? 0 : Val));
|
|
|
|
}
|
|
|
|
|
2011-07-20 00:50:30 +08:00
|
|
|
void addARMSOImmOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
addExpr(Inst, getImm());
|
|
|
|
}
|
|
|
|
|
2011-06-28 07:54:06 +08:00
|
|
|
void addT2SOImmOperands(MCInst &Inst, unsigned N) const {
|
2010-08-11 13:24:50 +08:00
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
addExpr(Inst, getImm());
|
|
|
|
}
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2011-07-23 01:44:50 +08:00
|
|
|
void addSetEndImmOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
addExpr(Inst, getImm());
|
|
|
|
}
|
|
|
|
|
2011-02-08 06:09:15 +08:00
|
|
|
void addMemBarrierOptOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(unsigned(getMemBarrierOpt())));
|
|
|
|
}
|
|
|
|
|
2011-03-25 05:04:58 +08:00
|
|
|
void addMemMode7Operands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && isMemMode7() && "Invalid number of operands!");
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemBaseRegNum()));
|
|
|
|
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
|
2011-03-25 06:05:48 +08:00
|
|
|
(void)CE;
|
2011-03-25 05:04:58 +08:00
|
|
|
assert((CE || CE->getValue() == 0) &&
|
|
|
|
"No offset operand support in mode 7");
|
|
|
|
}
|
|
|
|
|
2011-04-01 07:26:08 +08:00
|
|
|
void addMemMode2Operands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(isMemMode2() && "Invalid mode or number of operands!");
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemBaseRegNum()));
|
|
|
|
unsigned IdxMode = (getMemPreindexed() | getMemPostindexed() << 1);
|
|
|
|
|
|
|
|
if (getMemOffsetIsReg()) {
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemOffsetRegNum()));
|
|
|
|
|
|
|
|
ARM_AM::AddrOpc AMOpc = getMemNegative() ? ARM_AM::sub : ARM_AM::add;
|
|
|
|
ARM_AM::ShiftOpc ShOpc = ARM_AM::no_shift;
|
|
|
|
int64_t ShiftAmount = 0;
|
|
|
|
|
|
|
|
if (getMemOffsetRegShifted()) {
|
|
|
|
ShOpc = getMemShiftType();
|
|
|
|
const MCConstantExpr *CE =
|
|
|
|
dyn_cast<MCConstantExpr>(getMemShiftAmount());
|
|
|
|
ShiftAmount = CE->getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(ARM_AM::getAM2Opc(AMOpc, ShiftAmount,
|
|
|
|
ShOpc, IdxMode)));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a operand placeholder to always yield the same number of operands.
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(0));
|
|
|
|
|
|
|
|
// FIXME: #-0 is encoded differently than #0. Does the parser preserve
|
|
|
|
// the difference?
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
|
|
|
|
assert(CE && "Non-constant mode 2 offset operand!");
|
|
|
|
int64_t Offset = CE->getValue();
|
|
|
|
|
|
|
|
if (Offset >= 0)
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(ARM_AM::getAM2Opc(ARM_AM::add,
|
|
|
|
Offset, ARM_AM::no_shift, IdxMode)));
|
|
|
|
else
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(ARM_AM::getAM2Opc(ARM_AM::sub,
|
|
|
|
-Offset, ARM_AM::no_shift, IdxMode)));
|
|
|
|
}
|
|
|
|
|
2011-04-05 01:18:19 +08:00
|
|
|
void addMemMode3Operands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(isMemMode3() && "Invalid mode or number of operands!");
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemBaseRegNum()));
|
|
|
|
unsigned IdxMode = (getMemPreindexed() | getMemPostindexed() << 1);
|
|
|
|
|
|
|
|
if (getMemOffsetIsReg()) {
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemOffsetRegNum()));
|
|
|
|
|
|
|
|
ARM_AM::AddrOpc AMOpc = getMemNegative() ? ARM_AM::sub : ARM_AM::add;
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(ARM_AM::getAM3Opc(AMOpc, 0,
|
|
|
|
IdxMode)));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a operand placeholder to always yield the same number of operands.
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(0));
|
|
|
|
|
|
|
|
// FIXME: #-0 is encoded differently than #0. Does the parser preserve
|
|
|
|
// the difference?
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
|
|
|
|
assert(CE && "Non-constant mode 3 offset operand!");
|
|
|
|
int64_t Offset = CE->getValue();
|
|
|
|
|
|
|
|
if (Offset >= 0)
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(ARM_AM::getAM3Opc(ARM_AM::add,
|
|
|
|
Offset, IdxMode)));
|
|
|
|
else
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(ARM_AM::getAM3Opc(ARM_AM::sub,
|
|
|
|
-Offset, IdxMode)));
|
|
|
|
}
|
|
|
|
|
2010-10-29 08:27:31 +08:00
|
|
|
void addMemMode5Operands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 2 && isMemMode5() && "Invalid number of operands!");
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2011-01-18 13:55:27 +08:00
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemBaseRegNum()));
|
|
|
|
assert(!getMemOffsetIsReg() && "Invalid mode 5 operand");
|
2010-11-03 09:49:29 +08:00
|
|
|
|
2010-10-30 01:41:25 +08:00
|
|
|
// FIXME: #-0 is encoded differently than #0. Does the parser preserve
|
|
|
|
// the difference?
|
2011-01-18 13:55:27 +08:00
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
|
2011-01-18 13:34:11 +08:00
|
|
|
assert(CE && "Non-constant mode 5 offset operand!");
|
|
|
|
|
|
|
|
// The MCInst offset operand doesn't include the low two bits (like
|
|
|
|
// the instruction encoding).
|
|
|
|
int64_t Offset = CE->getValue() / 4;
|
|
|
|
if (Offset >= 0)
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(ARM_AM::getAM5Opc(ARM_AM::add,
|
|
|
|
Offset)));
|
|
|
|
else
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(ARM_AM::getAM5Opc(ARM_AM::sub,
|
|
|
|
-Offset)));
|
2010-10-29 08:27:31 +08:00
|
|
|
}
|
2010-08-11 13:24:50 +08:00
|
|
|
|
2010-12-14 11:36:38 +08:00
|
|
|
void addMemModeRegThumbOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 2 && isMemModeRegThumb() && "Invalid number of operands!");
|
2011-01-18 13:55:27 +08:00
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemBaseRegNum()));
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemOffsetRegNum()));
|
2010-12-14 11:36:38 +08:00
|
|
|
}
|
2010-11-30 15:44:32 +08:00
|
|
|
|
2010-12-14 11:36:38 +08:00
|
|
|
void addMemModeImmThumbOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 2 && isMemModeImmThumb() && "Invalid number of operands!");
|
2011-01-18 13:55:27 +08:00
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemBaseRegNum()));
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemOffset());
|
2010-12-14 11:36:38 +08:00
|
|
|
assert(CE && "Non-constant mode offset operand!");
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
|
2010-11-30 15:44:32 +08:00
|
|
|
}
|
|
|
|
|
2011-02-19 03:45:59 +08:00
|
|
|
void addMSRMaskOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(unsigned(getMSRMask())));
|
|
|
|
}
|
|
|
|
|
2011-02-14 21:09:44 +08:00
|
|
|
void addProcIFlagsOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(unsigned(getProcIFlags())));
|
|
|
|
}
|
|
|
|
|
2011-07-13 23:34:57 +08:00
|
|
|
virtual void print(raw_ostream &OS) const;
|
2010-08-11 14:37:04 +08:00
|
|
|
|
2010-10-29 01:20:03 +08:00
|
|
|
static ARMOperand *CreateCondCode(ARMCC::CondCodes CC, SMLoc S) {
|
|
|
|
ARMOperand *Op = new ARMOperand(CondCode);
|
2010-08-11 14:37:20 +08:00
|
|
|
Op->CC.Val = CC;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = S;
|
2010-10-29 01:20:03 +08:00
|
|
|
return Op;
|
2010-08-11 14:37:20 +08:00
|
|
|
}
|
|
|
|
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
static ARMOperand *CreateCoprocNum(unsigned CopVal, SMLoc S) {
|
|
|
|
ARMOperand *Op = new ARMOperand(CoprocNum);
|
|
|
|
Op->Cop.Val = CopVal;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = S;
|
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ARMOperand *CreateCoprocReg(unsigned CopVal, SMLoc S) {
|
|
|
|
ARMOperand *Op = new ARMOperand(CoprocReg);
|
|
|
|
Op->Cop.Val = CopVal;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = S;
|
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
2010-12-07 02:21:12 +08:00
|
|
|
static ARMOperand *CreateCCOut(unsigned RegNum, SMLoc S) {
|
|
|
|
ARMOperand *Op = new ARMOperand(CCOut);
|
|
|
|
Op->Reg.RegNum = RegNum;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = S;
|
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
2010-10-29 01:20:03 +08:00
|
|
|
static ARMOperand *CreateToken(StringRef Str, SMLoc S) {
|
|
|
|
ARMOperand *Op = new ARMOperand(Token);
|
2010-04-03 06:27:05 +08:00
|
|
|
Op->Tok.Data = Str.data();
|
|
|
|
Op->Tok.Length = Str.size();
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = S;
|
2010-10-29 01:20:03 +08:00
|
|
|
return Op;
|
2009-10-07 06:26:42 +08:00
|
|
|
}
|
|
|
|
|
2010-11-19 07:43:05 +08:00
|
|
|
static ARMOperand *CreateReg(unsigned RegNum, SMLoc S, SMLoc E) {
|
2010-10-29 01:20:03 +08:00
|
|
|
ARMOperand *Op = new ARMOperand(Register);
|
2010-04-03 06:27:05 +08:00
|
|
|
Op->Reg.RegNum = RegNum;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = E;
|
2010-10-29 01:20:03 +08:00
|
|
|
return Op;
|
2009-10-07 06:26:42 +08:00
|
|
|
}
|
|
|
|
|
2011-07-14 01:50:29 +08:00
|
|
|
static ARMOperand *CreateShiftedRegister(ARM_AM::ShiftOpc ShTy,
|
|
|
|
unsigned SrcReg,
|
|
|
|
unsigned ShiftReg,
|
|
|
|
unsigned ShiftImm,
|
|
|
|
SMLoc S, SMLoc E) {
|
|
|
|
ARMOperand *Op = new ARMOperand(ShiftedRegister);
|
2011-07-26 04:49:51 +08:00
|
|
|
Op->RegShiftedReg.ShiftTy = ShTy;
|
|
|
|
Op->RegShiftedReg.SrcReg = SrcReg;
|
|
|
|
Op->RegShiftedReg.ShiftReg = ShiftReg;
|
|
|
|
Op->RegShiftedReg.ShiftImm = ShiftImm;
|
2011-07-14 01:50:29 +08:00
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = E;
|
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
2011-07-22 02:54:16 +08:00
|
|
|
static ARMOperand *CreateShiftedImmediate(ARM_AM::ShiftOpc ShTy,
|
|
|
|
unsigned SrcReg,
|
|
|
|
unsigned ShiftImm,
|
|
|
|
SMLoc S, SMLoc E) {
|
|
|
|
ARMOperand *Op = new ARMOperand(ShiftedImmediate);
|
2011-07-26 04:49:51 +08:00
|
|
|
Op->RegShiftedImm.ShiftTy = ShTy;
|
|
|
|
Op->RegShiftedImm.SrcReg = SrcReg;
|
|
|
|
Op->RegShiftedImm.ShiftImm = ShiftImm;
|
2011-07-22 02:54:16 +08:00
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = E;
|
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
2011-07-26 06:20:28 +08:00
|
|
|
static ARMOperand *CreateShifterImm(bool isASR, unsigned Imm,
|
2011-03-19 06:50:18 +08:00
|
|
|
SMLoc S, SMLoc E) {
|
2011-07-26 06:20:28 +08:00
|
|
|
ARMOperand *Op = new ARMOperand(ShifterImmediate);
|
|
|
|
Op->ShifterImm.isASR = isASR;
|
|
|
|
Op->ShifterImm.Imm = Imm;
|
2011-03-19 06:50:18 +08:00
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = E;
|
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
2011-07-28 04:15:40 +08:00
|
|
|
static ARMOperand *CreateRotImm(unsigned Imm, SMLoc S, SMLoc E) {
|
|
|
|
ARMOperand *Op = new ARMOperand(RotateImmediate);
|
|
|
|
Op->RotImm.Imm = Imm;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = E;
|
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
2011-07-29 05:34:26 +08:00
|
|
|
static ARMOperand *CreateBitfield(unsigned LSB, unsigned Width,
|
|
|
|
SMLoc S, SMLoc E) {
|
|
|
|
ARMOperand *Op = new ARMOperand(BitfieldDescriptor);
|
|
|
|
Op->Bitfield.LSB = LSB;
|
|
|
|
Op->Bitfield.Width = Width;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = E;
|
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
2010-11-10 06:44:22 +08:00
|
|
|
static ARMOperand *
|
2010-11-10 07:28:44 +08:00
|
|
|
CreateRegList(const SmallVectorImpl<std::pair<unsigned, SMLoc> > &Regs,
|
2010-11-10 08:08:58 +08:00
|
|
|
SMLoc StartLoc, SMLoc EndLoc) {
|
2010-11-17 12:32:08 +08:00
|
|
|
KindTy Kind = RegisterList;
|
|
|
|
|
2011-07-26 05:32:49 +08:00
|
|
|
if (llvm::ARMMCRegisterClasses[ARM::DPRRegClassID].
|
|
|
|
contains(Regs.front().first))
|
2010-11-17 12:32:08 +08:00
|
|
|
Kind = DPRRegisterList;
|
2011-07-26 05:32:49 +08:00
|
|
|
else if (llvm::ARMMCRegisterClasses[ARM::SPRRegClassID].
|
|
|
|
contains(Regs.front().first))
|
2010-11-17 12:32:08 +08:00
|
|
|
Kind = SPRRegisterList;
|
|
|
|
|
|
|
|
ARMOperand *Op = new ARMOperand(Kind);
|
2010-11-10 07:28:44 +08:00
|
|
|
for (SmallVectorImpl<std::pair<unsigned, SMLoc> >::const_iterator
|
2010-11-10 06:44:22 +08:00
|
|
|
I = Regs.begin(), E = Regs.end(); I != E; ++I)
|
2010-11-19 05:50:54 +08:00
|
|
|
Op->Registers.push_back(I->first);
|
2010-11-19 08:38:19 +08:00
|
|
|
array_pod_sort(Op->Registers.begin(), Op->Registers.end());
|
2010-11-10 08:08:58 +08:00
|
|
|
Op->StartLoc = StartLoc;
|
|
|
|
Op->EndLoc = EndLoc;
|
2010-11-07 03:56:04 +08:00
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
2010-10-29 01:20:03 +08:00
|
|
|
static ARMOperand *CreateImm(const MCExpr *Val, SMLoc S, SMLoc E) {
|
|
|
|
ARMOperand *Op = new ARMOperand(Immediate);
|
2010-04-03 06:27:05 +08:00
|
|
|
Op->Imm.Val = Val;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = E;
|
2010-10-29 01:20:03 +08:00
|
|
|
return Op;
|
2009-10-14 06:19:02 +08:00
|
|
|
}
|
|
|
|
|
2011-04-01 07:26:08 +08:00
|
|
|
static ARMOperand *CreateMem(ARMII::AddrMode AddrMode, unsigned BaseRegNum,
|
|
|
|
bool OffsetIsReg, const MCExpr *Offset,
|
|
|
|
int OffsetRegNum, bool OffsetRegShifted,
|
2011-03-19 06:50:18 +08:00
|
|
|
enum ARM_AM::ShiftOpc ShiftType,
|
2010-10-29 01:20:03 +08:00
|
|
|
const MCExpr *ShiftAmount, bool Preindexed,
|
|
|
|
bool Postindexed, bool Negative, bool Writeback,
|
|
|
|
SMLoc S, SMLoc E) {
|
2011-01-18 13:34:05 +08:00
|
|
|
assert((OffsetRegNum == -1 || OffsetIsReg) &&
|
|
|
|
"OffsetRegNum must imply OffsetIsReg!");
|
|
|
|
assert((!OffsetRegShifted || OffsetIsReg) &&
|
|
|
|
"OffsetRegShifted must imply OffsetIsReg!");
|
2011-01-18 13:34:11 +08:00
|
|
|
assert((Offset || OffsetIsReg) &&
|
|
|
|
"Offset must exists unless register offset is used!");
|
2011-01-18 13:34:05 +08:00
|
|
|
assert((!ShiftAmount || (OffsetIsReg && OffsetRegShifted)) &&
|
|
|
|
"Cannot have shift amount without shifted register offset!");
|
|
|
|
assert((!Offset || !OffsetIsReg) &&
|
|
|
|
"Cannot have expression offset and register offset!");
|
|
|
|
|
2010-10-29 01:20:03 +08:00
|
|
|
ARMOperand *Op = new ARMOperand(Memory);
|
2011-04-01 07:26:08 +08:00
|
|
|
Op->Mem.AddrMode = AddrMode;
|
2010-04-03 06:27:05 +08:00
|
|
|
Op->Mem.BaseRegNum = BaseRegNum;
|
|
|
|
Op->Mem.OffsetIsReg = OffsetIsReg;
|
2011-01-18 13:55:15 +08:00
|
|
|
if (OffsetIsReg)
|
|
|
|
Op->Mem.Offset.RegNum = OffsetRegNum;
|
|
|
|
else
|
|
|
|
Op->Mem.Offset.Value = Offset;
|
2010-04-03 06:27:05 +08:00
|
|
|
Op->Mem.OffsetRegShifted = OffsetRegShifted;
|
|
|
|
Op->Mem.ShiftType = ShiftType;
|
|
|
|
Op->Mem.ShiftAmount = ShiftAmount;
|
|
|
|
Op->Mem.Preindexed = Preindexed;
|
|
|
|
Op->Mem.Postindexed = Postindexed;
|
|
|
|
Op->Mem.Negative = Negative;
|
|
|
|
Op->Mem.Writeback = Writeback;
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2010-04-03 06:27:05 +08:00
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = E;
|
2010-10-29 01:20:03 +08:00
|
|
|
return Op;
|
2009-10-07 06:26:42 +08:00
|
|
|
}
|
2011-02-08 06:09:15 +08:00
|
|
|
|
|
|
|
static ARMOperand *CreateMemBarrierOpt(ARM_MB::MemBOpt Opt, SMLoc S) {
|
|
|
|
ARMOperand *Op = new ARMOperand(MemBarrierOpt);
|
|
|
|
Op->MBOpt.Val = Opt;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = S;
|
|
|
|
return Op;
|
|
|
|
}
|
2011-02-14 21:09:44 +08:00
|
|
|
|
|
|
|
static ARMOperand *CreateProcIFlags(ARM_PROC::IFlags IFlags, SMLoc S) {
|
|
|
|
ARMOperand *Op = new ARMOperand(ProcIFlags);
|
|
|
|
Op->IFlags.Val = IFlags;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = S;
|
|
|
|
return Op;
|
|
|
|
}
|
2011-02-19 03:45:59 +08:00
|
|
|
|
|
|
|
static ARMOperand *CreateMSRMask(unsigned MMask, SMLoc S) {
|
|
|
|
ARMOperand *Op = new ARMOperand(MSRMask);
|
|
|
|
Op->MMask.Val = MMask;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = S;
|
|
|
|
return Op;
|
|
|
|
}
|
2009-10-07 06:26:42 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end anonymous namespace.
|
|
|
|
|
2011-07-13 23:34:57 +08:00
|
|
|
void ARMOperand::print(raw_ostream &OS) const {
|
2010-08-11 14:37:12 +08:00
|
|
|
switch (Kind) {
|
|
|
|
case CondCode:
|
2011-01-10 23:26:21 +08:00
|
|
|
OS << "<ARMCC::" << ARMCondCodeToString(getCondCode()) << ">";
|
2010-08-11 14:37:12 +08:00
|
|
|
break;
|
2010-12-07 02:21:12 +08:00
|
|
|
case CCOut:
|
|
|
|
OS << "<ccout " << getReg() << ">";
|
|
|
|
break;
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
case CoprocNum:
|
|
|
|
OS << "<coprocessor number: " << getCoproc() << ">";
|
|
|
|
break;
|
|
|
|
case CoprocReg:
|
|
|
|
OS << "<coprocessor register: " << getCoproc() << ">";
|
|
|
|
break;
|
2011-02-19 03:45:59 +08:00
|
|
|
case MSRMask:
|
|
|
|
OS << "<mask: " << getMSRMask() << ">";
|
|
|
|
break;
|
2010-08-11 14:37:12 +08:00
|
|
|
case Immediate:
|
|
|
|
getImm()->print(OS);
|
|
|
|
break;
|
2011-02-08 06:09:15 +08:00
|
|
|
case MemBarrierOpt:
|
|
|
|
OS << "<ARM_MB::" << MemBOptToString(getMemBarrierOpt()) << ">";
|
|
|
|
break;
|
2010-08-11 14:37:12 +08:00
|
|
|
case Memory:
|
2011-01-18 13:55:21 +08:00
|
|
|
OS << "<memory "
|
2011-04-01 07:26:08 +08:00
|
|
|
<< "am:" << ARMII::AddrModeToString(getMemAddrMode())
|
|
|
|
<< " base:" << getMemBaseRegNum();
|
2011-01-18 13:55:21 +08:00
|
|
|
if (getMemOffsetIsReg()) {
|
|
|
|
OS << " offset:<register " << getMemOffsetRegNum();
|
|
|
|
if (getMemOffsetRegShifted()) {
|
|
|
|
OS << " offset-shift-type:" << getMemShiftType();
|
|
|
|
OS << " offset-shift-amount:" << *getMemShiftAmount();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
OS << " offset:" << *getMemOffset();
|
|
|
|
}
|
|
|
|
if (getMemOffsetIsReg())
|
|
|
|
OS << " (offset-is-reg)";
|
|
|
|
if (getMemPreindexed())
|
|
|
|
OS << " (pre-indexed)";
|
|
|
|
if (getMemPostindexed())
|
|
|
|
OS << " (post-indexed)";
|
|
|
|
if (getMemNegative())
|
|
|
|
OS << " (negative)";
|
|
|
|
if (getMemWriteback())
|
|
|
|
OS << " (writeback)";
|
|
|
|
OS << ">";
|
2010-08-11 14:37:12 +08:00
|
|
|
break;
|
2011-02-14 21:09:44 +08:00
|
|
|
case ProcIFlags: {
|
|
|
|
OS << "<ARM_PROC::";
|
|
|
|
unsigned IFlags = getProcIFlags();
|
|
|
|
for (int i=2; i >= 0; --i)
|
|
|
|
if (IFlags & (1 << i))
|
|
|
|
OS << ARM_PROC::IFlagsToString(1 << i);
|
|
|
|
OS << ">";
|
|
|
|
break;
|
|
|
|
}
|
2010-08-11 14:37:12 +08:00
|
|
|
case Register:
|
2010-11-19 07:43:05 +08:00
|
|
|
OS << "<register " << getReg() << ">";
|
2010-08-11 14:37:12 +08:00
|
|
|
break;
|
2011-07-26 06:20:28 +08:00
|
|
|
case ShifterImmediate:
|
|
|
|
OS << "<shift " << (ShifterImm.isASR ? "asr" : "lsl")
|
|
|
|
<< " #" << ShifterImm.Imm << ">";
|
2011-07-14 01:50:29 +08:00
|
|
|
break;
|
|
|
|
case ShiftedRegister:
|
2011-07-22 02:54:16 +08:00
|
|
|
OS << "<so_reg_reg "
|
2011-07-26 04:49:51 +08:00
|
|
|
<< RegShiftedReg.SrcReg
|
|
|
|
<< ARM_AM::getShiftOpcStr(ARM_AM::getSORegShOp(RegShiftedReg.ShiftImm))
|
|
|
|
<< ", " << RegShiftedReg.ShiftReg << ", "
|
|
|
|
<< ARM_AM::getSORegOffset(RegShiftedReg.ShiftImm)
|
2011-07-14 01:50:29 +08:00
|
|
|
<< ">";
|
2011-03-19 06:50:18 +08:00
|
|
|
break;
|
2011-07-22 02:54:16 +08:00
|
|
|
case ShiftedImmediate:
|
|
|
|
OS << "<so_reg_imm "
|
2011-07-26 04:49:51 +08:00
|
|
|
<< RegShiftedImm.SrcReg
|
|
|
|
<< ARM_AM::getShiftOpcStr(ARM_AM::getSORegShOp(RegShiftedImm.ShiftImm))
|
|
|
|
<< ", " << ARM_AM::getSORegOffset(RegShiftedImm.ShiftImm)
|
2011-07-22 02:54:16 +08:00
|
|
|
<< ">";
|
|
|
|
break;
|
2011-07-28 04:15:40 +08:00
|
|
|
case RotateImmediate:
|
|
|
|
OS << "<ror " << " #" << (RotImm.Imm * 8) << ">";
|
|
|
|
break;
|
2011-07-29 05:34:26 +08:00
|
|
|
case BitfieldDescriptor:
|
|
|
|
OS << "<bitfield " << "lsb: " << Bitfield.LSB
|
|
|
|
<< ", width: " << Bitfield.Width << ">";
|
|
|
|
break;
|
2010-11-17 12:32:08 +08:00
|
|
|
case RegisterList:
|
|
|
|
case DPRRegisterList:
|
|
|
|
case SPRRegisterList: {
|
2010-11-07 03:56:04 +08:00
|
|
|
OS << "<register_list ";
|
|
|
|
|
2010-11-10 07:28:44 +08:00
|
|
|
const SmallVectorImpl<unsigned> &RegList = getRegList();
|
|
|
|
for (SmallVectorImpl<unsigned>::const_iterator
|
2010-11-10 06:44:22 +08:00
|
|
|
I = RegList.begin(), E = RegList.end(); I != E; ) {
|
|
|
|
OS << *I;
|
|
|
|
if (++I < E) OS << ", ";
|
2010-11-07 03:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
OS << ">";
|
|
|
|
break;
|
|
|
|
}
|
2010-08-11 14:37:12 +08:00
|
|
|
case Token:
|
|
|
|
OS << "'" << getToken() << "'";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-08-11 13:24:50 +08:00
|
|
|
|
|
|
|
/// @name Auto-generated Match Functions
|
|
|
|
/// {
|
|
|
|
|
|
|
|
static unsigned MatchRegisterName(StringRef Name);
|
|
|
|
|
|
|
|
/// }
|
|
|
|
|
2011-02-04 05:46:10 +08:00
|
|
|
bool ARMAsmParser::ParseRegister(unsigned &RegNo,
|
|
|
|
SMLoc &StartLoc, SMLoc &EndLoc) {
|
2011-07-27 01:10:22 +08:00
|
|
|
RegNo = tryParseRegister();
|
2011-01-28 01:14:22 +08:00
|
|
|
|
|
|
|
return (RegNo == (unsigned)-1);
|
|
|
|
}
|
|
|
|
|
2009-10-31 06:55:57 +08:00
|
|
|
/// Try to parse a register name. The token must be an Identifier when called,
|
2010-10-30 12:09:10 +08:00
|
|
|
/// and if it is a register name the token is eaten and the register number is
|
|
|
|
/// returned. Otherwise return -1.
|
2010-10-29 01:20:03 +08:00
|
|
|
///
|
2011-07-27 01:10:22 +08:00
|
|
|
int ARMAsmParser::tryParseRegister() {
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2009-10-07 06:26:42 +08:00
|
|
|
assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
|
2010-11-02 00:44:21 +08:00
|
|
|
|
2009-10-07 06:26:42 +08:00
|
|
|
// FIXME: Validate register for the current architecture; we have to do
|
|
|
|
// validation later, so maybe there is no need for this here.
|
2011-01-14 06:50:36 +08:00
|
|
|
std::string upperCase = Tok.getString().str();
|
|
|
|
std::string lowerCase = LowercaseString(upperCase);
|
|
|
|
unsigned RegNum = MatchRegisterName(lowerCase);
|
|
|
|
if (!RegNum) {
|
|
|
|
RegNum = StringSwitch<unsigned>(lowerCase)
|
|
|
|
.Case("r13", ARM::SP)
|
|
|
|
.Case("r14", ARM::LR)
|
|
|
|
.Case("r15", ARM::PC)
|
|
|
|
.Case("ip", ARM::R12)
|
|
|
|
.Default(0);
|
|
|
|
}
|
|
|
|
if (!RegNum) return -1;
|
2011-02-04 05:46:10 +08:00
|
|
|
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat identifier token.
|
2010-10-30 12:09:10 +08:00
|
|
|
return RegNum;
|
|
|
|
}
|
2010-11-02 00:44:21 +08:00
|
|
|
|
2011-07-14 02:49:30 +08:00
|
|
|
// Try to parse a shifter (e.g., "lsl <amt>"). On success, return 0.
|
|
|
|
// If a recoverable error occurs, return 1. If an irrecoverable error
|
|
|
|
// occurs, return -1. An irrecoverable error is one where tokens have been
|
|
|
|
// consumed in the process of trying to parse the shifter (i.e., when it is
|
|
|
|
// indeed a shifter operand, but malformed).
|
2011-07-27 04:41:24 +08:00
|
|
|
int ARMAsmParser::tryParseShiftRegister(
|
2011-03-19 06:50:18 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
|
|
|
|
|
|
|
|
std::string upperCase = Tok.getString().str();
|
|
|
|
std::string lowerCase = LowercaseString(upperCase);
|
|
|
|
ARM_AM::ShiftOpc ShiftTy = StringSwitch<ARM_AM::ShiftOpc>(lowerCase)
|
|
|
|
.Case("lsl", ARM_AM::lsl)
|
|
|
|
.Case("lsr", ARM_AM::lsr)
|
|
|
|
.Case("asr", ARM_AM::asr)
|
|
|
|
.Case("ror", ARM_AM::ror)
|
|
|
|
.Case("rrx", ARM_AM::rrx)
|
|
|
|
.Default(ARM_AM::no_shift);
|
|
|
|
|
|
|
|
if (ShiftTy == ARM_AM::no_shift)
|
2011-07-14 02:49:30 +08:00
|
|
|
return 1;
|
2011-03-19 06:50:18 +08:00
|
|
|
|
2011-07-14 01:50:29 +08:00
|
|
|
Parser.Lex(); // Eat the operator.
|
|
|
|
|
|
|
|
// The source register for the shift has already been added to the
|
|
|
|
// operand list, so we need to pop it off and combine it into the shifted
|
|
|
|
// register operand instead.
|
2011-07-15 02:41:22 +08:00
|
|
|
OwningPtr<ARMOperand> PrevOp((ARMOperand*)Operands.pop_back_val());
|
2011-07-14 01:50:29 +08:00
|
|
|
if (!PrevOp->isReg())
|
|
|
|
return Error(PrevOp->getStartLoc(), "shift must be of a register");
|
|
|
|
int SrcReg = PrevOp->getReg();
|
|
|
|
int64_t Imm = 0;
|
|
|
|
int ShiftReg = 0;
|
|
|
|
if (ShiftTy == ARM_AM::rrx) {
|
|
|
|
// RRX Doesn't have an explicit shift amount. The encoder expects
|
|
|
|
// the shift register to be the same as the source register. Seems odd,
|
|
|
|
// but OK.
|
|
|
|
ShiftReg = SrcReg;
|
|
|
|
} else {
|
|
|
|
// Figure out if this is shifted by a constant or a register (for non-RRX).
|
|
|
|
if (Parser.getTok().is(AsmToken::Hash)) {
|
|
|
|
Parser.Lex(); // Eat hash.
|
|
|
|
SMLoc ImmLoc = Parser.getTok().getLoc();
|
|
|
|
const MCExpr *ShiftExpr = 0;
|
2011-07-14 02:49:30 +08:00
|
|
|
if (getParser().ParseExpression(ShiftExpr)) {
|
|
|
|
Error(ImmLoc, "invalid immediate shift value");
|
|
|
|
return -1;
|
|
|
|
}
|
2011-07-14 01:50:29 +08:00
|
|
|
// The expression must be evaluatable as an immediate.
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftExpr);
|
2011-07-14 02:49:30 +08:00
|
|
|
if (!CE) {
|
|
|
|
Error(ImmLoc, "invalid immediate shift value");
|
|
|
|
return -1;
|
|
|
|
}
|
2011-07-14 01:50:29 +08:00
|
|
|
// Range check the immediate.
|
|
|
|
// lsl, ror: 0 <= imm <= 31
|
|
|
|
// lsr, asr: 0 <= imm <= 32
|
|
|
|
Imm = CE->getValue();
|
|
|
|
if (Imm < 0 ||
|
|
|
|
((ShiftTy == ARM_AM::lsl || ShiftTy == ARM_AM::ror) && Imm > 31) ||
|
|
|
|
((ShiftTy == ARM_AM::lsr || ShiftTy == ARM_AM::asr) && Imm > 32)) {
|
2011-07-14 02:49:30 +08:00
|
|
|
Error(ImmLoc, "immediate shift value out of range");
|
|
|
|
return -1;
|
2011-07-14 01:50:29 +08:00
|
|
|
}
|
|
|
|
} else if (Parser.getTok().is(AsmToken::Identifier)) {
|
2011-07-27 01:10:22 +08:00
|
|
|
ShiftReg = tryParseRegister();
|
2011-07-14 01:50:29 +08:00
|
|
|
SMLoc L = Parser.getTok().getLoc();
|
2011-07-14 02:49:30 +08:00
|
|
|
if (ShiftReg == -1) {
|
|
|
|
Error (L, "expected immediate or register in shift operand");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Error (Parser.getTok().getLoc(),
|
2011-07-14 01:50:29 +08:00
|
|
|
"expected immediate or register in shift operand");
|
2011-07-14 02:49:30 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2011-07-14 01:50:29 +08:00
|
|
|
}
|
|
|
|
|
2011-07-22 02:54:16 +08:00
|
|
|
if (ShiftReg && ShiftTy != ARM_AM::rrx)
|
|
|
|
Operands.push_back(ARMOperand::CreateShiftedRegister(ShiftTy, SrcReg,
|
2011-07-26 04:49:51 +08:00
|
|
|
ShiftReg, Imm,
|
2011-03-19 06:50:18 +08:00
|
|
|
S, Parser.getTok().getLoc()));
|
2011-07-22 02:54:16 +08:00
|
|
|
else
|
|
|
|
Operands.push_back(ARMOperand::CreateShiftedImmediate(ShiftTy, SrcReg, Imm,
|
|
|
|
S, Parser.getTok().getLoc()));
|
2011-03-19 06:50:18 +08:00
|
|
|
|
2011-07-14 02:49:30 +08:00
|
|
|
return 0;
|
2011-03-19 06:50:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-19 07:43:05 +08:00
|
|
|
/// Try to parse a register name. The token must be an Identifier when called.
|
|
|
|
/// If it's a register, an AsmOperand is created. Another AsmOperand is created
|
|
|
|
/// if there is a "writeback". 'true' if it's not a register.
|
2010-10-30 12:09:10 +08:00
|
|
|
///
|
|
|
|
/// TODO this is likely to change to allow different register types and or to
|
|
|
|
/// parse for a specific register type.
|
2010-11-19 07:43:05 +08:00
|
|
|
bool ARMAsmParser::
|
2011-07-27 01:10:22 +08:00
|
|
|
tryParseRegisterWithWriteBack(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2010-10-30 12:09:10 +08:00
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
2011-07-27 01:10:22 +08:00
|
|
|
int RegNo = tryParseRegister();
|
2010-11-07 06:36:58 +08:00
|
|
|
if (RegNo == -1)
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2010-11-02 00:44:21 +08:00
|
|
|
|
2010-11-19 07:43:05 +08:00
|
|
|
Operands.push_back(ARMOperand::CreateReg(RegNo, S, Parser.getTok().getLoc()));
|
2009-10-07 06:26:42 +08:00
|
|
|
|
2010-10-30 12:09:10 +08:00
|
|
|
const AsmToken &ExclaimTok = Parser.getTok();
|
|
|
|
if (ExclaimTok.is(AsmToken::Exclaim)) {
|
2010-11-19 07:43:05 +08:00
|
|
|
Operands.push_back(ARMOperand::CreateToken(ExclaimTok.getString(),
|
|
|
|
ExclaimTok.getLoc()));
|
2010-10-30 12:09:10 +08:00
|
|
|
Parser.Lex(); // Eat exclaim token
|
2009-10-08 02:01:35 +08:00
|
|
|
}
|
|
|
|
|
2010-11-19 07:43:05 +08:00
|
|
|
return false;
|
2009-10-07 06:26:42 +08:00
|
|
|
}
|
|
|
|
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
/// MatchCoprocessorOperandName - Try to parse an coprocessor related
|
|
|
|
/// instruction with a symbolic operand name. Example: "p1", "p7", "c3",
|
|
|
|
/// "c5", ...
|
|
|
|
static int MatchCoprocessorOperandName(StringRef Name, char CoprocOp) {
|
2011-01-14 05:46:02 +08:00
|
|
|
// Use the same layout as the tablegen'erated register name matcher. Ugly,
|
|
|
|
// but efficient.
|
|
|
|
switch (Name.size()) {
|
|
|
|
default: break;
|
|
|
|
case 2:
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
if (Name[0] != CoprocOp)
|
2011-01-14 05:46:02 +08:00
|
|
|
return -1;
|
|
|
|
switch (Name[1]) {
|
|
|
|
default: return -1;
|
|
|
|
case '0': return 0;
|
|
|
|
case '1': return 1;
|
|
|
|
case '2': return 2;
|
|
|
|
case '3': return 3;
|
|
|
|
case '4': return 4;
|
|
|
|
case '5': return 5;
|
|
|
|
case '6': return 6;
|
|
|
|
case '7': return 7;
|
|
|
|
case '8': return 8;
|
|
|
|
case '9': return 9;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
if (Name[0] != CoprocOp || Name[1] != '1')
|
2011-01-14 05:46:02 +08:00
|
|
|
return -1;
|
|
|
|
switch (Name[2]) {
|
|
|
|
default: return -1;
|
|
|
|
case '0': return 10;
|
|
|
|
case '1': return 11;
|
|
|
|
case '2': return 12;
|
|
|
|
case '3': return 13;
|
|
|
|
case '4': return 14;
|
|
|
|
case '5': return 15;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-07-26 04:14:50 +08:00
|
|
|
/// parseCoprocNumOperand - Try to parse an coprocessor number operand. The
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
/// token must be an Identifier when called, and if it is a coprocessor
|
|
|
|
/// number, the token is eaten and the operand is added to the operand list.
|
2011-02-12 09:34:40 +08:00
|
|
|
ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
2011-07-26 04:14:50 +08:00
|
|
|
parseCoprocNumOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2011-01-14 05:46:02 +08:00
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
|
|
|
|
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
int Num = MatchCoprocessorOperandName(Tok.getString(), 'p');
|
2011-01-14 05:46:02 +08:00
|
|
|
if (Num == -1)
|
2011-02-12 09:34:40 +08:00
|
|
|
return MatchOperand_NoMatch;
|
2011-01-14 05:46:02 +08:00
|
|
|
|
|
|
|
Parser.Lex(); // Eat identifier token.
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
Operands.push_back(ARMOperand::CreateCoprocNum(Num, S));
|
2011-02-12 09:34:40 +08:00
|
|
|
return MatchOperand_Success;
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
}
|
|
|
|
|
2011-07-26 04:14:50 +08:00
|
|
|
/// parseCoprocRegOperand - Try to parse an coprocessor register operand. The
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
/// token must be an Identifier when called, and if it is a coprocessor
|
|
|
|
/// number, the token is eaten and the operand is added to the operand list.
|
2011-02-12 09:34:40 +08:00
|
|
|
ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
2011-07-26 04:14:50 +08:00
|
|
|
parseCoprocRegOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
|
|
|
|
|
|
|
|
int Reg = MatchCoprocessorOperandName(Tok.getString(), 'c');
|
|
|
|
if (Reg == -1)
|
2011-02-12 09:34:40 +08:00
|
|
|
return MatchOperand_NoMatch;
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
|
|
|
|
Parser.Lex(); // Eat identifier token.
|
|
|
|
Operands.push_back(ARMOperand::CreateCoprocReg(Reg, S));
|
2011-02-12 09:34:40 +08:00
|
|
|
return MatchOperand_Success;
|
2011-01-14 05:46:02 +08:00
|
|
|
}
|
|
|
|
|
2010-10-29 01:23:41 +08:00
|
|
|
/// Parse a register list, return it if successful else return null. The first
|
|
|
|
/// token must be a '{' when called.
|
2010-11-19 07:43:05 +08:00
|
|
|
bool ARMAsmParser::
|
2011-07-27 01:10:22 +08:00
|
|
|
parseRegisterList(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2010-01-20 05:44:56 +08:00
|
|
|
assert(Parser.getTok().is(AsmToken::LCurly) &&
|
2010-11-06 18:48:18 +08:00
|
|
|
"Token is not a Left Curly Brace");
|
2010-11-07 06:36:58 +08:00
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2010-11-10 06:44:22 +08:00
|
|
|
// Read the rest of the registers in the list.
|
|
|
|
unsigned PrevRegNum = 0;
|
2010-11-10 07:28:44 +08:00
|
|
|
SmallVector<std::pair<unsigned, SMLoc>, 32> Registers;
|
2009-10-10 05:12:28 +08:00
|
|
|
|
2010-11-10 06:44:22 +08:00
|
|
|
do {
|
2010-11-07 06:36:58 +08:00
|
|
|
bool IsRange = Parser.getTok().is(AsmToken::Minus);
|
2010-11-10 06:44:22 +08:00
|
|
|
Parser.Lex(); // Eat non-identifier token.
|
2009-10-10 05:12:28 +08:00
|
|
|
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &RegTok = Parser.getTok();
|
2009-10-10 05:12:28 +08:00
|
|
|
SMLoc RegLoc = RegTok.getLoc();
|
2010-10-29 01:23:41 +08:00
|
|
|
if (RegTok.isNot(AsmToken::Identifier)) {
|
|
|
|
Error(RegLoc, "register expected");
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2010-10-29 01:23:41 +08:00
|
|
|
}
|
2010-11-07 06:36:58 +08:00
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
int RegNum = tryParseRegister();
|
2010-10-29 01:23:41 +08:00
|
|
|
if (RegNum == -1) {
|
|
|
|
Error(RegLoc, "register expected");
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2010-10-29 01:23:41 +08:00
|
|
|
}
|
2009-10-10 05:12:28 +08:00
|
|
|
|
2010-11-07 06:36:58 +08:00
|
|
|
if (IsRange) {
|
|
|
|
int Reg = PrevRegNum;
|
|
|
|
do {
|
|
|
|
++Reg;
|
|
|
|
Registers.push_back(std::make_pair(Reg, RegLoc));
|
|
|
|
} while (Reg != RegNum);
|
|
|
|
} else {
|
|
|
|
Registers.push_back(std::make_pair(RegNum, RegLoc));
|
|
|
|
}
|
|
|
|
|
|
|
|
PrevRegNum = RegNum;
|
2010-11-10 06:44:22 +08:00
|
|
|
} while (Parser.getTok().is(AsmToken::Comma) ||
|
|
|
|
Parser.getTok().is(AsmToken::Minus));
|
2010-11-07 06:36:58 +08:00
|
|
|
|
|
|
|
// Process the right curly brace of the list.
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &RCurlyTok = Parser.getTok();
|
2010-10-29 01:23:41 +08:00
|
|
|
if (RCurlyTok.isNot(AsmToken::RCurly)) {
|
|
|
|
Error(RCurlyTok.getLoc(), "'}' expected");
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2010-10-29 01:23:41 +08:00
|
|
|
}
|
2009-10-10 05:12:28 +08:00
|
|
|
|
2010-11-07 06:36:58 +08:00
|
|
|
SMLoc E = RCurlyTok.getLoc();
|
|
|
|
Parser.Lex(); // Eat right curly brace token.
|
2010-11-30 07:18:01 +08:00
|
|
|
|
2010-11-07 06:36:58 +08:00
|
|
|
// Verify the register list.
|
2010-11-10 07:28:44 +08:00
|
|
|
SmallVectorImpl<std::pair<unsigned, SMLoc> >::const_iterator
|
2010-11-07 06:36:58 +08:00
|
|
|
RI = Registers.begin(), RE = Registers.end();
|
|
|
|
|
2011-01-13 05:20:59 +08:00
|
|
|
unsigned HighRegNum = getARMRegisterNumbering(RI->first);
|
2010-11-10 07:45:59 +08:00
|
|
|
bool EmittedWarning = false;
|
|
|
|
|
2011-01-13 05:20:59 +08:00
|
|
|
DenseMap<unsigned, bool> RegMap;
|
|
|
|
RegMap[HighRegNum] = true;
|
|
|
|
|
2010-11-07 06:36:58 +08:00
|
|
|
for (++RI; RI != RE; ++RI) {
|
2010-11-10 06:44:22 +08:00
|
|
|
const std::pair<unsigned, SMLoc> &RegInfo = *RI;
|
2011-01-13 05:20:59 +08:00
|
|
|
unsigned Reg = getARMRegisterNumbering(RegInfo.first);
|
2010-11-07 06:36:58 +08:00
|
|
|
|
2010-11-10 07:45:59 +08:00
|
|
|
if (RegMap[Reg]) {
|
2010-11-07 06:36:58 +08:00
|
|
|
Error(RegInfo.second, "register duplicated in register list");
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2010-11-07 06:36:58 +08:00
|
|
|
}
|
|
|
|
|
2010-11-10 07:45:59 +08:00
|
|
|
if (!EmittedWarning && Reg < HighRegNum)
|
2010-11-07 06:36:58 +08:00
|
|
|
Warning(RegInfo.second,
|
|
|
|
"register not in ascending order in register list");
|
|
|
|
|
2010-11-10 07:45:59 +08:00
|
|
|
RegMap[Reg] = true;
|
|
|
|
HighRegNum = std::max(Reg, HighRegNum);
|
2010-11-07 06:36:58 +08:00
|
|
|
}
|
|
|
|
|
2010-11-19 07:43:05 +08:00
|
|
|
Operands.push_back(ARMOperand::CreateRegList(Registers, S, E));
|
|
|
|
return false;
|
2009-10-10 05:12:28 +08:00
|
|
|
}
|
|
|
|
|
2011-07-26 04:14:50 +08:00
|
|
|
/// parseMemBarrierOptOperand - Try to parse DSB/DMB data barrier options.
|
2011-02-12 09:34:40 +08:00
|
|
|
ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
2011-07-26 04:14:50 +08:00
|
|
|
parseMemBarrierOptOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2011-02-08 06:09:15 +08:00
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
|
|
|
|
StringRef OptStr = Tok.getString();
|
|
|
|
|
|
|
|
unsigned Opt = StringSwitch<unsigned>(OptStr.slice(0, OptStr.size()))
|
|
|
|
.Case("sy", ARM_MB::SY)
|
|
|
|
.Case("st", ARM_MB::ST)
|
2011-07-14 07:40:38 +08:00
|
|
|
.Case("sh", ARM_MB::ISH)
|
2011-02-08 06:09:15 +08:00
|
|
|
.Case("ish", ARM_MB::ISH)
|
2011-07-14 07:40:38 +08:00
|
|
|
.Case("shst", ARM_MB::ISHST)
|
2011-02-08 06:09:15 +08:00
|
|
|
.Case("ishst", ARM_MB::ISHST)
|
|
|
|
.Case("nsh", ARM_MB::NSH)
|
2011-07-14 07:40:38 +08:00
|
|
|
.Case("un", ARM_MB::NSH)
|
2011-02-08 06:09:15 +08:00
|
|
|
.Case("nshst", ARM_MB::NSHST)
|
2011-07-14 07:40:38 +08:00
|
|
|
.Case("unst", ARM_MB::NSHST)
|
2011-02-08 06:09:15 +08:00
|
|
|
.Case("osh", ARM_MB::OSH)
|
|
|
|
.Case("oshst", ARM_MB::OSHST)
|
|
|
|
.Default(~0U);
|
|
|
|
|
|
|
|
if (Opt == ~0U)
|
2011-02-12 09:34:40 +08:00
|
|
|
return MatchOperand_NoMatch;
|
2011-02-08 06:09:15 +08:00
|
|
|
|
|
|
|
Parser.Lex(); // Eat identifier token.
|
|
|
|
Operands.push_back(ARMOperand::CreateMemBarrierOpt((ARM_MB::MemBOpt)Opt, S));
|
2011-02-12 09:34:40 +08:00
|
|
|
return MatchOperand_Success;
|
2011-02-08 06:09:15 +08:00
|
|
|
}
|
|
|
|
|
2011-07-26 04:14:50 +08:00
|
|
|
/// parseProcIFlagsOperand - Try to parse iflags from CPS instruction.
|
2011-02-14 21:09:44 +08:00
|
|
|
ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
2011-07-26 04:14:50 +08:00
|
|
|
parseProcIFlagsOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2011-02-14 21:09:44 +08:00
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
|
|
|
|
StringRef IFlagsStr = Tok.getString();
|
|
|
|
|
|
|
|
unsigned IFlags = 0;
|
|
|
|
for (int i = 0, e = IFlagsStr.size(); i != e; ++i) {
|
|
|
|
unsigned Flag = StringSwitch<unsigned>(IFlagsStr.substr(i, 1))
|
|
|
|
.Case("a", ARM_PROC::A)
|
|
|
|
.Case("i", ARM_PROC::I)
|
|
|
|
.Case("f", ARM_PROC::F)
|
|
|
|
.Default(~0U);
|
|
|
|
|
|
|
|
// If some specific iflag is already set, it means that some letter is
|
|
|
|
// present more than once, this is not acceptable.
|
|
|
|
if (Flag == ~0U || (IFlags & Flag))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
IFlags |= Flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
Parser.Lex(); // Eat identifier token.
|
|
|
|
Operands.push_back(ARMOperand::CreateProcIFlags((ARM_PROC::IFlags)IFlags, S));
|
|
|
|
return MatchOperand_Success;
|
2011-02-19 03:45:59 +08:00
|
|
|
}
|
|
|
|
|
2011-07-26 04:14:50 +08:00
|
|
|
/// parseMSRMaskOperand - Try to parse mask flags from MSR instruction.
|
2011-02-19 03:45:59 +08:00
|
|
|
ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
2011-07-26 04:14:50 +08:00
|
|
|
parseMSRMaskOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2011-02-19 03:45:59 +08:00
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
|
|
|
|
StringRef Mask = Tok.getString();
|
|
|
|
|
|
|
|
// Split spec_reg from flag, example: CPSR_sxf => "CPSR" and "sxf"
|
|
|
|
size_t Start = 0, Next = Mask.find('_');
|
|
|
|
StringRef Flags = "";
|
2011-07-20 06:45:10 +08:00
|
|
|
std::string SpecReg = LowercaseString(Mask.slice(Start, Next));
|
2011-02-19 03:45:59 +08:00
|
|
|
if (Next != StringRef::npos)
|
|
|
|
Flags = Mask.slice(Next+1, Mask.size());
|
|
|
|
|
|
|
|
// FlagsVal contains the complete mask:
|
|
|
|
// 3-0: Mask
|
|
|
|
// 4: Special Reg (cpsr, apsr => 0; spsr => 1)
|
|
|
|
unsigned FlagsVal = 0;
|
|
|
|
|
|
|
|
if (SpecReg == "apsr") {
|
|
|
|
FlagsVal = StringSwitch<unsigned>(Flags)
|
2011-07-20 06:45:10 +08:00
|
|
|
.Case("nzcvq", 0x8) // same as CPSR_f
|
2011-02-19 03:45:59 +08:00
|
|
|
.Case("g", 0x4) // same as CPSR_s
|
|
|
|
.Case("nzcvqg", 0xc) // same as CPSR_fs
|
|
|
|
.Default(~0U);
|
|
|
|
|
2011-02-19 08:43:45 +08:00
|
|
|
if (FlagsVal == ~0U) {
|
2011-02-19 03:45:59 +08:00
|
|
|
if (!Flags.empty())
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
else
|
|
|
|
FlagsVal = 0; // No flag
|
2011-02-19 08:43:45 +08:00
|
|
|
}
|
2011-02-19 03:45:59 +08:00
|
|
|
} else if (SpecReg == "cpsr" || SpecReg == "spsr") {
|
2011-05-25 08:35:03 +08:00
|
|
|
if (Flags == "all") // cpsr_all is an alias for cpsr_fc
|
|
|
|
Flags = "fc";
|
2011-02-19 03:45:59 +08:00
|
|
|
for (int i = 0, e = Flags.size(); i != e; ++i) {
|
|
|
|
unsigned Flag = StringSwitch<unsigned>(Flags.substr(i, 1))
|
|
|
|
.Case("c", 1)
|
|
|
|
.Case("x", 2)
|
|
|
|
.Case("s", 4)
|
|
|
|
.Case("f", 8)
|
|
|
|
.Default(~0U);
|
|
|
|
|
|
|
|
// If some specific flag is already set, it means that some letter is
|
|
|
|
// present more than once, this is not acceptable.
|
|
|
|
if (FlagsVal == ~0U || (FlagsVal & Flag))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
FlagsVal |= Flag;
|
|
|
|
}
|
|
|
|
} else // No match for special register.
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
// Special register without flags are equivalent to "fc" flags.
|
|
|
|
if (!FlagsVal)
|
|
|
|
FlagsVal = 0x9;
|
|
|
|
|
|
|
|
// Bit 4: Special Reg (cpsr, apsr => 0; spsr => 1)
|
|
|
|
if (SpecReg == "spsr")
|
|
|
|
FlagsVal |= 16;
|
|
|
|
|
|
|
|
Parser.Lex(); // Eat identifier token.
|
|
|
|
Operands.push_back(ARMOperand::CreateMSRMask(FlagsVal, S));
|
|
|
|
return MatchOperand_Success;
|
2011-02-14 21:09:44 +08:00
|
|
|
}
|
|
|
|
|
2011-07-26 04:14:50 +08:00
|
|
|
/// parseMemMode2Operand - Try to parse memory addressing mode 2 operand.
|
2011-04-01 07:26:08 +08:00
|
|
|
ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
2011-07-26 04:14:50 +08:00
|
|
|
parseMemMode2Operand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2011-04-01 08:06:01 +08:00
|
|
|
assert(Parser.getTok().is(AsmToken::LBrac) && "Token is not a \"[\"");
|
2011-04-01 07:26:08 +08:00
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
if (parseMemory(Operands, ARMII::AddrMode2))
|
2011-04-01 07:26:08 +08:00
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
|
2011-07-26 04:14:50 +08:00
|
|
|
/// parseMemMode3Operand - Try to parse memory addressing mode 3 operand.
|
2011-04-05 01:18:19 +08:00
|
|
|
ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
2011-07-26 04:14:50 +08:00
|
|
|
parseMemMode3Operand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2011-04-05 01:18:19 +08:00
|
|
|
assert(Parser.getTok().is(AsmToken::LBrac) && "Token is not a \"[\"");
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
if (parseMemory(Operands, ARMII::AddrMode3))
|
2011-04-05 01:18:19 +08:00
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
|
2011-07-22 01:23:04 +08:00
|
|
|
ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
|
|
|
parsePKHImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands, StringRef Op,
|
|
|
|
int Low, int High) {
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
if (Tok.isNot(AsmToken::Identifier)) {
|
|
|
|
Error(Parser.getTok().getLoc(), Op + " operand expected.");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
StringRef ShiftName = Tok.getString();
|
|
|
|
std::string LowerOp = LowercaseString(Op);
|
|
|
|
std::string UpperOp = UppercaseString(Op);
|
|
|
|
if (ShiftName != LowerOp && ShiftName != UpperOp) {
|
|
|
|
Error(Parser.getTok().getLoc(), Op + " operand expected.");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
Parser.Lex(); // Eat shift type token.
|
|
|
|
|
|
|
|
// There must be a '#' and a shift amount.
|
|
|
|
if (Parser.getTok().isNot(AsmToken::Hash)) {
|
|
|
|
Error(Parser.getTok().getLoc(), "'#' expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
Parser.Lex(); // Eat hash token.
|
|
|
|
|
|
|
|
const MCExpr *ShiftAmount;
|
|
|
|
SMLoc Loc = Parser.getTok().getLoc();
|
|
|
|
if (getParser().ParseExpression(ShiftAmount)) {
|
|
|
|
Error(Loc, "illegal expression");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
|
|
|
|
if (!CE) {
|
|
|
|
Error(Loc, "constant expression expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
int Val = CE->getValue();
|
|
|
|
if (Val < Low || Val > High) {
|
|
|
|
Error(Loc, "immediate value out of range");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
|
|
|
|
Operands.push_back(ARMOperand::CreateImm(CE, Loc, Parser.getTok().getLoc()));
|
|
|
|
|
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
|
2011-07-23 01:44:50 +08:00
|
|
|
ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
|
|
|
parseSetEndImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
SMLoc S = Tok.getLoc();
|
|
|
|
if (Tok.isNot(AsmToken::Identifier)) {
|
|
|
|
Error(Tok.getLoc(), "'be' or 'le' operand expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
int Val = StringSwitch<int>(Tok.getString())
|
|
|
|
.Case("be", 1)
|
|
|
|
.Case("le", 0)
|
|
|
|
.Default(-1);
|
|
|
|
Parser.Lex(); // Eat the token.
|
|
|
|
|
|
|
|
if (Val == -1) {
|
|
|
|
Error(Tok.getLoc(), "'be' or 'le' operand expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
Operands.push_back(ARMOperand::CreateImm(MCConstantExpr::Create(Val,
|
|
|
|
getContext()),
|
|
|
|
S, Parser.getTok().getLoc()));
|
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
|
2011-07-26 06:20:28 +08:00
|
|
|
/// parseShifterImm - Parse the shifter immediate operand for SSAT/USAT
|
|
|
|
/// instructions. Legal values are:
|
|
|
|
/// lsl #n 'n' in [0,31]
|
|
|
|
/// asr #n 'n' in [1,32]
|
|
|
|
/// n == 32 encoded as n == 0.
|
|
|
|
ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
|
|
|
parseShifterImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
SMLoc S = Tok.getLoc();
|
|
|
|
if (Tok.isNot(AsmToken::Identifier)) {
|
|
|
|
Error(S, "shift operator 'asr' or 'lsl' expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
StringRef ShiftName = Tok.getString();
|
|
|
|
bool isASR;
|
|
|
|
if (ShiftName == "lsl" || ShiftName == "LSL")
|
|
|
|
isASR = false;
|
|
|
|
else if (ShiftName == "asr" || ShiftName == "ASR")
|
|
|
|
isASR = true;
|
|
|
|
else {
|
|
|
|
Error(S, "shift operator 'asr' or 'lsl' expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
Parser.Lex(); // Eat the operator.
|
|
|
|
|
|
|
|
// A '#' and a shift amount.
|
|
|
|
if (Parser.getTok().isNot(AsmToken::Hash)) {
|
|
|
|
Error(Parser.getTok().getLoc(), "'#' expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
Parser.Lex(); // Eat hash token.
|
|
|
|
|
|
|
|
const MCExpr *ShiftAmount;
|
|
|
|
SMLoc E = Parser.getTok().getLoc();
|
|
|
|
if (getParser().ParseExpression(ShiftAmount)) {
|
|
|
|
Error(E, "malformed shift expression");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
|
|
|
|
if (!CE) {
|
|
|
|
Error(E, "shift amount must be an immediate");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t Val = CE->getValue();
|
|
|
|
if (isASR) {
|
|
|
|
// Shift amount must be in [1,32]
|
|
|
|
if (Val < 1 || Val > 32) {
|
|
|
|
Error(E, "'asr' shift amount must be in range [1,32]");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
// asr #32 encoded as asr #0.
|
|
|
|
if (Val == 32) Val = 0;
|
|
|
|
} else {
|
|
|
|
// Shift amount must be in [1,32]
|
|
|
|
if (Val < 0 || Val > 31) {
|
|
|
|
Error(E, "'lsr' shift amount must be in range [0,31]");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
E = Parser.getTok().getLoc();
|
|
|
|
Operands.push_back(ARMOperand::CreateShifterImm(isASR, Val, S, E));
|
|
|
|
|
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
|
2011-07-28 04:15:40 +08:00
|
|
|
/// parseRotImm - Parse the shifter immediate operand for SXTB/UXTB family
|
|
|
|
/// of instructions. Legal values are:
|
|
|
|
/// ror #n 'n' in {0, 8, 16, 24}
|
|
|
|
ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
|
|
|
parseRotImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
SMLoc S = Tok.getLoc();
|
|
|
|
if (Tok.isNot(AsmToken::Identifier)) {
|
|
|
|
Error(S, "rotate operator 'ror' expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
StringRef ShiftName = Tok.getString();
|
|
|
|
if (ShiftName != "ror" && ShiftName != "ROR") {
|
|
|
|
Error(S, "rotate operator 'ror' expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
Parser.Lex(); // Eat the operator.
|
|
|
|
|
|
|
|
// A '#' and a rotate amount.
|
|
|
|
if (Parser.getTok().isNot(AsmToken::Hash)) {
|
|
|
|
Error(Parser.getTok().getLoc(), "'#' expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
Parser.Lex(); // Eat hash token.
|
|
|
|
|
|
|
|
const MCExpr *ShiftAmount;
|
|
|
|
SMLoc E = Parser.getTok().getLoc();
|
|
|
|
if (getParser().ParseExpression(ShiftAmount)) {
|
|
|
|
Error(E, "malformed rotate expression");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(ShiftAmount);
|
|
|
|
if (!CE) {
|
|
|
|
Error(E, "rotate amount must be an immediate");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t Val = CE->getValue();
|
|
|
|
// Shift amount must be in {0, 8, 16, 24} (0 is undocumented extension)
|
|
|
|
// normally, zero is represented in asm by omitting the rotate operand
|
|
|
|
// entirely.
|
|
|
|
if (Val != 8 && Val != 16 && Val != 24 && Val != 0) {
|
|
|
|
Error(E, "'ror' rotate amount must be 8, 16, or 24");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
|
|
|
|
E = Parser.getTok().getLoc();
|
|
|
|
Operands.push_back(ARMOperand::CreateRotImm(Val, S, E));
|
|
|
|
|
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
|
2011-07-29 05:34:26 +08:00
|
|
|
ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
|
|
|
parseBitfield(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
|
|
|
// The bitfield descriptor is really two operands, the LSB and the width.
|
|
|
|
if (Parser.getTok().isNot(AsmToken::Hash)) {
|
|
|
|
Error(Parser.getTok().getLoc(), "'#' expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
Parser.Lex(); // Eat hash token.
|
|
|
|
|
|
|
|
const MCExpr *LSBExpr;
|
|
|
|
SMLoc E = Parser.getTok().getLoc();
|
|
|
|
if (getParser().ParseExpression(LSBExpr)) {
|
|
|
|
Error(E, "malformed immediate expression");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(LSBExpr);
|
|
|
|
if (!CE) {
|
|
|
|
Error(E, "'lsb' operand must be an immediate");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t LSB = CE->getValue();
|
|
|
|
// The LSB must be in the range [0,31]
|
|
|
|
if (LSB < 0 || LSB > 31) {
|
|
|
|
Error(E, "'lsb' operand must be in the range [0,31]");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
E = Parser.getTok().getLoc();
|
|
|
|
|
|
|
|
// Expect another immediate operand.
|
|
|
|
if (Parser.getTok().isNot(AsmToken::Comma)) {
|
|
|
|
Error(Parser.getTok().getLoc(), "too few operands");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
Parser.Lex(); // Eat hash token.
|
|
|
|
if (Parser.getTok().isNot(AsmToken::Hash)) {
|
|
|
|
Error(Parser.getTok().getLoc(), "'#' expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
Parser.Lex(); // Eat hash token.
|
|
|
|
|
|
|
|
const MCExpr *WidthExpr;
|
|
|
|
if (getParser().ParseExpression(WidthExpr)) {
|
|
|
|
Error(E, "malformed immediate expression");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
CE = dyn_cast<MCConstantExpr>(WidthExpr);
|
|
|
|
if (!CE) {
|
|
|
|
Error(E, "'width' operand must be an immediate");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t Width = CE->getValue();
|
|
|
|
// The LSB must be in the range [1,32-lsb]
|
|
|
|
if (Width < 1 || Width > 32 - LSB) {
|
|
|
|
Error(E, "'width' operand must be in the range [1,32-lsb]");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
E = Parser.getTok().getLoc();
|
|
|
|
|
|
|
|
Operands.push_back(ARMOperand::CreateBitfield(LSB, Width, S, E));
|
|
|
|
|
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
/// cvtLdWriteBackRegAddrMode2 - Convert parsed operands to MCInst.
|
2011-04-01 07:26:08 +08:00
|
|
|
/// Needed here because the Asm Gen Matcher can't handle properly tied operands
|
|
|
|
/// when they refer multiple MIOperands inside a single one.
|
|
|
|
bool ARMAsmParser::
|
2011-07-27 01:10:22 +08:00
|
|
|
cvtLdWriteBackRegAddrMode2(MCInst &Inst, unsigned Opcode,
|
2011-04-01 07:26:08 +08:00
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
|
|
|
|
|
|
|
|
// Create a writeback register dummy placeholder.
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(0));
|
|
|
|
|
|
|
|
((ARMOperand*)Operands[3])->addMemMode2Operands(Inst, 3);
|
|
|
|
((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
/// cvtStWriteBackRegAddrMode2 - Convert parsed operands to MCInst.
|
2011-04-01 07:26:08 +08:00
|
|
|
/// Needed here because the Asm Gen Matcher can't handle properly tied operands
|
|
|
|
/// when they refer multiple MIOperands inside a single one.
|
|
|
|
bool ARMAsmParser::
|
2011-07-27 01:10:22 +08:00
|
|
|
cvtStWriteBackRegAddrMode2(MCInst &Inst, unsigned Opcode,
|
2011-04-01 07:26:08 +08:00
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
// Create a writeback register dummy placeholder.
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(0));
|
|
|
|
((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
|
|
|
|
((ARMOperand*)Operands[3])->addMemMode2Operands(Inst, 3);
|
|
|
|
((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
/// cvtLdWriteBackRegAddrMode3 - Convert parsed operands to MCInst.
|
2011-04-05 01:18:19 +08:00
|
|
|
/// Needed here because the Asm Gen Matcher can't handle properly tied operands
|
|
|
|
/// when they refer multiple MIOperands inside a single one.
|
|
|
|
bool ARMAsmParser::
|
2011-07-27 01:10:22 +08:00
|
|
|
cvtLdWriteBackRegAddrMode3(MCInst &Inst, unsigned Opcode,
|
2011-04-05 01:18:19 +08:00
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2011-07-29 01:18:57 +08:00
|
|
|
((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
|
|
|
|
|
2011-04-05 01:18:19 +08:00
|
|
|
// Create a writeback register dummy placeholder.
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(0));
|
2011-07-29 01:18:57 +08:00
|
|
|
|
2011-04-05 01:18:19 +08:00
|
|
|
((ARMOperand*)Operands[3])->addMemMode3Operands(Inst, 3);
|
|
|
|
((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
/// cvtStWriteBackRegAddrMode3 - Convert parsed operands to MCInst.
|
2011-04-05 01:18:19 +08:00
|
|
|
/// Needed here because the Asm Gen Matcher can't handle properly tied operands
|
|
|
|
/// when they refer multiple MIOperands inside a single one.
|
|
|
|
bool ARMAsmParser::
|
2011-07-27 01:10:22 +08:00
|
|
|
cvtStWriteBackRegAddrMode3(MCInst &Inst, unsigned Opcode,
|
2011-04-05 01:18:19 +08:00
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
// Create a writeback register dummy placeholder.
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(0));
|
|
|
|
((ARMOperand*)Operands[2])->addRegOperands(Inst, 1);
|
|
|
|
((ARMOperand*)Operands[3])->addMemMode3Operands(Inst, 3);
|
|
|
|
((ARMOperand*)Operands[1])->addCondCodeOperands(Inst, 2);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-11-07 06:36:58 +08:00
|
|
|
/// Parse an ARM memory expression, return false if successful else return true
|
2009-10-31 06:55:57 +08:00
|
|
|
/// or an error. The first token must be a '[' when called.
|
2010-11-19 07:43:05 +08:00
|
|
|
///
|
2009-10-31 06:55:57 +08:00
|
|
|
/// TODO Only preindexing and postindexing addressing are started, unindexed
|
|
|
|
/// with option, etc are still to do.
|
2010-11-19 07:43:05 +08:00
|
|
|
bool ARMAsmParser::
|
2011-07-27 01:10:22 +08:00
|
|
|
parseMemory(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
2011-04-01 07:26:08 +08:00
|
|
|
ARMII::AddrMode AddrMode = ARMII::AddrModeNone) {
|
2010-04-03 06:27:05 +08:00
|
|
|
SMLoc S, E;
|
2010-01-20 05:44:56 +08:00
|
|
|
assert(Parser.getTok().is(AsmToken::LBrac) &&
|
2010-11-06 18:48:18 +08:00
|
|
|
"Token is not a Left Bracket");
|
2010-04-03 06:27:05 +08:00
|
|
|
S = Parser.getTok().getLoc();
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat left bracket token.
|
2009-10-07 06:26:42 +08:00
|
|
|
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &BaseRegTok = Parser.getTok();
|
2010-10-29 04:52:15 +08:00
|
|
|
if (BaseRegTok.isNot(AsmToken::Identifier)) {
|
|
|
|
Error(BaseRegTok.getLoc(), "register expected");
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2010-10-29 04:52:15 +08:00
|
|
|
}
|
2011-07-27 01:10:22 +08:00
|
|
|
int BaseRegNum = tryParseRegister();
|
2010-10-30 12:09:10 +08:00
|
|
|
if (BaseRegNum == -1) {
|
2010-10-29 04:52:15 +08:00
|
|
|
Error(BaseRegTok.getLoc(), "register expected");
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2010-10-29 04:52:15 +08:00
|
|
|
}
|
2009-10-07 06:26:42 +08:00
|
|
|
|
2011-01-18 13:34:17 +08:00
|
|
|
// The next token must either be a comma or a closing bracket.
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
if (!Tok.is(AsmToken::Comma) && !Tok.is(AsmToken::RBrac))
|
|
|
|
return true;
|
|
|
|
|
2009-10-07 06:26:42 +08:00
|
|
|
bool Preindexed = false;
|
|
|
|
bool Postindexed = false;
|
|
|
|
bool OffsetIsReg = false;
|
|
|
|
bool Negative = false;
|
|
|
|
bool Writeback = false;
|
2011-01-18 13:34:24 +08:00
|
|
|
ARMOperand *WBOp = 0;
|
|
|
|
int OffsetRegNum = -1;
|
|
|
|
bool OffsetRegShifted = false;
|
2011-03-19 06:50:18 +08:00
|
|
|
enum ARM_AM::ShiftOpc ShiftType = ARM_AM::lsl;
|
2011-01-18 13:34:24 +08:00
|
|
|
const MCExpr *ShiftAmount = 0;
|
|
|
|
const MCExpr *Offset = 0;
|
2009-10-07 06:26:42 +08:00
|
|
|
|
2009-10-31 06:55:57 +08:00
|
|
|
// First look for preindexed address forms, that is after the "[Rn" we now
|
|
|
|
// have to see if the next token is a comma.
|
2009-10-07 06:26:42 +08:00
|
|
|
if (Tok.is(AsmToken::Comma)) {
|
|
|
|
Preindexed = true;
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat comma token.
|
2011-01-18 13:34:24 +08:00
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
if (parseMemoryOffsetReg(Negative, OffsetRegShifted, ShiftType, ShiftAmount,
|
2010-10-29 04:52:15 +08:00
|
|
|
Offset, OffsetIsReg, OffsetRegNum, E))
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &RBracTok = Parser.getTok();
|
2010-10-29 04:52:15 +08:00
|
|
|
if (RBracTok.isNot(AsmToken::RBrac)) {
|
|
|
|
Error(RBracTok.getLoc(), "']' expected");
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2010-10-29 04:52:15 +08:00
|
|
|
}
|
2010-04-03 06:27:05 +08:00
|
|
|
E = RBracTok.getLoc();
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat right bracket token.
|
2009-10-07 06:26:42 +08:00
|
|
|
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &ExclaimTok = Parser.getTok();
|
2009-10-07 06:26:42 +08:00
|
|
|
if (ExclaimTok.is(AsmToken::Exclaim)) {
|
2011-04-05 01:18:19 +08:00
|
|
|
// None of addrmode3 instruction uses "!"
|
|
|
|
if (AddrMode == ARMII::AddrMode3)
|
|
|
|
return true;
|
|
|
|
|
2010-11-19 07:43:05 +08:00
|
|
|
WBOp = ARMOperand::CreateToken(ExclaimTok.getString(),
|
|
|
|
ExclaimTok.getLoc());
|
2009-10-07 06:26:42 +08:00
|
|
|
Writeback = true;
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat exclaim token
|
2011-04-01 07:26:08 +08:00
|
|
|
} else { // In addressing mode 2, pre-indexed mode always end with "!"
|
|
|
|
if (AddrMode == ARMII::AddrMode2)
|
|
|
|
Preindexed = false;
|
2009-10-07 06:26:42 +08:00
|
|
|
}
|
2011-01-18 13:34:17 +08:00
|
|
|
} else {
|
|
|
|
// The "[Rn" we have so far was not followed by a comma.
|
|
|
|
|
2010-10-30 01:41:25 +08:00
|
|
|
// If there's anything other than the right brace, this is a post indexing
|
|
|
|
// addressing form.
|
2010-04-03 06:27:05 +08:00
|
|
|
E = Tok.getLoc();
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat right bracket token.
|
2009-10-07 06:26:42 +08:00
|
|
|
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &NextTok = Parser.getTok();
|
2010-11-30 07:18:01 +08:00
|
|
|
|
2009-10-16 05:42:45 +08:00
|
|
|
if (NextTok.isNot(AsmToken::EndOfStatement)) {
|
2010-10-30 01:41:25 +08:00
|
|
|
Postindexed = true;
|
|
|
|
Writeback = true;
|
2010-11-19 07:43:05 +08:00
|
|
|
|
2010-10-29 04:52:15 +08:00
|
|
|
if (NextTok.isNot(AsmToken::Comma)) {
|
|
|
|
Error(NextTok.getLoc(), "',' expected");
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2010-10-29 04:52:15 +08:00
|
|
|
}
|
2010-11-19 07:43:05 +08:00
|
|
|
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat comma token.
|
2010-11-19 07:43:05 +08:00
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
if (parseMemoryOffsetReg(Negative, OffsetRegShifted, ShiftType,
|
2010-10-29 22:46:02 +08:00
|
|
|
ShiftAmount, Offset, OffsetIsReg, OffsetRegNum,
|
2010-10-29 04:52:15 +08:00
|
|
|
E))
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2009-10-07 06:26:42 +08:00
|
|
|
}
|
2011-01-18 13:34:24 +08:00
|
|
|
}
|
2009-10-16 05:42:45 +08:00
|
|
|
|
2011-01-18 13:34:24 +08:00
|
|
|
// Force Offset to exist if used.
|
|
|
|
if (!OffsetIsReg) {
|
|
|
|
if (!Offset)
|
|
|
|
Offset = MCConstantExpr::Create(0, getContext());
|
2011-04-05 01:18:19 +08:00
|
|
|
} else {
|
|
|
|
if (AddrMode == ARMII::AddrMode3 && OffsetRegShifted) {
|
|
|
|
Error(E, "shift amount not supported");
|
|
|
|
return true;
|
|
|
|
}
|
2009-10-07 06:26:42 +08:00
|
|
|
}
|
2011-01-18 13:34:24 +08:00
|
|
|
|
2011-04-01 07:26:08 +08:00
|
|
|
Operands.push_back(ARMOperand::CreateMem(AddrMode, BaseRegNum, OffsetIsReg,
|
|
|
|
Offset, OffsetRegNum, OffsetRegShifted,
|
|
|
|
ShiftType, ShiftAmount, Preindexed,
|
|
|
|
Postindexed, Negative, Writeback, S, E));
|
2011-01-18 13:34:24 +08:00
|
|
|
if (WBOp)
|
|
|
|
Operands.push_back(WBOp);
|
|
|
|
|
|
|
|
return false;
|
2009-10-07 06:26:42 +08:00
|
|
|
}
|
|
|
|
|
2009-10-31 06:55:57 +08:00
|
|
|
/// Parse the offset of a memory operand after we have seen "[Rn," or "[Rn],"
|
|
|
|
/// we will parse the following (were +/- means that a plus or minus is
|
|
|
|
/// optional):
|
|
|
|
/// +/-Rm
|
|
|
|
/// +/-Rm, shift
|
|
|
|
/// #offset
|
|
|
|
/// we return false on success or an error otherwise.
|
2011-07-27 01:10:22 +08:00
|
|
|
bool ARMAsmParser::parseMemoryOffsetReg(bool &Negative,
|
2010-04-03 06:27:05 +08:00
|
|
|
bool &OffsetRegShifted,
|
2011-03-19 06:50:18 +08:00
|
|
|
enum ARM_AM::ShiftOpc &ShiftType,
|
2009-10-31 06:55:57 +08:00
|
|
|
const MCExpr *&ShiftAmount,
|
|
|
|
const MCExpr *&Offset,
|
|
|
|
bool &OffsetIsReg,
|
2010-04-03 06:27:05 +08:00
|
|
|
int &OffsetRegNum,
|
|
|
|
SMLoc &E) {
|
2009-10-31 06:55:57 +08:00
|
|
|
Negative = false;
|
|
|
|
OffsetRegShifted = false;
|
|
|
|
OffsetIsReg = false;
|
|
|
|
OffsetRegNum = -1;
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &NextTok = Parser.getTok();
|
2010-04-03 06:27:05 +08:00
|
|
|
E = NextTok.getLoc();
|
2009-10-31 06:55:57 +08:00
|
|
|
if (NextTok.is(AsmToken::Plus))
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat plus token.
|
2009-10-31 06:55:57 +08:00
|
|
|
else if (NextTok.is(AsmToken::Minus)) {
|
|
|
|
Negative = true;
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat minus token
|
2009-10-31 06:55:57 +08:00
|
|
|
}
|
|
|
|
// See if there is a register following the "[Rn," or "[Rn]," we have so far.
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &OffsetRegTok = Parser.getTok();
|
2009-10-31 06:55:57 +08:00
|
|
|
if (OffsetRegTok.is(AsmToken::Identifier)) {
|
2010-10-30 12:09:10 +08:00
|
|
|
SMLoc CurLoc = OffsetRegTok.getLoc();
|
2011-07-27 01:10:22 +08:00
|
|
|
OffsetRegNum = tryParseRegister();
|
2010-10-30 12:09:10 +08:00
|
|
|
if (OffsetRegNum != -1) {
|
2010-10-29 04:52:15 +08:00
|
|
|
OffsetIsReg = true;
|
2010-10-30 12:09:10 +08:00
|
|
|
E = CurLoc;
|
2010-04-03 06:27:05 +08:00
|
|
|
}
|
2009-10-31 06:55:57 +08:00
|
|
|
}
|
2010-11-02 00:44:21 +08:00
|
|
|
|
2010-11-06 18:51:53 +08:00
|
|
|
// If we parsed a register as the offset then there can be a shift after that.
|
2009-10-31 06:55:57 +08:00
|
|
|
if (OffsetRegNum != -1) {
|
|
|
|
// Look for a comma then a shift
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2009-10-31 06:55:57 +08:00
|
|
|
if (Tok.is(AsmToken::Comma)) {
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat comma token.
|
2009-10-31 06:55:57 +08:00
|
|
|
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2011-07-27 01:10:22 +08:00
|
|
|
if (parseShift(ShiftType, ShiftAmount, E))
|
2010-07-12 16:16:59 +08:00
|
|
|
return Error(Tok.getLoc(), "shift expected");
|
2009-10-31 06:55:57 +08:00
|
|
|
OffsetRegShifted = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { // the "[Rn," or "[Rn,]" we have so far was not followed by "Rm"
|
|
|
|
// Look for #offset following the "[Rn," or "[Rn],"
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &HashTok = Parser.getTok();
|
2009-10-31 06:55:57 +08:00
|
|
|
if (HashTok.isNot(AsmToken::Hash))
|
|
|
|
return Error(HashTok.getLoc(), "'#' expected");
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat hash token.
|
2009-10-31 06:55:57 +08:00
|
|
|
|
|
|
|
if (getParser().ParseExpression(Offset))
|
|
|
|
return true;
|
2010-04-03 06:27:05 +08:00
|
|
|
E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
|
2009-10-31 06:55:57 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
/// parseShift as one of these two:
|
2009-10-07 06:26:42 +08:00
|
|
|
/// ( lsl | lsr | asr | ror ) , # shift_amount
|
|
|
|
/// rrx
|
|
|
|
/// and returns true if it parses a shift otherwise it returns false.
|
2011-07-27 01:10:22 +08:00
|
|
|
bool ARMAsmParser::parseShift(ARM_AM::ShiftOpc &St,
|
2011-03-19 06:50:18 +08:00
|
|
|
const MCExpr *&ShiftAmount, SMLoc &E) {
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2009-10-07 06:26:42 +08:00
|
|
|
if (Tok.isNot(AsmToken::Identifier))
|
|
|
|
return true;
|
2010-07-15 06:38:02 +08:00
|
|
|
StringRef ShiftName = Tok.getString();
|
2009-10-07 06:26:42 +08:00
|
|
|
if (ShiftName == "lsl" || ShiftName == "LSL")
|
2011-03-19 06:50:18 +08:00
|
|
|
St = ARM_AM::lsl;
|
2009-10-07 06:26:42 +08:00
|
|
|
else if (ShiftName == "lsr" || ShiftName == "LSR")
|
2011-03-19 06:50:18 +08:00
|
|
|
St = ARM_AM::lsr;
|
2009-10-07 06:26:42 +08:00
|
|
|
else if (ShiftName == "asr" || ShiftName == "ASR")
|
2011-03-19 06:50:18 +08:00
|
|
|
St = ARM_AM::asr;
|
2009-10-07 06:26:42 +08:00
|
|
|
else if (ShiftName == "ror" || ShiftName == "ROR")
|
2011-03-19 06:50:18 +08:00
|
|
|
St = ARM_AM::ror;
|
2009-10-07 06:26:42 +08:00
|
|
|
else if (ShiftName == "rrx" || ShiftName == "RRX")
|
2011-03-19 06:50:18 +08:00
|
|
|
St = ARM_AM::rrx;
|
2009-10-07 06:26:42 +08:00
|
|
|
else
|
|
|
|
return true;
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat shift type token.
|
2009-10-07 06:26:42 +08:00
|
|
|
|
2009-10-31 06:55:57 +08:00
|
|
|
// Rrx stands alone.
|
2011-03-19 06:50:18 +08:00
|
|
|
if (St == ARM_AM::rrx)
|
2009-10-31 06:55:57 +08:00
|
|
|
return false;
|
2009-10-07 06:26:42 +08:00
|
|
|
|
2009-10-31 06:55:57 +08:00
|
|
|
// Otherwise, there must be a '#' and a shift amount.
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &HashTok = Parser.getTok();
|
2009-10-31 06:55:57 +08:00
|
|
|
if (HashTok.isNot(AsmToken::Hash))
|
|
|
|
return Error(HashTok.getLoc(), "'#' expected");
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat hash token.
|
2009-10-31 06:55:57 +08:00
|
|
|
|
|
|
|
if (getParser().ParseExpression(ShiftAmount))
|
|
|
|
return true;
|
2009-10-07 06:26:42 +08:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-31 06:55:57 +08:00
|
|
|
/// Parse a arm instruction operand. For now this parses the operand regardless
|
|
|
|
/// of the mnemonic.
|
2011-07-27 01:10:22 +08:00
|
|
|
bool ARMAsmParser::parseOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
StringRef Mnemonic) {
|
2010-04-03 06:27:05 +08:00
|
|
|
SMLoc S, E;
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
|
|
|
|
// Check if the current operand has a custom associated parser, if so, try to
|
|
|
|
// custom parse the operand, or fallback to the general approach.
|
2011-02-12 09:34:40 +08:00
|
|
|
OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic);
|
|
|
|
if (ResTy == MatchOperand_Success)
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
return false;
|
2011-02-12 09:34:40 +08:00
|
|
|
// If there wasn't a custom match, try the generic matcher below. Otherwise,
|
|
|
|
// there was a match, but an error occurred, in which case, just return that
|
|
|
|
// the operand parsing failed.
|
|
|
|
if (ResTy == MatchOperand_ParseFail)
|
|
|
|
return true;
|
Remove the MCR asm parser hack and start using the custom target specific asm
parsing of operands introduced in r125030. As a small note, besides using a more
generic approach we can also have more descriptive output when debugging
llvm-mc, example:
mcr p7, #1, r5, c1, c1, #4
note: parsed instruction:
['mcr', <ARMCC::al>,
<coprocessor number: 7>,
1,
<register 73>,
<coprocessor register: 1>,
<coprocessor register: 1>,
4]
llvm-svn: 125052
2011-02-08 05:41:25 +08:00
|
|
|
|
2009-10-07 06:26:42 +08:00
|
|
|
switch (getLexer().getKind()) {
|
2010-11-07 05:42:12 +08:00
|
|
|
default:
|
|
|
|
Error(Parser.getTok().getLoc(), "unexpected token in operand");
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2011-07-14 02:49:30 +08:00
|
|
|
case AsmToken::Identifier: {
|
2011-07-27 01:10:22 +08:00
|
|
|
if (!tryParseRegisterWithWriteBack(Operands))
|
2010-11-19 07:43:05 +08:00
|
|
|
return false;
|
2011-07-27 04:41:24 +08:00
|
|
|
int Res = tryParseShiftRegister(Operands);
|
2011-07-14 02:49:30 +08:00
|
|
|
if (Res == 0) // success
|
2011-03-19 06:50:18 +08:00
|
|
|
return false;
|
2011-07-14 02:49:30 +08:00
|
|
|
else if (Res == -1) // irrecoverable error
|
|
|
|
return true;
|
2011-01-14 05:46:02 +08:00
|
|
|
|
|
|
|
// Fall though for the Identifier case that is not a register or a
|
|
|
|
// special name.
|
2011-07-14 02:49:30 +08:00
|
|
|
}
|
2011-01-14 04:32:36 +08:00
|
|
|
case AsmToken::Integer: // things like 1f and 2b as a branch targets
|
|
|
|
case AsmToken::Dot: { // . as a branch target
|
2009-10-16 04:48:48 +08:00
|
|
|
// This was not a register so parse other operands that start with an
|
|
|
|
// identifier (like labels) as expressions and create them as immediates.
|
|
|
|
const MCExpr *IdVal;
|
2010-04-03 06:27:05 +08:00
|
|
|
S = Parser.getTok().getLoc();
|
2009-10-16 04:48:48 +08:00
|
|
|
if (getParser().ParseExpression(IdVal))
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2010-04-03 06:27:05 +08:00
|
|
|
E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
|
2010-11-19 07:43:05 +08:00
|
|
|
Operands.push_back(ARMOperand::CreateImm(IdVal, S, E));
|
|
|
|
return false;
|
|
|
|
}
|
2009-10-07 06:26:42 +08:00
|
|
|
case AsmToken::LBrac:
|
2011-07-27 01:10:22 +08:00
|
|
|
return parseMemory(Operands);
|
2009-10-10 05:12:28 +08:00
|
|
|
case AsmToken::LCurly:
|
2011-07-27 01:10:22 +08:00
|
|
|
return parseRegisterList(Operands);
|
2009-10-10 05:12:28 +08:00
|
|
|
case AsmToken::Hash:
|
2009-10-14 07:33:38 +08:00
|
|
|
// #42 -> immediate.
|
|
|
|
// TODO: ":lower16:" and ":upper16:" modifiers after # before immediate
|
2010-04-03 06:27:05 +08:00
|
|
|
S = Parser.getTok().getLoc();
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-10-16 04:48:48 +08:00
|
|
|
const MCExpr *ImmVal;
|
|
|
|
if (getParser().ParseExpression(ImmVal))
|
2010-11-19 07:43:05 +08:00
|
|
|
return true;
|
2010-04-03 06:27:05 +08:00
|
|
|
E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
|
2010-11-19 07:43:05 +08:00
|
|
|
Operands.push_back(ARMOperand::CreateImm(ImmVal, S, E));
|
|
|
|
return false;
|
2011-01-12 07:53:41 +08:00
|
|
|
case AsmToken::Colon: {
|
|
|
|
// ":lower16:" and ":upper16:" expression prefixes
|
2011-01-13 15:58:56 +08:00
|
|
|
// FIXME: Check it's an expression prefix,
|
|
|
|
// e.g. (FOO - :lower16:BAR) isn't legal.
|
|
|
|
ARMMCExpr::VariantKind RefKind;
|
2011-07-27 01:10:22 +08:00
|
|
|
if (parsePrefix(RefKind))
|
2011-01-12 07:53:41 +08:00
|
|
|
return true;
|
|
|
|
|
2011-01-13 15:58:56 +08:00
|
|
|
const MCExpr *SubExprVal;
|
|
|
|
if (getParser().ParseExpression(SubExprVal))
|
2011-01-12 07:53:41 +08:00
|
|
|
return true;
|
|
|
|
|
2011-01-13 15:58:56 +08:00
|
|
|
const MCExpr *ExprVal = ARMMCExpr::Create(RefKind, SubExprVal,
|
|
|
|
getContext());
|
2011-01-12 07:53:41 +08:00
|
|
|
E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
|
2011-01-13 15:58:56 +08:00
|
|
|
Operands.push_back(ARMOperand::CreateImm(ExprVal, S, E));
|
2011-01-12 07:53:41 +08:00
|
|
|
return false;
|
|
|
|
}
|
2009-10-07 06:26:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
// parsePrefix - Parse ARM 16-bit relocations expression prefix, i.e.
|
2011-01-13 15:58:56 +08:00
|
|
|
// :lower16: and :upper16:.
|
2011-07-27 01:10:22 +08:00
|
|
|
bool ARMAsmParser::parsePrefix(ARMMCExpr::VariantKind &RefKind) {
|
2011-01-13 15:58:56 +08:00
|
|
|
RefKind = ARMMCExpr::VK_ARM_None;
|
2011-01-12 07:53:41 +08:00
|
|
|
|
|
|
|
// :lower16: and :upper16: modifiers
|
2011-01-13 08:27:00 +08:00
|
|
|
assert(getLexer().is(AsmToken::Colon) && "expected a :");
|
2011-01-12 07:53:41 +08:00
|
|
|
Parser.Lex(); // Eat ':'
|
|
|
|
|
|
|
|
if (getLexer().isNot(AsmToken::Identifier)) {
|
|
|
|
Error(Parser.getTok().getLoc(), "expected prefix identifier in operand");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef IDVal = Parser.getTok().getIdentifier();
|
|
|
|
if (IDVal == "lower16") {
|
2011-01-13 15:58:56 +08:00
|
|
|
RefKind = ARMMCExpr::VK_ARM_LO16;
|
2011-01-12 07:53:41 +08:00
|
|
|
} else if (IDVal == "upper16") {
|
2011-01-13 15:58:56 +08:00
|
|
|
RefKind = ARMMCExpr::VK_ARM_HI16;
|
2011-01-12 07:53:41 +08:00
|
|
|
} else {
|
|
|
|
Error(Parser.getTok().getLoc(), "unexpected prefix in operand");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
Parser.Lex();
|
|
|
|
|
|
|
|
if (getLexer().isNot(AsmToken::Colon)) {
|
|
|
|
Error(Parser.getTok().getLoc(), "unexpected token after prefix");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
Parser.Lex(); // Eat the last ':'
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const MCExpr *
|
2011-07-27 01:10:22 +08:00
|
|
|
ARMAsmParser::applyPrefixToExpr(const MCExpr *E,
|
2011-01-12 07:53:41 +08:00
|
|
|
MCSymbolRefExpr::VariantKind Variant) {
|
|
|
|
// Recurse over the given expression, rebuilding it to apply the given variant
|
|
|
|
// to the leftmost symbol.
|
|
|
|
if (Variant == MCSymbolRefExpr::VK_None)
|
|
|
|
return E;
|
|
|
|
|
|
|
|
switch (E->getKind()) {
|
|
|
|
case MCExpr::Target:
|
|
|
|
llvm_unreachable("Can't handle target expr yet");
|
|
|
|
case MCExpr::Constant:
|
|
|
|
llvm_unreachable("Can't handle lower16/upper16 of constant yet");
|
|
|
|
|
|
|
|
case MCExpr::SymbolRef: {
|
|
|
|
const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E);
|
|
|
|
|
|
|
|
if (SRE->getKind() != MCSymbolRefExpr::VK_None)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return MCSymbolRefExpr::Create(&SRE->getSymbol(), Variant, getContext());
|
|
|
|
}
|
|
|
|
|
|
|
|
case MCExpr::Unary:
|
|
|
|
llvm_unreachable("Can't handle unary expressions yet");
|
|
|
|
|
|
|
|
case MCExpr::Binary: {
|
|
|
|
const MCBinaryExpr *BE = cast<MCBinaryExpr>(E);
|
2011-07-27 01:10:22 +08:00
|
|
|
const MCExpr *LHS = applyPrefixToExpr(BE->getLHS(), Variant);
|
2011-01-12 07:53:41 +08:00
|
|
|
const MCExpr *RHS = BE->getRHS();
|
|
|
|
if (!LHS)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return MCBinaryExpr::Create(BE->getOpcode(), LHS, RHS, getContext());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(0 && "Invalid expression kind!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-11 23:59:50 +08:00
|
|
|
/// \brief Given a mnemonic, split out possible predication code and carry
|
|
|
|
/// setting letters to form a canonical mnemonic and flags.
|
|
|
|
//
|
2011-01-10 20:24:52 +08:00
|
|
|
// FIXME: Would be nice to autogen this.
|
2011-07-27 01:10:22 +08:00
|
|
|
StringRef ARMAsmParser::splitMnemonic(StringRef Mnemonic,
|
2011-07-20 04:10:31 +08:00
|
|
|
unsigned &PredicationCode,
|
|
|
|
bool &CarrySetting,
|
|
|
|
unsigned &ProcessorIMod) {
|
2011-01-11 23:59:50 +08:00
|
|
|
PredicationCode = ARMCC::AL;
|
|
|
|
CarrySetting = false;
|
2011-02-14 21:09:44 +08:00
|
|
|
ProcessorIMod = 0;
|
2011-01-11 23:59:50 +08:00
|
|
|
|
2011-01-10 20:24:52 +08:00
|
|
|
// Ignore some mnemonics we know aren't predicated forms.
|
2011-01-11 23:59:50 +08:00
|
|
|
//
|
|
|
|
// FIXME: Would be nice to autogen this.
|
2011-07-20 04:10:31 +08:00
|
|
|
if ((Mnemonic == "movs" && isThumb()) ||
|
|
|
|
Mnemonic == "teq" || Mnemonic == "vceq" || Mnemonic == "svc" ||
|
|
|
|
Mnemonic == "mls" || Mnemonic == "smmls" || Mnemonic == "vcls" ||
|
|
|
|
Mnemonic == "vmls" || Mnemonic == "vnmls" || Mnemonic == "vacge" ||
|
|
|
|
Mnemonic == "vcge" || Mnemonic == "vclt" || Mnemonic == "vacgt" ||
|
|
|
|
Mnemonic == "vcgt" || Mnemonic == "vcle" || Mnemonic == "smlal" ||
|
|
|
|
Mnemonic == "umaal" || Mnemonic == "umlal" || Mnemonic == "vabal" ||
|
|
|
|
Mnemonic == "vmlal" || Mnemonic == "vpadal" || Mnemonic == "vqdmlal")
|
2011-01-11 23:59:50 +08:00
|
|
|
return Mnemonic;
|
2011-01-10 20:24:52 +08:00
|
|
|
|
2011-07-12 01:09:57 +08:00
|
|
|
// First, split out any predication code. Ignore mnemonics we know aren't
|
|
|
|
// predicated but do have a carry-set and so weren't caught above.
|
2011-07-21 02:20:31 +08:00
|
|
|
if (Mnemonic != "adcs" && Mnemonic != "bics" && Mnemonic != "movs" &&
|
2011-07-28 05:58:11 +08:00
|
|
|
Mnemonic != "muls" && Mnemonic != "smlals" && Mnemonic != "smulls" &&
|
2011-07-28 06:01:42 +08:00
|
|
|
Mnemonic != "umlals" && Mnemonic != "umulls") {
|
2011-07-12 01:09:57 +08:00
|
|
|
unsigned CC = StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2))
|
|
|
|
.Case("eq", ARMCC::EQ)
|
|
|
|
.Case("ne", ARMCC::NE)
|
|
|
|
.Case("hs", ARMCC::HS)
|
|
|
|
.Case("cs", ARMCC::HS)
|
|
|
|
.Case("lo", ARMCC::LO)
|
|
|
|
.Case("cc", ARMCC::LO)
|
|
|
|
.Case("mi", ARMCC::MI)
|
|
|
|
.Case("pl", ARMCC::PL)
|
|
|
|
.Case("vs", ARMCC::VS)
|
|
|
|
.Case("vc", ARMCC::VC)
|
|
|
|
.Case("hi", ARMCC::HI)
|
|
|
|
.Case("ls", ARMCC::LS)
|
|
|
|
.Case("ge", ARMCC::GE)
|
|
|
|
.Case("lt", ARMCC::LT)
|
|
|
|
.Case("gt", ARMCC::GT)
|
|
|
|
.Case("le", ARMCC::LE)
|
|
|
|
.Case("al", ARMCC::AL)
|
|
|
|
.Default(~0U);
|
|
|
|
if (CC != ~0U) {
|
|
|
|
Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 2);
|
|
|
|
PredicationCode = CC;
|
|
|
|
}
|
2010-10-30 07:50:21 +08:00
|
|
|
}
|
2010-08-11 14:37:20 +08:00
|
|
|
|
2011-01-11 23:59:50 +08:00
|
|
|
// Next, determine if we have a carry setting bit. We explicitly ignore all
|
|
|
|
// the instructions we know end in 's'.
|
|
|
|
if (Mnemonic.endswith("s") &&
|
|
|
|
!(Mnemonic == "asrs" || Mnemonic == "cps" || Mnemonic == "mls" ||
|
2011-07-20 04:10:31 +08:00
|
|
|
Mnemonic == "mrs" || Mnemonic == "smmls" || Mnemonic == "vabs" ||
|
|
|
|
Mnemonic == "vcls" || Mnemonic == "vmls" || Mnemonic == "vmrs" ||
|
|
|
|
Mnemonic == "vnmls" || Mnemonic == "vqabs" || Mnemonic == "vrecps" ||
|
|
|
|
Mnemonic == "vrsqrts" || (Mnemonic == "movs" && isThumb()))) {
|
2011-01-11 23:59:50 +08:00
|
|
|
Mnemonic = Mnemonic.slice(0, Mnemonic.size() - 1);
|
|
|
|
CarrySetting = true;
|
|
|
|
}
|
|
|
|
|
2011-02-14 21:09:44 +08:00
|
|
|
// The "cps" instruction can have a interrupt mode operand which is glued into
|
|
|
|
// the mnemonic. Check if this is the case, split it and parse the imod op
|
|
|
|
if (Mnemonic.startswith("cps")) {
|
|
|
|
// Split out any imod code.
|
|
|
|
unsigned IMod =
|
|
|
|
StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2, 2))
|
|
|
|
.Case("ie", ARM_PROC::IE)
|
|
|
|
.Case("id", ARM_PROC::ID)
|
|
|
|
.Default(~0U);
|
|
|
|
if (IMod != ~0U) {
|
|
|
|
Mnemonic = Mnemonic.slice(0, Mnemonic.size()-2);
|
|
|
|
ProcessorIMod = IMod;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-11 23:59:50 +08:00
|
|
|
return Mnemonic;
|
|
|
|
}
|
2011-01-11 23:59:53 +08:00
|
|
|
|
|
|
|
/// \brief Given a canonical mnemonic, determine if the instruction ever allows
|
|
|
|
/// inclusion of carry set or predication code operands.
|
|
|
|
//
|
|
|
|
// FIXME: It would be nice to autogen this.
|
2011-01-19 04:55:11 +08:00
|
|
|
void ARMAsmParser::
|
2011-07-27 01:10:22 +08:00
|
|
|
getMnemonicAcceptInfo(StringRef Mnemonic, bool &CanAcceptCarrySet,
|
2011-01-19 04:55:11 +08:00
|
|
|
bool &CanAcceptPredicationCode) {
|
2011-01-12 03:06:29 +08:00
|
|
|
if (Mnemonic == "and" || Mnemonic == "lsl" || Mnemonic == "lsr" ||
|
|
|
|
Mnemonic == "rrx" || Mnemonic == "ror" || Mnemonic == "sub" ||
|
|
|
|
Mnemonic == "smull" || Mnemonic == "add" || Mnemonic == "adc" ||
|
|
|
|
Mnemonic == "mul" || Mnemonic == "bic" || Mnemonic == "asr" ||
|
2011-05-28 07:46:09 +08:00
|
|
|
Mnemonic == "umlal" || Mnemonic == "orr" || Mnemonic == "mvn" ||
|
2011-01-12 03:06:29 +08:00
|
|
|
Mnemonic == "rsb" || Mnemonic == "rsc" || Mnemonic == "orn" ||
|
|
|
|
Mnemonic == "sbc" || Mnemonic == "mla" || Mnemonic == "umull" ||
|
2011-05-28 07:46:09 +08:00
|
|
|
Mnemonic == "eor" || Mnemonic == "smlal" ||
|
2011-07-08 09:53:10 +08:00
|
|
|
(Mnemonic == "mov" && !isThumbOne())) {
|
2011-01-12 03:06:29 +08:00
|
|
|
CanAcceptCarrySet = true;
|
|
|
|
} else {
|
|
|
|
CanAcceptCarrySet = false;
|
|
|
|
}
|
2011-01-11 23:59:53 +08:00
|
|
|
|
2011-01-12 03:06:29 +08:00
|
|
|
if (Mnemonic == "cbnz" || Mnemonic == "setend" || Mnemonic == "dmb" ||
|
|
|
|
Mnemonic == "cps" || Mnemonic == "mcr2" || Mnemonic == "it" ||
|
|
|
|
Mnemonic == "mcrr2" || Mnemonic == "cbz" || Mnemonic == "cdp2" ||
|
|
|
|
Mnemonic == "trap" || Mnemonic == "mrc2" || Mnemonic == "mrrc2" ||
|
2011-07-20 04:10:31 +08:00
|
|
|
Mnemonic == "dsb" || Mnemonic == "isb" || Mnemonic == "clrex" ||
|
2011-07-23 01:44:50 +08:00
|
|
|
Mnemonic == "setend" ||
|
2011-07-20 04:10:31 +08:00
|
|
|
Mnemonic.startswith("cps") || (Mnemonic == "movs" && isThumb())) {
|
2011-01-11 23:59:53 +08:00
|
|
|
CanAcceptPredicationCode = false;
|
|
|
|
} else {
|
|
|
|
CanAcceptPredicationCode = true;
|
|
|
|
}
|
2011-01-21 00:35:57 +08:00
|
|
|
|
2011-07-08 09:53:10 +08:00
|
|
|
if (isThumb())
|
2011-01-21 00:35:57 +08:00
|
|
|
if (Mnemonic == "bkpt" || Mnemonic == "mcr" || Mnemonic == "mcrr" ||
|
2011-07-01 06:10:46 +08:00
|
|
|
Mnemonic == "mrc" || Mnemonic == "mrrc" || Mnemonic == "cdp")
|
2011-01-21 00:35:57 +08:00
|
|
|
CanAcceptPredicationCode = false;
|
2011-01-10 20:24:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Parse an arm instruction mnemonic followed by its operands.
|
|
|
|
bool ARMAsmParser::ParseInstruction(StringRef Name, SMLoc NameLoc,
|
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
// Create the leading tokens for the mnemonic, split by '.' characters.
|
|
|
|
size_t Start = 0, Next = Name.find('.');
|
2011-07-20 03:13:28 +08:00
|
|
|
StringRef Mnemonic = Name.slice(Start, Next);
|
2011-01-10 20:24:52 +08:00
|
|
|
|
2011-01-11 23:59:50 +08:00
|
|
|
// Split out the predication code and carry setting flag from the mnemonic.
|
|
|
|
unsigned PredicationCode;
|
2011-02-14 21:09:44 +08:00
|
|
|
unsigned ProcessorIMod;
|
2011-01-11 23:59:50 +08:00
|
|
|
bool CarrySetting;
|
2011-07-27 01:10:22 +08:00
|
|
|
Mnemonic = splitMnemonic(Mnemonic, PredicationCode, CarrySetting,
|
2011-07-23 01:44:50 +08:00
|
|
|
ProcessorIMod);
|
2011-01-10 20:24:52 +08:00
|
|
|
|
2011-07-20 03:13:28 +08:00
|
|
|
Operands.push_back(ARMOperand::CreateToken(Mnemonic, NameLoc));
|
|
|
|
|
|
|
|
// FIXME: This is all a pretty gross hack. We should automatically handle
|
|
|
|
// optional operands like this via tblgen.
|
2010-11-21 18:56:05 +08:00
|
|
|
|
2011-01-11 23:59:53 +08:00
|
|
|
// Next, add the CCOut and ConditionCode operands, if needed.
|
|
|
|
//
|
|
|
|
// For mnemonics which can ever incorporate a carry setting bit or predication
|
|
|
|
// code, our matching model involves us always generating CCOut and
|
|
|
|
// ConditionCode operands to match the mnemonic "as written" and then we let
|
|
|
|
// the matcher deal with finding the right instruction or generating an
|
|
|
|
// appropriate error.
|
|
|
|
bool CanAcceptCarrySet, CanAcceptPredicationCode;
|
2011-07-27 01:10:22 +08:00
|
|
|
getMnemonicAcceptInfo(Mnemonic, CanAcceptCarrySet, CanAcceptPredicationCode);
|
2011-01-11 23:59:53 +08:00
|
|
|
|
2011-07-15 06:04:21 +08:00
|
|
|
// If we had a carry-set on an instruction that can't do that, issue an
|
|
|
|
// error.
|
|
|
|
if (!CanAcceptCarrySet && CarrySetting) {
|
|
|
|
Parser.EatToEndOfStatement();
|
2011-07-20 03:13:28 +08:00
|
|
|
return Error(NameLoc, "instruction '" + Mnemonic +
|
2011-07-15 06:04:21 +08:00
|
|
|
"' can not set flags, but 's' suffix specified");
|
|
|
|
}
|
2011-07-23 01:44:50 +08:00
|
|
|
// If we had a predication code on an instruction that can't do that, issue an
|
|
|
|
// error.
|
|
|
|
if (!CanAcceptPredicationCode && PredicationCode != ARMCC::AL) {
|
|
|
|
Parser.EatToEndOfStatement();
|
|
|
|
return Error(NameLoc, "instruction '" + Mnemonic +
|
|
|
|
"' is not predicable, but condition code specified");
|
|
|
|
}
|
2011-07-15 06:04:21 +08:00
|
|
|
|
2011-01-11 23:59:53 +08:00
|
|
|
// Add the carry setting operand, if necessary.
|
|
|
|
//
|
|
|
|
// FIXME: It would be awesome if we could somehow invent a location such that
|
|
|
|
// match errors on this operand would print a nice diagnostic about how the
|
|
|
|
// 's' character in the mnemonic resulted in a CCOut operand.
|
2011-07-15 06:04:21 +08:00
|
|
|
if (CanAcceptCarrySet)
|
2011-01-11 23:59:53 +08:00
|
|
|
Operands.push_back(ARMOperand::CreateCCOut(CarrySetting ? ARM::CPSR : 0,
|
|
|
|
NameLoc));
|
|
|
|
|
|
|
|
// Add the predication code operand, if necessary.
|
|
|
|
if (CanAcceptPredicationCode) {
|
|
|
|
Operands.push_back(ARMOperand::CreateCondCode(
|
|
|
|
ARMCC::CondCodes(PredicationCode), NameLoc));
|
2011-01-10 20:24:52 +08:00
|
|
|
}
|
2010-08-11 14:37:20 +08:00
|
|
|
|
2011-02-14 21:09:44 +08:00
|
|
|
// Add the processor imod operand, if necessary.
|
|
|
|
if (ProcessorIMod) {
|
|
|
|
Operands.push_back(ARMOperand::CreateImm(
|
|
|
|
MCConstantExpr::Create(ProcessorIMod, getContext()),
|
|
|
|
NameLoc, NameLoc));
|
|
|
|
} else {
|
|
|
|
// This mnemonic can't ever accept a imod, but the user wrote
|
|
|
|
// one (or misspelled another mnemonic).
|
|
|
|
|
|
|
|
// FIXME: Issue a nice error.
|
|
|
|
}
|
|
|
|
|
2010-08-11 14:37:20 +08:00
|
|
|
// Add the remaining tokens in the mnemonic.
|
2010-08-11 14:37:16 +08:00
|
|
|
while (Next != StringRef::npos) {
|
|
|
|
Start = Next;
|
|
|
|
Next = Name.find('.', Start + 1);
|
2011-02-14 21:09:44 +08:00
|
|
|
StringRef ExtraToken = Name.slice(Start, Next);
|
2009-10-07 06:26:42 +08:00
|
|
|
|
2011-02-14 21:09:44 +08:00
|
|
|
Operands.push_back(ARMOperand::CreateToken(ExtraToken, NameLoc));
|
2010-08-11 14:37:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Read the remaining operands.
|
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
2009-10-07 06:26:42 +08:00
|
|
|
// Read the first operand.
|
2011-07-27 01:10:22 +08:00
|
|
|
if (parseOperand(Operands, Mnemonic)) {
|
2010-09-12 00:18:25 +08:00
|
|
|
Parser.EatToEndOfStatement();
|
|
|
|
return true;
|
|
|
|
}
|
2009-10-07 06:26:42 +08:00
|
|
|
|
|
|
|
while (getLexer().is(AsmToken::Comma)) {
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat the comma.
|
2009-10-07 06:26:42 +08:00
|
|
|
|
|
|
|
// Parse and remember the operand.
|
2011-07-27 01:10:22 +08:00
|
|
|
if (parseOperand(Operands, Mnemonic)) {
|
2010-09-12 00:18:25 +08:00
|
|
|
Parser.EatToEndOfStatement();
|
|
|
|
return true;
|
|
|
|
}
|
2009-10-07 06:26:42 +08:00
|
|
|
}
|
|
|
|
}
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2010-09-12 00:18:25 +08:00
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
Parser.EatToEndOfStatement();
|
2010-09-08 13:10:46 +08:00
|
|
|
return TokError("unexpected token in argument list");
|
2010-09-12 00:18:25 +08:00
|
|
|
}
|
2010-11-07 05:42:12 +08:00
|
|
|
|
2010-09-08 13:10:46 +08:00
|
|
|
Parser.Lex(); // Consume the EndOfStatement
|
2011-07-20 03:13:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
// The 'mov' mnemonic is special. One variant has a cc_out operand, while
|
|
|
|
// another does not. Specifically, the MOVW instruction does not. So we
|
|
|
|
// special case it here and remove the defaulted (non-setting) cc_out
|
|
|
|
// operand if that's the instruction we're trying to match.
|
|
|
|
//
|
|
|
|
// We do this post-processing of the explicit operands rather than just
|
|
|
|
// conditionally adding the cc_out in the first place because we need
|
|
|
|
// to check the type of the parsed immediate operand.
|
|
|
|
if (Mnemonic == "mov" && Operands.size() > 4 &&
|
|
|
|
!static_cast<ARMOperand*>(Operands[4])->isARMSOImm() &&
|
2011-07-20 03:45:44 +08:00
|
|
|
static_cast<ARMOperand*>(Operands[4])->isImm0_65535Expr() &&
|
|
|
|
static_cast<ARMOperand*>(Operands[1])->getReg() == 0) {
|
2011-07-20 03:13:28 +08:00
|
|
|
ARMOperand *Op = static_cast<ARMOperand*>(Operands[1]);
|
|
|
|
Operands.erase(Operands.begin() + 1);
|
|
|
|
delete Op;
|
|
|
|
}
|
|
|
|
|
2010-01-15 06:21:20 +08:00
|
|
|
return false;
|
2009-09-15 08:27:25 +08:00
|
|
|
}
|
|
|
|
|
2011-07-27 02:25:39 +08:00
|
|
|
// Validate context-sensitive operand constraints.
|
|
|
|
// FIXME: We would really like to be able to tablegen'erate this.
|
|
|
|
bool ARMAsmParser::
|
|
|
|
validateInstruction(MCInst &Inst,
|
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
switch (Inst.getOpcode()) {
|
|
|
|
case ARM::LDREXD: {
|
|
|
|
// Rt2 must be Rt + 1.
|
|
|
|
unsigned Rt = getARMRegisterNumbering(Inst.getOperand(0).getReg());
|
|
|
|
unsigned Rt2 = getARMRegisterNumbering(Inst.getOperand(1).getReg());
|
|
|
|
if (Rt2 != Rt + 1)
|
|
|
|
return Error(Operands[3]->getStartLoc(),
|
|
|
|
"destination operands must be sequential");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
case ARM::STREXD: {
|
|
|
|
// Rt2 must be Rt + 1.
|
|
|
|
unsigned Rt = getARMRegisterNumbering(Inst.getOperand(1).getReg());
|
|
|
|
unsigned Rt2 = getARMRegisterNumbering(Inst.getOperand(2).getReg());
|
|
|
|
if (Rt2 != Rt + 1)
|
|
|
|
return Error(Operands[4]->getStartLoc(),
|
|
|
|
"source operands must be sequential");
|
|
|
|
return false;
|
|
|
|
}
|
2011-07-28 05:09:25 +08:00
|
|
|
case ARM::SBFX:
|
|
|
|
case ARM::UBFX: {
|
|
|
|
// width must be in range [1, 32-lsb]
|
|
|
|
unsigned lsb = Inst.getOperand(2).getImm();
|
|
|
|
unsigned widthm1 = Inst.getOperand(3).getImm();
|
|
|
|
if (widthm1 >= 32 - lsb)
|
|
|
|
return Error(Operands[5]->getStartLoc(),
|
|
|
|
"bitfield width must be in range [1,32-lsb]");
|
|
|
|
}
|
2011-07-27 02:25:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-10-29 05:28:01 +08:00
|
|
|
bool ARMAsmParser::
|
|
|
|
MatchAndEmitInstruction(SMLoc IDLoc,
|
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
|
|
|
MCStreamer &Out) {
|
|
|
|
MCInst Inst;
|
|
|
|
unsigned ErrorInfo;
|
2011-07-20 02:32:48 +08:00
|
|
|
MatchResultTy MatchResult;
|
2010-12-10 03:19:43 +08:00
|
|
|
MatchResult = MatchInstructionImpl(Operands, Inst, ErrorInfo);
|
|
|
|
switch (MatchResult) {
|
2010-10-29 05:41:58 +08:00
|
|
|
case Match_Success:
|
2011-07-27 02:25:39 +08:00
|
|
|
// Context sensitive operand constraints aren't handled by the matcher,
|
|
|
|
// so check them here.
|
|
|
|
if (validateInstruction(Inst, Operands))
|
|
|
|
return true;
|
|
|
|
|
2010-10-29 05:28:01 +08:00
|
|
|
Out.EmitInstruction(Inst);
|
|
|
|
return false;
|
2010-10-29 05:41:58 +08:00
|
|
|
case Match_MissingFeature:
|
|
|
|
Error(IDLoc, "instruction requires a CPU feature not currently enabled");
|
|
|
|
return true;
|
|
|
|
case Match_InvalidOperand: {
|
|
|
|
SMLoc ErrorLoc = IDLoc;
|
|
|
|
if (ErrorInfo != ~0U) {
|
|
|
|
if (ErrorInfo >= Operands.size())
|
|
|
|
return Error(IDLoc, "too few operands for instruction");
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2010-10-29 05:41:58 +08:00
|
|
|
ErrorLoc = ((ARMOperand*)Operands[ErrorInfo])->getStartLoc();
|
|
|
|
if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
|
|
|
|
}
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2010-10-29 05:41:58 +08:00
|
|
|
return Error(ErrorLoc, "invalid operand for instruction");
|
|
|
|
}
|
|
|
|
case Match_MnemonicFail:
|
|
|
|
return Error(IDLoc, "unrecognized instruction mnemonic");
|
2011-02-05 01:12:23 +08:00
|
|
|
case Match_ConversionFail:
|
|
|
|
return Error(IDLoc, "unable to convert operands to instruction");
|
2010-10-29 05:28:01 +08:00
|
|
|
}
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2010-10-29 17:26:59 +08:00
|
|
|
llvm_unreachable("Implement any new match types added!");
|
2010-11-07 05:42:12 +08:00
|
|
|
return true;
|
2010-10-29 05:28:01 +08:00
|
|
|
}
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
/// parseDirective parses the arm specific directives
|
2009-09-15 08:27:25 +08:00
|
|
|
bool ARMAsmParser::ParseDirective(AsmToken DirectiveID) {
|
|
|
|
StringRef IDVal = DirectiveID.getIdentifier();
|
|
|
|
if (IDVal == ".word")
|
2011-07-27 01:10:22 +08:00
|
|
|
return parseDirectiveWord(4, DirectiveID.getLoc());
|
2009-10-16 04:48:48 +08:00
|
|
|
else if (IDVal == ".thumb")
|
2011-07-27 01:10:22 +08:00
|
|
|
return parseDirectiveThumb(DirectiveID.getLoc());
|
2009-10-16 04:48:48 +08:00
|
|
|
else if (IDVal == ".thumb_func")
|
2011-07-27 01:10:22 +08:00
|
|
|
return parseDirectiveThumbFunc(DirectiveID.getLoc());
|
2009-10-16 04:48:48 +08:00
|
|
|
else if (IDVal == ".code")
|
2011-07-27 01:10:22 +08:00
|
|
|
return parseDirectiveCode(DirectiveID.getLoc());
|
2009-10-16 04:48:48 +08:00
|
|
|
else if (IDVal == ".syntax")
|
2011-07-27 01:10:22 +08:00
|
|
|
return parseDirectiveSyntax(DirectiveID.getLoc());
|
2009-09-15 08:27:25 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
/// parseDirectiveWord
|
2009-09-15 08:27:25 +08:00
|
|
|
/// ::= .word [ expression (, expression)* ]
|
2011-07-27 01:10:22 +08:00
|
|
|
bool ARMAsmParser::parseDirectiveWord(unsigned Size, SMLoc L) {
|
2009-09-15 08:27:25 +08:00
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
for (;;) {
|
|
|
|
const MCExpr *Value;
|
|
|
|
if (getParser().ParseExpression(Value))
|
|
|
|
return true;
|
|
|
|
|
2010-01-20 03:46:13 +08:00
|
|
|
getParser().getStreamer().EmitValue(Value, Size, 0/*addrspace*/);
|
2009-09-15 08:27:25 +08:00
|
|
|
|
|
|
|
if (getLexer().is(AsmToken::EndOfStatement))
|
|
|
|
break;
|
2010-10-29 22:46:02 +08:00
|
|
|
|
2009-09-15 08:27:25 +08:00
|
|
|
// FIXME: Improve diagnostic.
|
|
|
|
if (getLexer().isNot(AsmToken::Comma))
|
|
|
|
return Error(L, "unexpected token in directive");
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-09-15 08:27:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-09-15 08:27:25 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
/// parseDirectiveThumb
|
2009-10-16 04:48:48 +08:00
|
|
|
/// ::= .thumb
|
2011-07-27 01:10:22 +08:00
|
|
|
bool ARMAsmParser::parseDirectiveThumb(SMLoc L) {
|
2009-10-16 04:48:48 +08:00
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement))
|
|
|
|
return Error(L, "unexpected token in directive");
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-10-16 04:48:48 +08:00
|
|
|
|
|
|
|
// TODO: set thumb mode
|
|
|
|
// TODO: tell the MC streamer the mode
|
|
|
|
// getParser().getStreamer().Emit???();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
/// parseDirectiveThumbFunc
|
2009-10-16 04:48:48 +08:00
|
|
|
/// ::= .thumbfunc symbol_name
|
2011-07-27 01:10:22 +08:00
|
|
|
bool ARMAsmParser::parseDirectiveThumbFunc(SMLoc L) {
|
2011-05-17 00:17:21 +08:00
|
|
|
const MCAsmInfo &MAI = getParser().getStreamer().getContext().getAsmInfo();
|
|
|
|
bool isMachO = MAI.hasSubsectionsViaSymbols();
|
|
|
|
StringRef Name;
|
|
|
|
|
|
|
|
// Darwin asm has function name after .thumb_func direction
|
|
|
|
// ELF doesn't
|
|
|
|
if (isMachO) {
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
if (Tok.isNot(AsmToken::Identifier) && Tok.isNot(AsmToken::String))
|
|
|
|
return Error(L, "unexpected token in .thumb_func directive");
|
|
|
|
Name = Tok.getString();
|
|
|
|
Parser.Lex(); // Consume the identifier token.
|
|
|
|
}
|
|
|
|
|
2009-10-16 04:48:48 +08:00
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement))
|
|
|
|
return Error(L, "unexpected token in directive");
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-10-16 04:48:48 +08:00
|
|
|
|
2011-05-17 00:17:21 +08:00
|
|
|
// FIXME: assuming function name will be the line following .thumb_func
|
|
|
|
if (!isMachO) {
|
|
|
|
Name = Parser.getTok().getString();
|
|
|
|
}
|
|
|
|
|
2010-11-06 06:33:53 +08:00
|
|
|
// Mark symbol as a thumb symbol.
|
|
|
|
MCSymbol *Func = getParser().getContext().GetOrCreateSymbol(Name);
|
|
|
|
getParser().getStreamer().EmitThumbFunc(Func);
|
2009-10-16 04:48:48 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
/// parseDirectiveSyntax
|
2009-10-16 04:48:48 +08:00
|
|
|
/// ::= .syntax unified | divided
|
2011-07-27 01:10:22 +08:00
|
|
|
bool ARMAsmParser::parseDirectiveSyntax(SMLoc L) {
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2009-10-16 04:48:48 +08:00
|
|
|
if (Tok.isNot(AsmToken::Identifier))
|
|
|
|
return Error(L, "unexpected token in .syntax directive");
|
2010-07-15 06:38:02 +08:00
|
|
|
StringRef Mode = Tok.getString();
|
2010-06-29 21:04:35 +08:00
|
|
|
if (Mode == "unified" || Mode == "UNIFIED")
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2010-06-29 21:04:35 +08:00
|
|
|
else if (Mode == "divided" || Mode == "DIVIDED")
|
2011-01-28 07:22:36 +08:00
|
|
|
return Error(L, "'.syntax divided' arm asssembly not supported");
|
2009-10-16 04:48:48 +08:00
|
|
|
else
|
|
|
|
return Error(L, "unrecognized syntax mode in .syntax directive");
|
|
|
|
|
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement))
|
2010-01-20 05:44:56 +08:00
|
|
|
return Error(Parser.getTok().getLoc(), "unexpected token in directive");
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-10-16 04:48:48 +08:00
|
|
|
|
|
|
|
// TODO tell the MC streamer the mode
|
|
|
|
// getParser().getStreamer().Emit???();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-07-27 01:10:22 +08:00
|
|
|
/// parseDirectiveCode
|
2009-10-16 04:48:48 +08:00
|
|
|
/// ::= .code 16 | 32
|
2011-07-27 01:10:22 +08:00
|
|
|
bool ARMAsmParser::parseDirectiveCode(SMLoc L) {
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2009-10-16 04:48:48 +08:00
|
|
|
if (Tok.isNot(AsmToken::Integer))
|
|
|
|
return Error(L, "unexpected token in .code directive");
|
2010-01-20 05:44:56 +08:00
|
|
|
int64_t Val = Parser.getTok().getIntVal();
|
2010-06-29 21:04:35 +08:00
|
|
|
if (Val == 16)
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2010-06-29 21:04:35 +08:00
|
|
|
else if (Val == 32)
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-10-16 04:48:48 +08:00
|
|
|
else
|
|
|
|
return Error(L, "invalid operand to .code directive");
|
|
|
|
|
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement))
|
2010-01-20 05:44:56 +08:00
|
|
|
return Error(Parser.getTok().getLoc(), "unexpected token in directive");
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-10-16 04:48:48 +08:00
|
|
|
|
2011-07-09 06:36:29 +08:00
|
|
|
if (Val == 16) {
|
2011-07-27 08:38:12 +08:00
|
|
|
if (!isThumb()) {
|
2011-07-09 13:47:46 +08:00
|
|
|
SwitchMode();
|
2011-07-27 08:38:12 +08:00
|
|
|
getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
|
|
|
|
}
|
2011-07-09 06:36:29 +08:00
|
|
|
} else {
|
2011-07-27 08:38:12 +08:00
|
|
|
if (isThumb()) {
|
2011-07-09 13:47:46 +08:00
|
|
|
SwitchMode();
|
2011-07-27 08:38:12 +08:00
|
|
|
getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
|
|
|
|
}
|
2011-07-09 06:49:55 +08:00
|
|
|
}
|
2010-11-06 06:40:53 +08:00
|
|
|
|
2009-10-16 04:48:48 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-04-08 04:29:34 +08:00
|
|
|
extern "C" void LLVMInitializeARMAsmLexer();
|
|
|
|
|
2009-10-31 06:55:57 +08:00
|
|
|
/// Force static initialization.
|
2009-09-15 08:27:25 +08:00
|
|
|
extern "C" void LLVMInitializeARMAsmParser() {
|
2011-07-26 08:24:13 +08:00
|
|
|
RegisterMCAsmParser<ARMAsmParser> X(TheARMTarget);
|
|
|
|
RegisterMCAsmParser<ARMAsmParser> Y(TheThumbTarget);
|
2010-04-08 04:29:34 +08:00
|
|
|
LLVMInitializeARMAsmLexer();
|
2009-09-15 08:27:25 +08:00
|
|
|
}
|
2010-08-11 13:24:50 +08:00
|
|
|
|
2010-09-07 03:11:01 +08:00
|
|
|
#define GET_REGISTER_MATCHER
|
|
|
|
#define GET_MATCHER_IMPLEMENTATION
|
2010-08-11 13:24:50 +08:00
|
|
|
#include "ARMGenAsmMatcher.inc"
|