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

  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 13 #include "X86Operand.h"
656 std::unique_ptr<X86Operand> DefaultMemSIOperand(SMLoc Loc);
657 std::unique_ptr<X86Operand> DefaultMemDIOperand(SMLoc Loc);
658 std::unique_ptr<X86Operand> ParseOperand();
659 std::unique_ptr<X86Operand> ParseATTOperand();
660 std::unique_ptr<X86Operand> ParseIntelOperand();
661 std::unique_ptr<X86Operand> ParseIntelOffsetOfOperator();
663 std::unique_ptr<X86Operand> ParseIntelOperator(unsigned OpKind);
664 std::unique_ptr<X86Operand>
666 std::unique_ptr<X86Operand>
    [all...]
X86AsmInstrumentation.cpp 12 #include "X86Operand.h"
58 X86Operand &Op, unsigned AccessSize, bool IsWrite, MCContext &Ctx,
61 X86Operand &Op, unsigned AccessSize, bool IsWrite, MCContext &Ctx,
85 X86Operand &MemOp = static_cast<X86Operand &>(Op);
152 X86Operand &Op, unsigned AccessSize, bool IsWrite, MCContext &Ctx,
155 X86Operand &Op, unsigned AccessSize, bool IsWrite, MCContext &Ctx,
178 X86Operand &Op, unsigned AccessSize, bool IsWrite, MCContext &Ctx,
203 std::unique_ptr<X86Operand> Op(
204 X86Operand::CreateMem(0, Disp, X86::ECX, 0, 1, SMLoc(), SMLoc()))
    [all...]
X86Operand.h 1 //===-- X86Operand.h - Parsed X86 machine instruction --------------------===//
20 /// X86Operand - Instances of this class represent a parsed X86 machine
22 struct X86Operand : public MCParsedAsmOperand {
65 X86Operand(KindTy K, SMLoc Start, SMLoc End)
414 static std::unique_ptr<X86Operand> CreateToken(StringRef Str, SMLoc Loc) {
416 auto Res = llvm::make_unique<X86Operand>(Token, Loc, EndLoc);
422 static std::unique_ptr<X86Operand>
426 auto Res = llvm::make_unique<X86Operand>(Register, StartLoc, EndLoc);
435 static std::unique_ptr<X86Operand> CreateImm(const MCExpr *Val,
437 auto Res = llvm::make_unique<X86Operand>(Immediate, StartLoc, EndLoc)
    [all...]

Completed in 73 milliseconds