Lines Matching refs:ByteCodeAddr
39 ByteCodeAddr rewriterAddr) { in create()
315 llvm::StringMap<ByteCodeAddr> rewriterToAddr;
328 DenseMap<Block *, ByteCodeAddr> blockToAddr;
355 void append(ByteCodeAddr field) { in append()
356 static_assert((sizeof(ByteCodeAddr) / sizeof(ByteCodeField)) == 2, in append()
360 std::memcpy(fieldParts, &field, sizeof(ByteCodeAddr)); in append()
370 append(ByteCodeAddr(0)); in append()
527 ByteCodeAddr addr = blockToAddr[it.first]; in generate()
529 std::memcpy(&matcherByteCode[offsetToFix], &addr, sizeof(ByteCodeAddr)); in generate()
1271 curCodeIt = &code[read<ByteCodeAddr>(destIndex * 2)]; in selectJump()
1348 std::enable_if_t<std::is_same<T, ByteCodeAddr>::value, T> readImpl() { in readImpl()
1349 static_assert((sizeof(ByteCodeAddr) / sizeof(ByteCodeField)) == 2, in readImpl()
1351 ByteCodeAddr result; in readImpl()
1352 std::memcpy(&result, curCodeIt, sizeof(ByteCodeAddr)); in readImpl()
1579 curCodeIt = &code[read<ByteCodeAddr>()]; in executeBranch()
1786 read<ByteCodeAddr>(); in executeForEach()
2030 const ByteCodeField *dest = &code[read<ByteCodeAddr>()]; in executeRecordMatch()