Home
last modified time | relevance | path

Searched defs:BPFOperand (Results 1 – 1 of 1) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/BPF/AsmParser/
DBPFAsmParser.cpp79 struct BPFOperand : public MCParsedAsmOperand { struct
81 enum KindTy {
85 } Kind;
87 struct RegOp {
91 struct ImmOp {
95 SMLoc StartLoc, EndLoc;
96 union {
102 BPFOperand(KindTy K) : MCParsedAsmOperand(), Kind(K) {} in BPFOperand() function
105 BPFOperand(const BPFOperand &o) : MCParsedAsmOperand() { in BPFOperand() function
123 bool isToken() const override { return Kind == Token; } in isToken()
[all …]