Lines Matching refs:ByteCodeAddr
37 ByteCodeAddr rewriterAddr) { in create()
306 llvm::StringMap<ByteCodeAddr> rewriterToAddr;
319 DenseMap<Block *, ByteCodeAddr> blockToAddr;
343 void append(ByteCodeAddr field) { in append()
344 static_assert((sizeof(ByteCodeAddr) / sizeof(ByteCodeField)) == 2, in append()
348 std::memcpy(fieldParts, &field, sizeof(ByteCodeAddr)); in append()
358 append(ByteCodeAddr(0)); in append()
515 ByteCodeAddr addr = blockToAddr[it.first]; in generate()
517 std::memcpy(&matcherByteCode[offsetToFix], &addr, sizeof(ByteCodeAddr)); in generate()
1190 curCodeIt = &code[read<ByteCodeAddr>(destIndex * 2)]; in selectJump()
1267 std::enable_if_t<std::is_same<T, ByteCodeAddr>::value, T> readImpl() { in readImpl()
1268 static_assert((sizeof(ByteCodeAddr) / sizeof(ByteCodeField)) == 2, in readImpl()
1270 ByteCodeAddr result; in readImpl()
1271 std::memcpy(&result, curCodeIt, sizeof(ByteCodeAddr)); in readImpl()
1437 curCodeIt = &code[read<ByteCodeAddr>()]; in executeBranch()
1635 read<ByteCodeAddr>(); in executeForEach()
1877 const ByteCodeField *dest = &code[read<ByteCodeAddr>()]; in executeRecordMatch()