Searched refs:SystemZOperand (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/Target/SystemZ/AsmParser/ |
D | SystemZAsmParser.cpp | 55 class SystemZOperand : public MCParsedAsmOperand { class 131 SystemZOperand(OperandKind kind, SMLoc startLoc, SMLoc endLoc) in SystemZOperand() function in __anon920606c00111::SystemZOperand 135 static std::unique_ptr<SystemZOperand> createInvalid(SMLoc StartLoc, in createInvalid() 137 return make_unique<SystemZOperand>(KindInvalid, StartLoc, EndLoc); in createInvalid() 139 static std::unique_ptr<SystemZOperand> createToken(StringRef Str, SMLoc Loc) { in createToken() 140 auto Op = make_unique<SystemZOperand>(KindToken, Loc, Loc); in createToken() 145 static std::unique_ptr<SystemZOperand> 147 auto Op = make_unique<SystemZOperand>(KindReg, StartLoc, EndLoc); in createReg() 152 static std::unique_ptr<SystemZOperand> 154 auto Op = make_unique<SystemZOperand>(KindAccessReg, StartLoc, EndLoc); in createAccessReg() [all …]
|