LLVM  8.0.1
Classes | Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | List of all members
llvm::X86Operand Struct Referencefinal

X86Operand - Instances of this class represent a parsed X86 machine instruction. More...

#include "Target/X86/AsmParser/X86Operand.h"

Inheritance diagram for llvm::X86Operand:
Inheritance graph
[legend]
Collaboration diagram for llvm::X86Operand:
Collaboration graph
[legend]

Classes

struct  ImmOp
 
struct  MemOp
 
struct  PrefOp
 
struct  RegOp
 
struct  TokOp
 

Public Types

enum  KindTy {
  Token, Register, Immediate, Memory,
  Prefix, DXRegister
}
 

Public Member Functions

 X86Operand (KindTy K, SMLoc Start, SMLoc End)
 
StringRef getSymName () override
 
void * getOpDecl () override
 
SMLoc getStartLoc () const override
 getStartLoc - Get the location of the first token of this operand. More...
 
SMLoc getEndLoc () const override
 getEndLoc - Get the location of the last token of this operand. More...
 
SMRange getLocRange () const
 getLocRange - Get the range between the first and last token of this operand. More...
 
SMLoc getOffsetOfLoc () const override
 getOffsetOfLoc - Get the location of the offset operator. More...
 
void print (raw_ostream &OS) const override
 print - Print a debug representation of the operand to the given stream. More...
 
StringRef getToken () const
 
void setTokenValue (StringRef Value)
 
unsigned getReg () const override
 
unsigned getPrefix () const
 
const MCExprgetImm () const
 
const MCExprgetMemDisp () const
 
unsigned getMemSegReg () const
 
unsigned getMemBaseReg () const
 
unsigned getMemIndexReg () const
 
unsigned getMemScale () const
 
unsigned getMemModeSize () const
 
unsigned getMemFrontendSize () const
 
bool isToken () const override
 isToken - Is this a token operand? More...
 
bool isImm () const override
 isImm - Is this an immediate operand? More...
 
bool isImmSExti16i8 () const
 
bool isImmSExti32i8 () const
 
bool isImmSExti64i8 () const
 
bool isImmSExti64i32 () const
 
bool isImmUnsignedi8 () const
 
bool isOffsetOf () const override
 isOffsetOf - Do we need to emit code to get the offset of the variable, rather then the value of the variable? Only valid when parsing MS-style inline assembly. More...
 
bool needAddressOf () const override
 needAddressOf - Do we need to emit code to get the address of the variable/label? Only valid when parsing MS-style inline assembly. More...
 
bool isMem () const override
 isMem - Is this a memory operand? More...
 
bool isMemUnsized () const
 
bool isMem8 () const
 
bool isMem16 () const
 
bool isMem32 () const
 
bool isMem64 () const
 
bool isMem80 () const
 
bool isMem128 () const
 
bool isMem256 () const
 
bool isMem512 () const
 
bool isMemIndexReg (unsigned LowR, unsigned HighR) const
 
bool isMem64_RC128 () const
 
bool isMem128_RC128 () const
 
bool isMem128_RC256 () const
 
bool isMem256_RC128 () const
 
bool isMem256_RC256 () const
 
bool isMem64_RC128X () const
 
bool isMem128_RC128X () const
 
bool isMem128_RC256X () const
 
bool isMem256_RC128X () const
 
bool isMem256_RC256X () const
 
bool isMem256_RC512 () const
 
bool isMem512_RC256X () const
 
bool isMem512_RC512 () const
 
bool isAbsMem () const
 
bool isAVX512RC () const
 
bool isAbsMem16 () const
 
bool isSrcIdx () const
 
bool isSrcIdx8 () const
 
bool isSrcIdx16 () const
 
bool isSrcIdx32 () const
 
bool isSrcIdx64 () const
 
bool isDstIdx () const
 
bool isDstIdx8 () const
 
bool isDstIdx16 () const
 
bool isDstIdx32 () const
 
bool isDstIdx64 () const
 
bool isMemOffs () const
 
bool isMemOffs16_8 () const
 
bool isMemOffs16_16 () const
 
bool isMemOffs16_32 () const
 
bool isMemOffs32_8 () const
 
bool isMemOffs32_16 () const
 
bool isMemOffs32_32 () const
 
bool isMemOffs32_64 () const
 
bool isMemOffs64_8 () const
 
bool isMemOffs64_16 () const
 
