Home
last modified time | relevance | path

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

12

/PHP-8.2/.github/workflows/
H A Dremove-needs-feedback.yml13 …if: "github.repository_owner == 'php' && contains(github.event.issue.labels.*.name, 'Status: Needs…
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-8.2/ext/opcache/jit/ir/
H A Dir_disasm.c332 ir_hashtab labels; local
387 ir_hashtab_init(&labels, 32);
394 ir_hashtab_add(&labels, insn->op3, insn->op2);
423 ir_hashtab_add(&labels, (uint32_t)((uintptr_t)*p - (uintptr_t)start), -1);
446 ir_hashtab_add(&labels, (uint32_t)((uintptr_t)addr - (uintptr_t)start), -1);
453 ir_hashtab_add(&labels, (uint32_t)((uintptr_t)addr - (uintptr_t)start), -1);
458 ir_hashtab_key_sort(&labels);
462 n = labels.count;
463 b = labels.data;
676 entry = ir_hashtab_find(&labels, (uint32_t)(*p - (uintptr_t)start));
[all …]
H A Dir_aarch64.dasc4300 int *labels = ir_mem_malloc(sizeof(int) * (max.i64 - min.i64 + 1));
4303 labels[i] = default_label;
4313 labels[val->val.i64 - min.i64] = label;
4354 int b = labels[i];
4376 ir_mem_free(labels);
5641 …/* labels for each block + for each constant + rodata label + jmp_table label + for each entry + e…
H A Dir_x86.dasc7322 int *labels = ir_mem_malloc(sizeof(int) * (size_t)(max.i64 - min.i64 + 1));
7325 labels[i] = default_label;
7335 labels[val->val.i64 - min.i64] = label;
7443 int b = labels[i];
7465 ir_mem_free(labels);
9259 /* labels for each block + for each constant + rodata label + jmp_table label + for each entry */
/PHP-8.2/Zend/tests/
H A Dduplicate_label_error.phpt2 Duplicate labels are not allowed
H A Dnowdoc_012.phpt2 Test false labels
/PHP-8.2/.github/ISSUE_TEMPLATE/
H A Dfeature_request.yml3 labels: ["Feature", "Status: Needs Triage"]
H A Dbug_report.yml3 labels: ["Bug", "Status: Needs Triage"]
/PHP-8.2/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-8.2/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_arm64.h161 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) { \
/PHP-8.2/ext/pcre/pcre2lib/sljit/
H A DsljitLir.h417 struct sljit_label *labels; member
H A DsljitNativeS390X.c1445 label = compiler->labels; in sljit_generate_code()
1526 label = compiler->labels; in sljit_generate_code()
H A DsljitNativeSPARC_common.c327 label = compiler->labels; in sljit_generate_code()
H A DsljitNativeARM_64.c262 label = compiler->labels; in sljit_generate_code()
H A DsljitLir.c707 compiler->labels = label; in set_label()
H A DsljitNativePPC_common.c441 label = compiler->labels; in sljit_generate_code()
/PHP-8.2/Zend/
H A Dzend_compile.c327 CG(context).labels = NULL; in zend_oparray_context_begin()
338 if (CG(context).labels) { in zend_oparray_context_end()
339 zend_hash_destroy(CG(context).labels); in zend_oparray_context_end()
340 FREE_HASHTABLE(CG(context).labels); in zend_oparray_context_end()
341 CG(context).labels = NULL; in zend_oparray_context_end()
5483 if (CG(context).labels == NULL || in zend_resolve_goto_label()
5558 if (!CG(context).labels) { in zend_compile_label()
5559 ALLOC_HASHTABLE(CG(context).labels); in zend_compile_label()
5560 zend_hash_init(CG(context).labels, 8, NULL, label_ptr_dtor, 0); in zend_compile_label()
6256 if (CG(context).labels) { in zend_compile_try()
[all …]
H A Dzend_compile.h201 HashTable *labels; member

Completed in 120 milliseconds

12