HomeSort by relevance Sort by last modified time
    Searched defs:X86Operand (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Target/X86/AsmParser/
X86Operand.h 1 //===-- X86Operand.h - Parsed X86 machine instruction --------------------===//
23 /// X86Operand - Instances of this class represent a parsed X86 machine
25 struct X86Operand : public MCParsedAsmOperand {
69 X86Operand(KindTy K, SMLoc Start, SMLoc End)
467 static std::unique_ptr<X86Operand> CreateToken(StringRef Str, SMLoc Loc) {
469 auto Res = llvm::make_unique<X86Operand>(Token, Loc, EndLoc);
475 static std::unique_ptr<X86Operand>
479 auto Res = llvm::make_unique<X86Operand>(Register, StartLoc, EndLoc);
488 static std::unique_ptr<X86Operand> CreateImm(const MCExpr *Val,
490 auto Res = llvm::make_unique<X86Operand>(Immediate, StartLoc, EndLoc)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/AsmParser/
X86AsmParser.cpp 33 struct X86Operand;
46 X86Operand *ParseOperand();
47 X86Operand *ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
58 bool isSrcOp(X86Operand &Op);
62 bool isDstOp(X86Operand &Op);
106 /// X86Operand - Instances of this class represent a parsed X86 machine
108 struct X86Operand : public MCParsedAsmOperand {
141 X86Operand(KindTy K, SMLoc Start, SMLoc End)
319 static X86Operand *CreateToken(StringRef Str, SMLoc Loc) {
320 X86Operand *Res = new X86Operand(Token, Loc, Loc)
    [all...]

Completed in 92 milliseconds