bool isMemOffs64_32 () const
 
bool isMemOffs64_64 () const
 
bool isPrefix () const
 
bool isReg () const override
 isReg - Is this a register operand? More...
 
bool isDXReg () const
 
bool isGR32orGR64 () const
 
void addExpr (MCInst &Inst, const MCExpr *Expr) const
 
void addRegOperands (MCInst &Inst, unsigned N) const
 
void addGR32orGR64Operands (MCInst &Inst, unsigned N) const
 
void addAVX512RCOperands (MCInst &Inst, unsigned N) const
 
void addImmOperands (MCInst &Inst, unsigned N) const
 
void addMemOperands (MCInst &Inst, unsigned N) const
 
void addAbsMemOperands (MCInst &Inst, unsigned N) const
 
void addSrcIdxOperands (MCInst &Inst, unsigned N) const
 
void addDstIdxOperands (MCInst &Inst, unsigned N) const
 
void addMemOffsOperands (MCInst &Inst, unsigned N) const
 
- Public Member Functions inherited from llvm::MCParsedAsmOperand
virtual ~MCParsedAsmOperand ()=default
 
void setConstraint (StringRef C)
 
StringRef getConstraint ()
 
void setMCOperandNum (unsigned OpNum)
 
unsigned getMCOperandNum ()
 
virtual void dump () const
 dump - Print to the debug stream. More...
 

Static Public Member Functions

static std::unique_ptr< X86OperandCreateToken (StringRef Str, SMLoc Loc)
 
static std::unique_ptr< X86OperandCreateReg (unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc, bool AddressOf=false, SMLoc OffsetOfLoc=SMLoc(), StringRef SymName=StringRef(), void *OpDecl=nullptr)
 
static std::unique_ptr< X86OperandCreateDXReg (SMLoc StartLoc, SMLoc EndLoc)
 
static std::unique_ptr< X86OperandCreatePrefix (unsigned Prefixes, SMLoc StartLoc, SMLoc EndLoc)
 
static std::unique_ptr< X86OperandCreateImm (const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc)
 
static std::unique_ptr< X86OperandCreateMem (unsigned ModeSize, const MCExpr *Disp, SMLoc StartLoc, SMLoc EndLoc, unsigned Size=0, StringRef SymName=StringRef(), void *OpDecl=nullptr, unsigned FrontendSize=0)
 Create an absolute memory operand. More...
 
static std::unique_ptr< X86OperandCreateMem (unsigned ModeSize, unsigned SegReg, const MCExpr *Disp, unsigned BaseReg, unsigned IndexReg, unsigned Scale, SMLoc StartLoc, SMLoc EndLoc, unsigned Size=0, StringRef SymName=StringRef(), void *OpDecl=nullptr, unsigned FrontendSize=0)
 Create a generalized memory operand. More...
 

Public Attributes

enum llvm::X86Operand::KindTy Kind
 
SMLoc StartLoc
 
SMLoc EndLoc
 
SMLoc OffsetOfLoc
 
StringRef SymName
 
void * OpDecl
 
bool AddressOf
 
union {
   struct TokOp   Tok
 
   struct RegOp   Reg
 
   struct ImmOp   Imm
 
   struct MemOp   Mem
 
   struct PrefOp   Pref
 
}; 
 

Additional Inherited Members

- Protected Member Functions inherited from llvm::MCParsedAsmOperand
 MCParsedAsmOperand ()=default
 
 MCParsedAsmOperand (const MCParsedAsmOperand &RHS)=default
 
MCParsedAsmOperandoperator= (const MCParsedAsmOperand &)=default
 

Detailed Description

X86Operand - Instances of this class represent a parsed X86 machine instruction.

Definition at line 32 of file X86Operand.h.

Member Enumeration Documentation

◆ KindTy

Enumerator
Token 
Register 
Immediate 
Memory 
Prefix 
DXRegister 

Definition at line 33 of file X86Operand.h.

Constructor & Destructor Documentation

◆ X86Operand()

llvm::X86Operand::X86Operand ( KindTy  K,
SMLoc  Start,
SMLoc  End 
)
inline

Definition at line 80 of file X86Operand.h.

Member Function Documentation

◆ addAbsMemOperands()

void llvm::X86Operand::addAbsMemOperands ( MCInst Inst,
unsigned  N 
) const
inline

◆ addAVX512RCOperands()

