Home
last modified time | relevance | path

Searched refs:labels (Results 1 – 25 of 34) sorted by relevance

12

/php-src/.github/workflows/
H A Dremove-needs-feedback.yml13 …if: "github.repository == 'php/php-src' && contains(github.event.issue.labels.*.name, 'Status: Nee…
19 - uses: actions-ecosystem/action-remove-labels@v1
21 labels: "Status: Needs Feedback"
22 - uses: actions-ecosystem/action-add-labels@v1
24 labels: "Status: Needs Triage"
H A Dclose-stale-prs.yml22 exempt-pr-labels: RFC,Waiting on Review
24 only-issue-labels: inexistent-label
25 only-pr-labels: Waiting on Author
H A Dclose-stale-feature-requests.yml23 only-issue-labels: "Status: Requires RFC,Feature"
25 only-pr-labels: inexistent-label
/php-src/ext/opcache/jit/ir/
H A Dir_disasm.c336 ir_hashtab labels; local
391 ir_hashtab_init(&labels, 32);
398 ir_hashtab_add(&labels, insn->op3, insn->op2);
427 ir_hashtab_add(&labels, (uint32_t)((uintptr_t)*p - (uintptr_t)start), -1);
450 ir_hashtab_add(&labels, (uint32_t)((uintptr_t)addr - (uintptr_t)start), -1);
457 ir_hashtab_add(&labels, (uint32_t)((uintptr_t)addr - (uintptr_t)start), -1);
462 ir_hashtab_key_sort(&labels);
466 n = labels.count;
467 b = labels.data;
704 entry = ir_hashtab_find(&labels, (uint32_t)(*p - (uintptr_t)start));
[all …]
H A Dir_aarch64.dasc4497 int *labels = ir_mem_malloc(sizeof(int) * (max.i64 - min.i64 + 1));
4500 labels[i] = default_label;
4510 labels[val->val.i64 - min.i64] = label;
4557 int b = labels[i];
4583 ir_mem_free(labels);
5873 …/* labels for each block + for each constant + rodata label + jmp_table label + for each entry + e…
/php-src/Zend/tests/
H A Dduplicate_label_error.phpt2 Duplicate labels are not allowed
H A Dnowdoc_012.phpt2 Test false labels
/php-src/.github/ISSUE_TEMPLATE/
H A Dfeature_request.yml3 labels: ["Feature", "Status: Needs Triage"]
H A Dbug_report.yml3 labels: ["Bug", "Status: Needs Triage"]
/php-src/ext/standard/tests/general_functions/
H A Dparse_ini_string_002.phpt76 /* #44842, labels starting with underscore */
H A Dparse_ini_file.phpt95 /* #44842, labels starting with underscore */
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitSerialize.c231 label = compiler->labels; in sljit_serialize_compiler()
426 compiler->labels = label; in sljit_deserialize_compiler()
H A DsljitLir.h464 struct sljit_label *labels; member
2278 …ct sljit_label *sljit_get_first_label(struct sljit_compiler *compiler) { return compiler->labels; } in sljit_get_first_label()
H A DsljitNativePPC_common.c505 label = compiler->labels; in reduce_code_size()
623 label = compiler->labels; in sljit_generate_code()
H A DsljitNativeARM_64.c384 label = compiler->labels; in reduce_code_size()
492 label = compiler->labels; in sljit_generate_code()
H A DsljitNativeRISCV_common.c411 label = compiler->labels; in reduce_code_size()
528 label = compiler->labels; in sljit_generate_code()
H A DsljitNativeX86_common.c771 label = compiler->labels; in reduce_code_size()
898 label = compiler->labels; in sljit_generate_code()
H A DsljitNativeARM_T2_32.c485 label = compiler->labels; in reduce_code_size()
588 label = compiler->labels; in sljit_generate_code()
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_mips.h155 do { if ((size_t)((char *)pl-(char *)D->kind##labels) >= D->kind##size) { \
H A Ddasm_ppc.h155 do { if ((size_t)((char *)pl-(char *)D->kind##labels) >= D->kind##size) { \
H A Ddasm_arm.h156 do { if ((size_t)((char *)pl-(char *)D->kind##labels) >= D->kind##size) { \
H A Ddasm_x86.h157 do { if ((size_t)((char *)pl-(char *)D->kind##labels) >= D->kind##size) { \
H A Ddasm_arm64.h161 do { if ((size_t)((char *)pl-(char *)D->kind##labels) >= D->kind##size) { \
/php-src/Zend/
H A Dzend_compile.c339 CG(context).labels = NULL; in zend_oparray_context_begin()
352 if (CG(context).labels) { in zend_oparray_context_end()
353 zend_hash_destroy(CG(context).labels); in zend_oparray_context_end()
354 FREE_HASHTABLE(CG(context).labels); in zend_oparray_context_end()
355 CG(context).labels = NULL; in zend_oparray_context_end()
5850 if (CG(context).labels == NULL || in zend_resolve_goto_label()
5925 if (!CG(context).labels) { in zend_compile_label()
5926 ALLOC_HASHTABLE(CG(context).labels); in zend_compile_label()
5927 zend_hash_init(CG(context).labels, 8, NULL, label_ptr_dtor, 0); in zend_compile_label()
6623 if (CG(context).labels) { in zend_compile_try()
[all …]
H A Dzend_compile.h206 HashTable *labels; member

Completed in 141 milliseconds

12