Home
last modified time | relevance | path

Searched refs:basep (Results 1 – 22 of 22) sorted by relevance

/dragonfly/contrib/gcc-8.0/gcc/
H A Dgimple-streamer-out.c136 tree *basep = NULL; in output_gimple_stmt() local
143 basep = &op; in output_gimple_stmt()
144 if (TREE_CODE (*basep) == ADDR_EXPR) in output_gimple_stmt()
145 basep = &TREE_OPERAND (*basep, 0); in output_gimple_stmt()
147 basep = &TREE_OPERAND (*basep, 0); in output_gimple_stmt()
148 if (VAR_P (*basep) in output_gimple_stmt()
150 && !DECL_REGISTER (*basep)) in output_gimple_stmt()
154 *basep = build2 (MEM_REF, TREE_TYPE (*basep), in output_gimple_stmt()
160 basep = NULL; in output_gimple_stmt()
164 if (basep) in output_gimple_stmt()
[all …]
H A Dtree-ssa-phiopt.c1922 tree *basep = &lhs; in cond_store_replacement() local
1923 while (handled_component_p (*basep)) in cond_store_replacement()
1924 basep = &TREE_OPERAND (*basep, 0); in cond_store_replacement()
1925 if (TREE_CODE (*basep) == MEM_REF in cond_store_replacement()
1926 || TREE_CODE (*basep) == TARGET_MEM_REF) in cond_store_replacement()
1927 TREE_OPERAND (*basep, 1) in cond_store_replacement()
1928 = fold_convert (ptr_type_node, TREE_OPERAND (*basep, 1)); in cond_store_replacement()
1930 *basep = build2 (MEM_REF, TREE_TYPE (*basep), in cond_store_replacement()
1931 build_fold_addr_expr (*basep), in cond_store_replacement()
H A Dtree-ssa-structalias.c7428 tree *basep = &ref; in visit_loadstore() local
7429 while (handled_component_p (*basep)) in visit_loadstore()
7430 basep = &TREE_OPERAND (*basep, 0); in visit_loadstore()
7431 gcc_assert (VAR_P (*basep)); in visit_loadstore()
7432 tree ptr = build_fold_addr_expr (*basep); in visit_loadstore()
7434 *basep = build2 (MEM_REF, TREE_TYPE (*basep), ptr, zero); in visit_loadstore()
7435 MR_DEPENDENCE_CLIQUE (*basep) = clique; in visit_loadstore()
7436 MR_DEPENDENCE_BASE (*basep) = 0; in visit_loadstore()
H A Dgimple-ssa-store-merging.c2879 unsigned short *cliquep, unsigned short *basep) in get_alias_type_for_stmts() argument
2886 *basep = 0; in get_alias_type_for_stmts()
2900 *basep = MR_DEPENDENCE_BASE (base); in get_alias_type_for_stmts()
2909 || *basep != MR_DEPENDENCE_BASE (base)) in get_alias_type_for_stmts()
2912 *basep = 0; in get_alias_type_for_stmts()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dgimple-streamer-out.c123 tree *basep = &op; in output_gimple_stmt() local
124 while (handled_component_p (*basep)) in output_gimple_stmt()
125 basep = &TREE_OPERAND (*basep, 0); in output_gimple_stmt()
126 if (TREE_CODE (*basep) == VAR_DECL in output_gimple_stmt()
127 && !auto_var_in_fn_p (*basep, current_function_decl) in output_gimple_stmt()
128 && !DECL_REGISTER (*basep)) in output_gimple_stmt()
130 bool volatilep = TREE_THIS_VOLATILE (*basep); in output_gimple_stmt()
131 *basep = build2 (MEM_REF, TREE_TYPE (*basep), in output_gimple_stmt()
132 build_fold_addr_expr (*basep), in output_gimple_stmt()
134 (TREE_TYPE (*basep)), 0)); in output_gimple_stmt()
[all …]
H A Dtree-vect-data-refs.c2507 vect_check_gather (gimple stmt, loop_vec_info loop_vinfo, tree *basep, in vect_check_gather() argument
2687 if (basep) in vect_check_gather()
2688 *basep = base; in vect_check_gather()
/dragonfly/sbin/rconfig/
H A Drconfig.c51 static void addTag(tag_t *basep, const char *tag, int flags);
109 addTag(tag_t *basep, const char *name, int flags) in addTag() argument
113 while ((*basep) != NULL) in addTag()
114 basep = &(*basep)->next; in addTag()
118 *basep = tag; in addTag()
/dragonfly/sys/kern/
H A Dsubr_kobj.c141 kobj_class_t *basep; in kobj_lookup_method_mi() local
147 basep = cls->baseclasses; in kobj_lookup_method_mi()
148 if (basep) { in kobj_lookup_method_mi()
149 for (; *basep; basep++) { in kobj_lookup_method_mi()
150 ce = kobj_lookup_method_mi(*basep, desc); in kobj_lookup_method_mi()
H A Dkern_kmalloc.c369 struct kmalloc_slab **basep; in malloc_slab_destroy() local
380 basep = &base; in malloc_slab_destroy()
387 *basep = slab; /* link into base list */ in malloc_slab_destroy()
388 basep = &slab->next; in malloc_slab_destroy()
403 *basep = NULL; in malloc_slab_destroy()
520 struct kmalloc_slab **basep; in malloc_mgt_poll() local
547 basep = &base; in malloc_mgt_poll()
579 *basep = slab; in malloc_mgt_poll()
580 basep = &slab->next; in malloc_mgt_poll()
590 *basep = NULL; /* terminate the retirement list */ in malloc_mgt_poll()
H A Dvfs_syscalls.c4610 kern_getdirentries(int fd, char *buf, u_int count, long *basep, int *res, in kern_getdirentries() argument
4651 if (basep) { in kern_getdirentries()
4652 *basep = (long)loff; in kern_getdirentries()
4674 if (error == 0 && uap->basep) in sys_getdirentries()
4675 error = copyout(&base, uap->basep, sizeof(*uap->basep)); in sys_getdirentries()
/dragonfly/sbin/hammer/
H A Dcmd_softprune.c48 static void hammer_softprune_scandir(struct softprune **basep,
54 static struct softprune *hammer_softprune_addentry(struct softprune **basep,
257 hammer_softprune_scandir(struct softprune **basep, in hammer_softprune_scandir() argument
293 hammer_softprune_addentry(basep, template, in hammer_softprune_scandir()
407 hammer_softprune_addentry(struct softprune **basep, in hammer_softprune_addentry() argument
437 for (scan = *basep; scan; scan = scan->next) { in hammer_softprune_addentry()
458 scan->next = *basep; in hammer_softprune_addentry()
459 *basep = scan; in hammer_softprune_addentry()
/dragonfly/lib/libc/xdr/
H A Dxdr_array.c143 xdr_vector(XDR *xdrs, char *basep, u_int nelem, u_int elemsize, in xdr_vector() argument
149 elptr = basep; in xdr_vector()
/dragonfly/sys/vfs/hammer2/
H A Dhammer2_freemap.c61 int n, int sub_key, int radix, hammer2_key_t *basep);
547 int radix, hammer2_key_t *basep) in hammer2_bmap_alloc() argument
720 *basep + offset, bmap->bitmapq[i], in hammer2_bmap_alloc()
728 (*basep + (offset & ~pmask)) | in hammer2_bmap_alloc()
782 *basep += offset; in hammer2_bmap_alloc()
/dragonfly/usr.sbin/makefs/hammer2/
H A Dhammer2_freemap.c65 int n, int sub_key, int radix, hammer2_key_t *basep);
551 int radix, hammer2_key_t *basep) in hammer2_bmap_alloc() argument
724 *basep + offset, bmap->bitmapq[i], in hammer2_bmap_alloc()
732 (*basep + (offset & ~pmask)) | in hammer2_bmap_alloc()
786 *basep += offset; in hammer2_bmap_alloc()
/dragonfly/sbin/newfs_hammer2/
H A Dmkfs_hammer2.c59 static void alloc_direct(hammer2_off_t *basep, hammer2_blockref_t *bref,
640 alloc_direct(hammer2_off_t *basep, hammer2_blockref_t *bref, size_t bytes) in alloc_direct() argument
655 bref->data_off = *basep | radix; in alloc_direct()
658 *basep += 1U << radix; in alloc_direct()
/dragonfly/sys/platform/vkernel64/platform/
H A Dinit.c1526 vkernel_module_memory_alloc(vm_offset_t *basep, size_t bytes) in vkernel_module_memory_alloc() argument
1531 *basep = (vm_offset_t)sbrk(xtra + bytes) + xtra; in vkernel_module_memory_alloc()
1532 bzero((void *)*basep, bytes); in vkernel_module_memory_alloc()
1534 *basep = (vm_offset_t)mmap((void *)0x000000000, bytes, in vkernel_module_memory_alloc()
1537 if ((void *)*basep == MAP_FAILED) in vkernel_module_memory_alloc()
/dragonfly/sys/sys/
H A Dkern_syscall.h147 int kern_getdirentries(int fd, char *buf, u_int count, long *basep, int *res,
H A Dsysproto.h1075 long * basep; char basep_[PAD_(long *)]; member
/dragonfly/sys/dev/disk/ahci/
H A Dahci_cam.c97 static void ahci_strip_string(const char **basep, int *lenp);
1852 ahci_strip_string(const char **basep, int *lenp) in ahci_strip_string() argument
1854 const char *base = *basep; in ahci_strip_string()
1863 *basep = base; in ahci_strip_string()
/dragonfly/sys/dev/disk/sili/
H A Dsili_cam.c86 static void sili_strip_string(const char **basep, int *lenp);
1767 sili_strip_string(const char **basep, int *lenp) in sili_strip_string() argument
1769 const char *base = *basep; in sili_strip_string()
1778 *basep = base; in sili_strip_string()
/dragonfly/contrib/gcc-4.7/gcc/cp/
H A Ddecl.c11811 tree *basep; in xref_basetypes() local
11832 basep = &base_list; in xref_basetypes()
11833 while (*basep) in xref_basetypes()
11835 tree basetype = TREE_VALUE (*basep); in xref_basetypes()
11840 *basep = TREE_CHAIN (*basep); in xref_basetypes()
11844 if (TREE_TYPE (*basep)) in xref_basetypes()
11848 basep = &TREE_CHAIN (*basep); in xref_basetypes()
/dragonfly/contrib/gcc-8.0/gcc/cp/
H A Ddecl.c13940 tree *basep; in xref_basetypes() local
13962 basep = &base_list; in xref_basetypes()
13963 while (*basep) in xref_basetypes()
13965 tree basetype = TREE_VALUE (*basep); in xref_basetypes()
13977 *basep = TREE_CHAIN (*basep); in xref_basetypes()
13981 if (TREE_TYPE (*basep)) in xref_basetypes()
13985 basep = &TREE_CHAIN (*basep); in xref_basetypes()