void llvm::X86Operand::addAVX512RCOperands ( MCInst Inst,
unsigned  N 
) const
inline

Definition at line 476 of file X86Operand.h.

References addExpr(), assert(), and getImm().

◆ addDstIdxOperands()

void llvm::X86Operand::addDstIdxOperands ( MCInst Inst,
unsigned  N 
) const
inline

◆ addExpr()

void llvm::X86Operand::addExpr ( MCInst Inst,
const MCExpr Expr 
) const
inline

◆ addGR32orGR64Operands()

void llvm::X86Operand::addGR32orGR64Operands ( MCInst Inst,
unsigned  N 
) const
inline

◆ addImmOperands()

void llvm::X86Operand::addImmOperands ( MCInst Inst,
unsigned  N 
) const
inline

Definition at line 481 of file X86Operand.h.

References addExpr(), assert(), and getImm().

◆ addMemOffsOperands()

void llvm::X86Operand::addMemOffsOperands ( MCInst Inst,
unsigned  N 
) const
inline

◆ addMemOperands()

void llvm::X86Operand::addMemOperands ( MCInst Inst,
unsigned  N 
) const
inline

◆ addRegOperands()

void llvm::X86Operand::addRegOperands ( MCInst Inst,
unsigned  N 
) const
inline

◆ addSrcIdxOperands()

void llvm::X86Operand::addSrcIdxOperands ( MCInst Inst,
unsigned  N 
) const
inline

◆ CreateDXReg()

static std::unique_ptr<X86Operand> llvm::X86Operand::CreateDXReg ( SMLoc  StartLoc,
SMLoc  EndLoc 
)
inlinestatic

Definition at line 547 of file X86Operand.h.

References DXRegister, EndLoc, and StartLoc.

◆ CreateImm()

static std::unique_ptr<X86Operand> llvm::X86Operand::CreateImm ( const MCExpr Val,
SMLoc  StartLoc,
SMLoc  EndLoc 
)
inlinestatic

Definition at line 558 of file X86Operand.h.

References EndLoc, Immediate, and StartLoc.

◆ CreateMem() [1/2]

static std::unique_ptr<X86Operand> llvm::X86Operand::CreateMem ( unsigned  ModeSize,
const MCExpr Disp,
SMLoc  StartLoc,
SMLoc  EndLoc,
unsigned  Size = 0,
StringRef  SymName = StringRef(),
void *  OpDecl = nullptr,
unsigned  FrontendSize = 0 
)
inlinestatic

Create an absolute memory operand.

Definition at line 567 of file X86Operand.h.

References EndLoc, Memory, OpDecl, Size, StartLoc, and SymName.

Referenced by CheckBaseRegAndIndexRegAndScale(), and IsSmallMemAccess().

◆ CreateMem() [2/2]

static std::unique_ptr<X86Operand> llvm::X86Operand::CreateMem ( unsigned  ModeSize,
unsigned  SegReg,
const MCExpr Disp,
unsigned  BaseReg,
unsigned  IndexReg,
unsigned  Scale,
SMLoc  StartLoc,
SMLoc  EndLoc,
unsigned  Size = 0,
StringRef  SymName = StringRef(),
void *  OpDecl = nullptr,
unsigned  FrontendSize = 0 
)
inlinestatic

Create a generalized memory operand.

Definition at line 587 of file X86Operand.h.

References assert(), EndLoc, Memory, OpDecl, Size, StartLoc, and SymName.

◆ CreatePrefix()

static std::unique_ptr<X86Operand> llvm::X86Operand::CreatePrefix ( unsigned  Prefixes,
SMLoc  StartLoc,
SMLoc  EndLoc 
)
inlinestatic

Definition at line 552 of file X86Operand.h.

References EndLoc, Prefix, and StartLoc.

◆ CreateReg()

static std::unique_ptr<X86Operand> llvm::X86Operand::CreateReg ( unsigned  RegNo,
SMLoc  StartLoc,
SMLoc  EndLoc,
bool  AddressOf = false,
SMLoc  OffsetOfLoc = SMLoc(),
StringRef  SymName = StringRef(),
void *  OpDecl = nullptr 
)
inlinestatic

Definition at line 534 of file X86Operand.h.

References AddressOf, EndLoc, OffsetOfLoc, OpDecl, Register, StartLoc, and SymName.

◆ CreateToken()

static std::unique_ptr<X86Operand> llvm::X86Operand::CreateToken ( StringRef  Str,
SMLoc  Loc 
)
inlinestatic

