Lines Matching refs:bytecode
335 ByteCodeWriter(SmallVectorImpl<ByteCodeField> &bytecode, Generator &generator) in ByteCodeWriter()
336 : bytecode(bytecode), generator(generator) {} in ByteCodeWriter()
339 void append(ByteCodeField field) { bytecode.push_back(field); } in append()
340 void append(OpCode opCode) { bytecode.push_back(opCode); } in append()
349 bytecode.append({fieldParts[0], fieldParts[1]}); in append()
357 unresolvedSuccessorRefs[successor].push_back(bytecode.size()); in append()
370 bytecode.push_back(values.size()); in appendPDLValueList()
399 bytecode.push_back(static_cast<ByteCodeField>(kind)); in appendPDLValueKind()
408 bytecode.push_back(generator.getMemIndex(value)); in append()
415 bytecode.push_back(llvm::size(range)); in append()
435 bytecode.append(fieldParts, fieldParts + numParts); in appendInline()
442 SmallVectorImpl<ByteCodeField> &bytecode; member