Home
last modified time | relevance | path

Searched refs:X86Operand (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Target/X86/AsmParser/
H A DX86Operand.h31 struct X86Operand final : public MCParsedAsmOperand {
90 X86Operand(KindTy K, SMLoc Start, SMLoc End) in X86Operand() function
633 static std::unique_ptr<X86Operand> CreateToken(StringRef Str, SMLoc Loc) { in CreateToken()
635 auto Res = std::make_unique<X86Operand>(Token, Loc, EndLoc); in CreateToken()
641 static std::unique_ptr<X86Operand>
645 auto Res = std::make_unique<X86Operand>(Register, StartLoc, EndLoc);
654 static std::unique_ptr<X86Operand>
656 return std::make_unique<X86Operand>(DXRegister, StartLoc, EndLoc); in CreateDXReg()
659 static std::unique_ptr<X86Operand>
661 auto Res = std::make_unique<X86Operand>(Prefix, StartLoc, EndLoc); in CreatePrefix()
[all …]
H A DX86AsmParser.cpp1097 std::unique_ptr<X86Operand> DefaultMemSIOperand(SMLoc Loc);
1098 std::unique_ptr<X86Operand> DefaultMemDIOperand(SMLoc Loc);
1186 void MatchFPUWaitAlias(SMLoc IDLoc, X86Operand &Op, OperandVector &Operands,
1209 bool ParseZ(std::unique_ptr<X86Operand> &Z, const SMLoc &StartLoc);
1597 std::unique_ptr<X86Operand> X86AsmParser::DefaultMemSIOperand(SMLoc Loc) { in DefaultMemSIOperand()
1601 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp, in DefaultMemSIOperand()
1606 std::unique_ptr<X86Operand> X86AsmParser::DefaultMemDIOperand(SMLoc Loc) { in DefaultMemDIOperand()
1610 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp, in DefaultMemDIOperand()
1667 X86Operand &OrigOp = static_cast<X86Operand &>(*OrigOperands[i + 1]); in VerifyAndAdjustOperands()
1668 X86Operand &FinalOp = static_cast<X86Operand &>(*FinalOperands[i]); in VerifyAndAdjustOperands()
[all …]