◆ getEndLoc()

SMLoc llvm::X86Operand::getEndLoc ( ) const
inlineoverridevirtual

getEndLoc - Get the location of the last token of this operand.

Implements llvm::MCParsedAsmOperand.

Definition at line 90 of file X86Operand.h.

References EndLoc.

◆ getImm()

const MCExpr* llvm::X86Operand::getImm ( ) const
inline

◆ getLocRange()

SMRange llvm::X86Operand::getLocRange ( ) const
inline

getLocRange - Get the range between the first and last token of this operand.

Definition at line 94 of file X86Operand.h.

Referenced by getPrefixes().

◆ getMemBaseReg()

unsigned llvm::X86Operand::getMemBaseReg ( ) const
inline

◆ getMemDisp()

const MCExpr* llvm::X86Operand::getMemDisp ( ) const
inline

◆ getMemFrontendSize()

unsigned llvm::X86Operand::getMemFrontendSize ( ) const
inline

Definition at line 198 of file X86Operand.h.

References assert(), llvm::X86Operand::MemOp::FrontendSize, and Mem.

Referenced by getPrefixes().

◆ getMemIndexReg()

unsigned llvm::X86Operand::getMemIndexReg ( ) const
inline

◆ getMemModeSize()

unsigned llvm::X86Operand::getMemModeSize ( ) const
inline

Definition at line 194 of file X86Operand.h.

References assert(), Mem, and llvm::X86Operand::MemOp::ModeSize.

Referenced by IsSmallMemAccess().

◆ getMemScale()

unsigned llvm::X86Operand::getMemScale ( ) const
inline

◆ getMemSegReg()

unsigned llvm::X86Operand::getMemSegReg ( ) const
inline

◆ getOffsetOfLoc()

SMLoc llvm::X86Operand::getOffsetOfLoc ( ) const
inlineoverridevirtual

getOffsetOfLoc - Get the location of the offset operator.

Reimplemented from llvm::MCParsedAsmOperand.

Definition at line 97 of file X86Operand.h.

References OffsetOfLoc.

◆ getOpDecl()

void* llvm::X86Operand::getOpDecl ( )
inlineoverridevirtual

Reimplemented from llvm::MCParsedAsmOperand.

Definition at line 84 of file X86Operand.h.

References OpDecl.

◆ getPrefix()

unsigned llvm::X86Operand::getPrefix ( ) const
inline

Definition at line 164 of file X86Operand.h.

References assert(), Prefix, and llvm::X86Operand::PrefOp::Prefixes.

Referenced by getPrefixes().

◆ getReg()

unsigned llvm::X86Operand::getReg ( ) const
inlineoverridevirtual

◆ getStartLoc()

SMLoc llvm::X86Operand::getStartLoc ( ) const
inlineoverridevirtual

getStartLoc - Get the location of the first token of this operand.

Implements llvm::MCParsedAsmOperand.

Definition at line 87 of file X86Operand.h.

References StartLoc.

Referenced by CheckBaseRegAndIndexRegAndScale(), and getPrefixes().

◆ getSymName()

StringRef llvm::X86Operand::getSymName ( )
inlineoverridevirtual

Reimplemented from llvm::MCParsedAsmOperand.

Definition at line 83 of file X86Operand.h.

References SymName.

◆ getToken()

StringRef llvm::X86Operand::getToken ( ) const
inline

◆ isAbsMem()

bool llvm::X86Operand::isAbsMem ( ) const
inline

Definition at line 355 of file X86Operand.h.

References getMemBaseReg(), getMemIndexReg(), getMemScale(), and getMemSegReg().

Referenced by isAbsMem16().

◆ isAbsMem16()

bool llvm::X86Operand::isAbsMem16 ( ) const
inline

Definition at line 363 of file X86Operand.h.

References isAbsMem(), Mem, and llvm::X86Operand::MemOp::ModeSize.

◆ isAVX512RC()

bool llvm::X86Operand::isAVX512RC ( ) const
inline

Definition at line 359 of file X86Operand.h.

References isImm().

◆ isDstIdx()

bool llvm::X86Operand::isDstIdx ( ) const
inline

◆ isDstIdx16()

bool llvm::X86Operand::isDstIdx16 ( ) const
inline

Definition at line 396 of file X86Operand.h.

References isDstIdx(), and isMem16().

