Lines Matching refs:cpool_fill

162 		compiler->last_label->size += compiler->cpool_fill + (CONST_POOL_ALIGNMENT - 1) + 1;  in push_cpool()
164 SLJIT_ASSERT(compiler->cpool_fill > 0 && compiler->cpool_fill <= CPOOL_SIZE); in push_cpool()
168 *inst = 0xff000000 | compiler->cpool_fill; in push_cpool()
178 cpool_end = cpool_ptr + compiler->cpool_fill; in push_cpool()
186 compiler->cpool_fill = 0; in push_cpool()
214 else if (compiler->cpool_fill > 0) { in push_inst_with_literal()
216 cpool_end = cpool_ptr + compiler->cpool_fill; in push_inst_with_literal()
230 if (compiler->cpool_fill < CPOOL_SIZE) { in push_inst_with_literal()
231 cpool_index = compiler->cpool_fill; in push_inst_with_literal()
232 compiler->cpool_fill++; in push_inst_with_literal()
237 compiler->cpool_fill = 1; in push_inst_with_literal()
257 …piler->size - compiler->cpool_diff >= MAX_DIFFERENCE(4092)) || compiler->cpool_fill >= CPOOL_SIZE)) in push_inst_with_unique_literal()
260 SLJIT_ASSERT(compiler->cpool_fill < CPOOL_SIZE && (inst & 0xfff) == 0); in push_inst_with_unique_literal()
264 *ptr = inst | compiler->cpool_fill; in push_inst_with_unique_literal()
266 compiler->cpool[compiler->cpool_fill] = literal; in push_inst_with_unique_literal()
267 compiler->cpool_unique[compiler->cpool_fill] = 1; in push_inst_with_unique_literal()
268 compiler->cpool_fill++; in push_inst_with_unique_literal()
698 if (compiler->cpool_fill > 0) in sljit_generate_code()
699 size += compiler->cpool_fill + CONST_POOL_ALIGNMENT - 1; in sljit_generate_code()
836 if (compiler->cpool_fill > 0) { in sljit_generate_code()
838 …ndex = patch_pc_relative_loads(last_pc_patch, code_ptr, cpool_start_address, compiler->cpool_fill); in sljit_generate_code()
843 buf_end = buf_ptr + compiler->cpool_fill; in sljit_generate_code()