Lines Matching refs:cpool_fill
158 compiler->last_label->size += compiler->cpool_fill + (CONST_POOL_ALIGNMENT - 1) + 1; in push_cpool()
160 SLJIT_ASSERT(compiler->cpool_fill > 0 && compiler->cpool_fill <= CPOOL_SIZE); in push_cpool()
164 *inst = 0xff000000 | compiler->cpool_fill; in push_cpool()
174 cpool_end = cpool_ptr + compiler->cpool_fill; in push_cpool()
182 compiler->cpool_fill = 0; in push_cpool()
210 else if (compiler->cpool_fill > 0) { in push_inst_with_literal()
212 cpool_end = cpool_ptr + compiler->cpool_fill; in push_inst_with_literal()
226 if (compiler->cpool_fill < CPOOL_SIZE) { in push_inst_with_literal()
227 cpool_index = compiler->cpool_fill; in push_inst_with_literal()
228 compiler->cpool_fill++; in push_inst_with_literal()
233 compiler->cpool_fill = 1; in push_inst_with_literal()
253 …piler->size - compiler->cpool_diff >= MAX_DIFFERENCE(4092)) || compiler->cpool_fill >= CPOOL_SIZE)) in push_inst_with_unique_literal()
256 SLJIT_ASSERT(compiler->cpool_fill < CPOOL_SIZE && (inst & 0xfff) == 0); in push_inst_with_unique_literal()
260 *ptr = inst | compiler->cpool_fill; in push_inst_with_unique_literal()
262 compiler->cpool[compiler->cpool_fill] = literal; in push_inst_with_unique_literal()
263 compiler->cpool_unique[compiler->cpool_fill] = 1; in push_inst_with_unique_literal()
264 compiler->cpool_fill++; in push_inst_with_unique_literal()
693 if (compiler->cpool_fill > 0) in sljit_generate_code()
694 size += compiler->cpool_fill + CONST_POOL_ALIGNMENT - 1; in sljit_generate_code()
831 if (compiler->cpool_fill > 0) { in sljit_generate_code()
833 …ndex = patch_pc_relative_loads(last_pc_patch, code_ptr, cpool_start_address, compiler->cpool_fill); in sljit_generate_code()
838 buf_end = buf_ptr + compiler->cpool_fill; in sljit_generate_code()