◆ isDstIdx32()

bool llvm::X86Operand::isDstIdx32 ( ) const
inline

Definition at line 399 of file X86Operand.h.

References isDstIdx(), and isMem32().

◆ isDstIdx64()

bool llvm::X86Operand::isDstIdx64 ( ) const
inline

Definition at line 402 of file X86Operand.h.

References isDstIdx(), and isMem64().

◆ isDstIdx8()

bool llvm::X86Operand::isDstIdx8 ( ) const
inline

Definition at line 393 of file X86Operand.h.

References isDstIdx(), and isMem8().

◆ isDXReg()

bool llvm::X86Operand::isDXReg ( ) const
inline

Definition at line 447 of file X86Operand.h.

References DXRegister.

◆ isGR32orGR64()

bool llvm::X86Operand::isGR32orGR64 ( ) const
inline

Definition at line 449 of file X86Operand.h.

References getReg(), and Register.

◆ isImm()

bool llvm::X86Operand::isImm ( ) const
inlineoverridevirtual

isImm - Is this an immediate operand?

Implements llvm::MCParsedAsmOperand.

Definition at line 205 of file X86Operand.h.

References Immediate.

Referenced by isAVX512RC(), isImmSExti16i8(), isImmSExti32i8(), isImmSExti64i32(), isImmSExti64i8(), and isImmUnsignedi8().

◆ isImmSExti16i8()

bool llvm::X86Operand::isImmSExti16i8 ( ) const
inline

◆ isImmSExti32i8()

bool llvm::X86Operand::isImmSExti32i8 ( ) const
inline

◆ isImmSExti64i32()

bool llvm::X86Operand::isImmSExti64i32 ( ) const
inline

◆ isImmSExti64i8()

bool llvm::X86Operand::isImmSExti64i8 ( ) const
inline

◆ isImmUnsignedi8()

bool llvm::X86Operand::isImmUnsignedi8 ( ) const
inline

◆ isMem()

bool llvm::X86Operand::isMem ( ) const
inlineoverridevirtual

isMem - Is this a memory operand?

Implements llvm::MCParsedAsmOperand.

Definition at line 281 of file X86Operand.h.

References Memory.

Referenced by CheckBaseRegAndIndexRegAndScale(), and IsSmallMemAccess().

◆ isMem128()

bool llvm::X86Operand::isMem128 ( ) const
inline

Definition at line 300 of file X86Operand.h.

References Mem, and llvm::X86Operand::MemOp::Size.

Referenced by isMem128_RC128(), isMem128_RC128X(), isMem128_RC256(), and isMem128_RC256X().

◆ isMem128_RC128()

bool llvm::X86Operand::isMem128_RC128 ( ) const
inline

Definition at line 317 of file X86Operand.h.

References isMem128(), and isMemIndexReg().

◆ isMem128_RC128X()

bool llvm::X86Operand::isMem128_RC128X ( ) const
inline

Definition at line 333 of file X86Operand.h.

References isMem128(), and isMemIndexReg().

◆ isMem128_RC256()

bool llvm::X86Operand::isMem128_RC256 ( ) const
inline

Definition at line 320 of file X86Operand.h.

References isMem128(), and isMemIndexReg().

◆ isMem128_RC256X()

bool llvm::X86Operand::isMem128_RC256X ( ) const
inline

Definition at line 336 of file X86Operand.h.

References isMem128(), and isMemIndexReg().

◆ isMem16()

bool llvm::X86Operand::isMem16 ( ) const
inline

Definition at line 288 of file X86Operand.h.

References Mem, and llvm::X86Operand::MemOp::Size.

Referenced by isDstIdx16(), and isSrcIdx16().

◆ isMem256()

bool llvm::X86Operand::isMem256 ( ) const
inline

◆ isMem256_RC128()

bool llvm::X86Operand::isMem256_RC128 ( ) const
inline

Definition at line 323 of file X86Operand.h.

References isMem256(), and isMemIndexReg().

◆ isMem256_RC128X()

bool llvm::X86Operand::isMem256_RC128X ( ) const
inline

Definition at line 339 of file X86Operand.h.

References isMem256(), and isMemIndexReg().

◆ isMem256_RC256()

bool llvm::X86Operand::isMem256_RC256 ( ) const
inline

Definition at line 326 of file X86Operand.h.

References isMem256(), and isMemIndexReg().

◆ isMem256_RC256X()

