Lines Matching defs:code
848 /* Find first branch after the inserted code */
992 emit_program(Program* program, std::vector<uint32_t>& code)
998 fix_exports(ctx, code, program);
1001 block.offset = code.size();
1002 emit_block(ctx, code, block);
1005 fix_branches(ctx, code);
1007 unsigned exec_size = code.size() * sizeof(uint32_t);
1012 unsigned final_size = align(code.size() + 3 * 16, 16);
1013 while (code.size() < final_size)
1014 code.push_back(0xbf9f0000u);
1017 fix_constaddrs(ctx, code);
1022 code.insert(code.end(), (uint32_t*)program->constant_data.data(),