Searched defs:AMDGPUOperand (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp45 class AMDGPUOperand : public MCParsedAsmOperand { class in namespace:__anon12050
56 AMDGPUOperand(enum KindTy K) : MCParsedAsmOperand(), Kind(K) {} function in class:__anon12050::AMDGPUOperand
278 static std::unique_ptr<AMDGPUOperand> CreateImm(int64_t Val, SMLoc Loc,
281 auto Op = llvm::make_unique<AMDGPUOperand>(Immediate);
290 static std::unique_ptr<AMDGPUOperand> CreateToken(StringRef Str, SMLoc Loc,
292 auto Res = llvm::make_unique<AMDGPUOperand>(Token);
300 static std::unique_ptr<AMDGPUOperand> CreateReg(unsigned RegNo, SMLoc S,
305 auto Op = llvm::make_unique<AMDGPUOperand>(Register);
316 static std::unique_ptr<AMDGPUOperand> CreateExpr(const class MCExpr *Expr, SMLoc S) {
317 auto Op = llvm::make_unique<AMDGPUOperand>(Expressio
[all...]

Completed in 44 milliseconds