bool llvm::X86Operand::isMem256_RC256X ( ) const
inline

Definition at line 342 of file X86Operand.h.

References isMem256(), and isMemIndexReg().

◆ isMem256_RC512()

bool llvm::X86Operand::isMem256_RC512 ( ) const
inline

Definition at line 345 of file X86Operand.h.

References isMem256(), and isMemIndexReg().

◆ isMem32()

bool llvm::X86Operand::isMem32 ( ) const
inline

Definition at line 291 of file X86Operand.h.

References Mem, and llvm::X86Operand::MemOp::Size.

Referenced by isDstIdx32(), and isSrcIdx32().

◆ isMem512()

bool llvm::X86Operand::isMem512 ( ) const
inline

Definition at line 306 of file X86Operand.h.

References Mem, and llvm::X86Operand::MemOp::Size.

Referenced by isMem512_RC256X(), and isMem512_RC512().

◆ isMem512_RC256X()

bool llvm::X86Operand::isMem512_RC256X ( ) const
inline

Definition at line 348 of file X86Operand.h.

References isMem512(), and isMemIndexReg().

◆ isMem512_RC512()

bool llvm::X86Operand::isMem512_RC512 ( ) const
inline

Definition at line 351 of file X86Operand.h.

References isMem512(), and isMemIndexReg().

◆ isMem64()

bool llvm::X86Operand::isMem64 ( ) const
inline

Definition at line 294 of file X86Operand.h.

References Mem, and llvm::X86Operand::MemOp::Size.

Referenced by isDstIdx64(), isMem64_RC128(), isMem64_RC128X(), and isSrcIdx64().

◆ isMem64_RC128()

bool llvm::X86Operand::isMem64_RC128 ( ) const
inline

Definition at line 314 of file X86Operand.h.

References isMem64(), and isMemIndexReg().

◆ isMem64_RC128X()

bool llvm::X86Operand::isMem64_RC128X ( ) const
inline

Definition at line 330 of file X86Operand.h.

References isMem64(), and isMemIndexReg().

◆ isMem8()

bool llvm::X86Operand::isMem8 ( ) const
inline

Definition at line 285 of file X86Operand.h.

References Mem, and llvm::X86Operand::MemOp::Size.

Referenced by isDstIdx8(), and isSrcIdx8().

◆ isMem80()

bool llvm::X86Operand::isMem80 ( ) const
inline

Definition at line 297 of file X86Operand.h.

References Mem, and llvm::X86Operand::MemOp::Size.

◆ isMemIndexReg()

bool llvm::X86Operand::isMemIndexReg ( unsigned  LowR,
unsigned  HighR 
) const
inline

◆ isMemOffs()

bool llvm::X86Operand::isMemOffs ( ) const
inline

◆ isMemOffs16_16()

bool llvm::X86Operand::isMemOffs16_16 ( ) const
inline

◆ isMemOffs16_32()

bool llvm::X86Operand::isMemOffs16_32 ( ) const
inline

◆ isMemOffs16_8()

bool llvm::X86Operand::isMemOffs16_8 ( ) const
inline

◆ isMemOffs32_16()

bool llvm::X86Operand::isMemOffs32_16 ( ) const
inline

◆ isMemOffs32_32()

bool llvm::X86Operand::isMemOffs32_32 ( ) const
inline

◆ isMemOffs32_64()

bool llvm::X86Operand::isMemOffs32_64 ( ) const
inline

◆ isMemOffs32_8()

bool llvm::X86Operand::isMemOffs32_8 ( ) const
inline

◆ isMemOffs64_16()

bool llvm::X86Operand::isMemOffs64_16 ( ) const
inline

◆ isMemOffs64_32()

bool llvm::X86Operand::isMemOffs64_32 ( ) const
inline

◆ isMemOffs64_64()

bool llvm::X86Operand::isMemOffs64_64 ( ) const
inline

◆ isMemOffs64_8()

bool llvm::X86Operand::isMemOffs64_8 ( ) const
inline

◆ isMemUnsized()

bool llvm::X86Operand::isMemUnsized ( ) const
inline

Definition at line 282 of file X86Operand.h.

References Mem, and llvm::X86Operand::MemOp::Size.

Referenced by getPrefixes().

◆ isOffsetOf()

bool llvm::X86Operand::isOffsetOf ( ) const
inlineoverridevirtual

