Lines Matching defs:ByteCodeWriter
346 struct ByteCodeWriter { struct
347 ByteCodeWriter(SmallVectorImpl<ByteCodeField> &bytecode, Generator &generator) in ByteCodeWriter() argument
351 void append(ByteCodeField field) { bytecode.push_back(field); } in append()
352 void append(OpCode opCode) { bytecode.push_back(opCode); } in append()
355 void append(ByteCodeAddr field) { in append()
366 void append(Block *successor) { in append()
375 void append(SuccessorRange successors) { in append()
381 void appendPDLValueList(OperandRange values) { in appendPDLValueList()
388 void appendPDLValue(Value value) { in appendPDLValue()
394 void appendPDLValueKind(Value value) { appendPDLValueKind(value.getType()); } in appendPDLValueKind()
397 void appendPDLValueKind(Type type) { in appendPDLValueKind()
419 append(T value) { in append()
426 append(T range) { in append()
434 void append(FieldTy field, Field2Ty field2, FieldTys... fields) { in append()
442 appendInline(T value) { in appendInline()
451 DenseMap<Block *, SmallVector<unsigned, 4>> unresolvedSuccessorRefs;
454 SmallVectorImpl<ByteCodeField> &bytecode;
457 Generator &generator;