isOffsetOf - Do we need to emit code to get the offset of the variable, rather then the value of the variable? Only valid when parsing MS-style inline assembly.

Reimplemented from llvm::MCParsedAsmOperand.

Definition at line 273 of file X86Operand.h.

References llvm::SMLoc::getPointer().

◆ isPrefix()

bool llvm::X86Operand::isPrefix ( ) const
inline

Definition at line 445 of file X86Operand.h.

References Prefix.

Referenced by getPrefixes().

◆ isReg()

bool llvm::X86Operand::isReg ( ) const
inlineoverridevirtual

isReg - Is this a register operand?

Implements llvm::MCParsedAsmOperand.

Definition at line 446 of file X86Operand.h.

References Register.

Referenced by CheckBaseRegAndIndexRegAndScale().

◆ isSrcIdx()

bool llvm::X86Operand::isSrcIdx ( ) const
inline

◆ isSrcIdx16()

bool llvm::X86Operand::isSrcIdx16 ( ) const
inline

Definition at line 376 of file X86Operand.h.

References isMem16(), and isSrcIdx().

◆ isSrcIdx32()

bool llvm::X86Operand::isSrcIdx32 ( ) const
inline

Definition at line 379 of file X86Operand.h.

References isMem32(), and isSrcIdx().

◆ isSrcIdx64()

bool llvm::X86Operand::isSrcIdx64 ( ) const
inline

Definition at line 382 of file X86Operand.h.

References isMem64(), and isSrcIdx().

◆ isSrcIdx8()

bool llvm::X86Operand::isSrcIdx8 ( ) const
inline

Definition at line 373 of file X86Operand.h.

References isMem8(), and isSrcIdx().

◆ isToken()

bool llvm::X86Operand::isToken ( ) const
inlineoverridevirtual

isToken - Is this a token operand?

Implements llvm::MCParsedAsmOperand.

Definition at line 203 of file X86Operand.h.

References Token.

◆ needAddressOf()

bool llvm::X86Operand::needAddressOf ( ) const
inlineoverridevirtual

needAddressOf - Do we need to emit code to get the address of the variable/label? Only valid when parsing MS-style inline assembly.

Reimplemented from llvm::MCParsedAsmOperand.

Definition at line 277 of file X86Operand.h.

References AddressOf.

◆ print()

void llvm::X86Operand::print ( raw_ostream OS) const
inlineoverridevirtual

◆ setTokenValue()

void llvm::X86Operand::setTokenValue ( StringRef  Value)
inline

Member Data Documentation

◆ @486

union { ... }

◆ AddressOf

bool llvm::X86Operand::AddressOf

Definition at line 39 of file X86Operand.h.

Referenced by CreateReg(), and needAddressOf().

◆ EndLoc

SMLoc llvm::X86Operand::EndLoc

◆ Imm

struct ImmOp llvm::X86Operand::Imm

Definition at line 75 of file X86Operand.h.

Referenced by getImm(), and print().

◆ Kind

enum llvm::X86Operand::KindTy llvm::X86Operand::Kind

◆ Mem

struct MemOp llvm::X86Operand::Mem

◆ OffsetOfLoc

SMLoc llvm::X86Operand::OffsetOfLoc

Definition at line 36 of file X86Operand.h.

Referenced by CreateReg(), and getOffsetOfLoc().

◆ OpDecl

void* llvm::X86Operand::OpDecl

Definition at line 38 of file X86Operand.h.

Referenced by CreateMem(), CreateReg(), and getOpDecl().

◆ Pref

struct PrefOp llvm::X86Operand::Pref

Definition at line 77 of file X86Operand.h.

◆ Reg

struct RegOp llvm::X86Operand::Reg

Definition at line 74 of file X86Operand.h.

Referenced by getReg(), and print().

◆ StartLoc

SMLoc llvm::X86Operand::StartLoc

Definition at line 35 of file X86Operand.h.

Referenced by CreateDXReg(), CreateImm(), CreateMem(), CreatePrefix(), CreateReg(), and getStartLoc().

◆ SymName

StringRef llvm::X86Operand::SymName

Definition at line 37 of file X86Operand.h.

Referenced by CreateMem(), CreateReg(), and getSymName().

◆ Tok

struct TokOp llvm::X86Operand::Tok

Definition at line 73 of file X86Operand.h.

Referenced by getToken(), print(), and setTokenValue().


The documentation for this struct was generated from the following file: