Home
last modified time | relevance | path

Searched refs:fcode (Results 1 – 25 of 44) sorted by relevance

12

/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dasan.h119 asan_intercepted_p (enum built_in_function fcode) in asan_intercepted_p() argument
121 return fcode == BUILT_IN_INDEX in asan_intercepted_p()
122 || fcode == BUILT_IN_MEMCHR in asan_intercepted_p()
123 || fcode == BUILT_IN_MEMCMP in asan_intercepted_p()
124 || fcode == BUILT_IN_MEMCPY in asan_intercepted_p()
125 || fcode == BUILT_IN_MEMMOVE in asan_intercepted_p()
126 || fcode == BUILT_IN_MEMSET in asan_intercepted_p()
127 || fcode == BUILT_IN_STRCASECMP in asan_intercepted_p()
128 || fcode == BUILT_IN_STRCAT in asan_intercepted_p()
129 || fcode == BUILT_IN_STRCHR in asan_intercepted_p()
[all …]
H A Dtsan.c57 enum built_in_function fcode; in get_memory_access_decl() local
60 fcode = is_write ? BUILT_IN_TSAN_WRITE1 in get_memory_access_decl()
63 fcode = is_write ? BUILT_IN_TSAN_WRITE2 in get_memory_access_decl()
66 fcode = is_write ? BUILT_IN_TSAN_WRITE4 in get_memory_access_decl()
69 fcode = is_write ? BUILT_IN_TSAN_WRITE8 in get_memory_access_decl()
72 fcode = is_write ? BUILT_IN_TSAN_WRITE16 in get_memory_access_decl()
75 return builtin_decl_implicit (fcode); in get_memory_access_decl()
255 enum built_in_function fcode, tsan_fcode; member
260 #define TRANSFORM(fcode, tsan_fcode, action, code) \ argument
261 { BUILT_IN_##fcode, BUILT_IN_##tsan_fcode, action, code }
[all …]
H A Dgenhooks.c47 const char *fcode; in emit_findices() local
49 while ((fcode = strstr (doc, "@Fcode{")) && (!end || fcode < end)) in emit_findices()
51 fcode += strlen ("@Fcode{"); in emit_findices()
52 doc = strchr (fcode, '}'); in emit_findices()
55 printf ("@findex %.*s\n", (int) (doc - fcode), fcode); in emit_findices()
56 doc = fcode; in emit_findices()
208 const char *doc, *fcode, *p_end; in emit_documentation() local
265 for (; (fcode = strstr (doc, "@Fcode{")) && fcode < p_end; in emit_documentation()
266 doc = fcode + 2) in emit_documentation()
267 printf ("%.*s@", (int) (fcode - doc), doc); in emit_documentation()
H A Dbuiltins.c1835 fcode = BUILT_IN_##MATHFN; fcodef = BUILT_IN_##MATHFN##F ; \
1841 fcode = BUILT_IN_##MATHFN; fcodef = BUILT_IN_##MATHFN##F ; \
1852 fcode = BUILT_IN_##MATHFN##_R; fcodef = BUILT_IN_##MATHFN##F_R ; \
1864 built_in_function fcode, fcodef, fcodel; in mathfn_built_in_2() local
1969 return fcode; in mathfn_built_in_2()
4218 enum built_in_function fcode; in expand_builtin_memset_args() local
4334 fcode = DECL_FUNCTION_CODE (fndecl); in expand_builtin_memset_args()
4335 if (fcode == BUILT_IN_MEMSET in expand_builtin_memset_args()
4336 || fcode == BUILT_IN_CHKP_MEMSET_NOBND_NOCHK_CHKP) in expand_builtin_memset_args()
4339 else if (fcode == BUILT_IN_BZERO) in expand_builtin_memset_args()
[all …]
H A Dipa-chkp.c452 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); in chkp_maybe_clone_builtin_fndecl() local
455 && fcode < BEGIN_CHKP_BUILTINS); in chkp_maybe_clone_builtin_fndecl()
457 fcode = (enum built_in_function) (fcode + BEGIN_CHKP_BUILTINS + 1); in chkp_maybe_clone_builtin_fndecl()
458 clone = builtin_decl_explicit (fcode); in chkp_maybe_clone_builtin_fndecl()
465 gcc_assert (DECL_FUNCTION_CODE (clone) == fcode); in chkp_maybe_clone_builtin_fndecl()
467 set_builtin_decl (fcode, clone, false); in chkp_maybe_clone_builtin_fndecl()
H A Dconvert.c128 enum built_in_function fcode = builtin_mathfn_code (expr); in convert_to_real_1() local
148 switch (fcode) in convert_to_real_1()
219 if ((fcode == BUILT_IN_SQRT || fcode == BUILT_IN_SQRTL) in convert_to_real_1()
243 tree fn = mathfn_built_in (newtype, fcode); in convert_to_real_1()
553 const enum built_in_function fcode = builtin_mathfn_code (s_expr); in convert_to_integer_1() local
556 switch (fcode) in convert_to_integer_1()
658 const enum built_in_function fcode = builtin_mathfn_code (s_expr); in convert_to_integer_1() local
661 switch (fcode) in convert_to_integer_1()
H A Dgimple-fold.c2176 enum built_in_function fcode = DECL_FUNCTION_CODE (callee); in gimple_fold_builtin_string_compare() local
2215 switch (fcode) in gimple_fold_builtin_string_compare()
2256 || fcode == BUILT_IN_STRCMP in gimple_fold_builtin_string_compare()
2257 || fcode == BUILT_IN_STRCASECMP; in gimple_fold_builtin_string_compare()
2298 if (fcode == BUILT_IN_STRNCMP && length == 1) in gimple_fold_builtin_string_compare()
2324 if (fcode == BUILT_IN_STRNCMP in gimple_fold_builtin_string_compare()
2488 enum built_in_function fcode) in gimple_fold_builtin_memory_chk() argument
2497 if (fcode != BUILT_IN_MEMSET_CHK && operand_equal_p (src, dest, 0)) in gimple_fold_builtin_memory_chk()
2499 if (fcode != BUILT_IN_MEMPCPY_CHK) in gimple_fold_builtin_memory_chk()
2529 if (fcode == BUILT_IN_MEMPCPY_CHK && ignore) in gimple_fold_builtin_memory_chk()
[all …]
H A Dtrans-mem.c379 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); in is_tm_simple_load() local
380 return (fcode == BUILT_IN_TM_LOAD_1 in is_tm_simple_load()
381 || fcode == BUILT_IN_TM_LOAD_2 in is_tm_simple_load()
382 || fcode == BUILT_IN_TM_LOAD_4 in is_tm_simple_load()
383 || fcode == BUILT_IN_TM_LOAD_8 in is_tm_simple_load()
384 || fcode == BUILT_IN_TM_LOAD_FLOAT in is_tm_simple_load()
385 || fcode == BUILT_IN_TM_LOAD_DOUBLE in is_tm_simple_load()
386 || fcode == BUILT_IN_TM_LOAD_LDOUBLE in is_tm_simple_load()
387 || fcode == BUILT_IN_TM_LOAD_M64 in is_tm_simple_load()
388 || fcode == BUILT_IN_TM_LOAD_M128 in is_tm_simple_load()
[all …]
H A Dvalue-prof.c1583 enum built_in_function fcode; in interesting_stringop_to_profile_p() local
1585 fcode = DECL_FUNCTION_CODE (gimple_call_fndecl (call)); in interesting_stringop_to_profile_p()
1586 if (fcode != BUILT_IN_MEMCPY && fcode != BUILT_IN_MEMPCPY in interesting_stringop_to_profile_p()
1587 && fcode != BUILT_IN_MEMSET && fcode != BUILT_IN_BZERO) in interesting_stringop_to_profile_p()
1590 switch (fcode) in interesting_stringop_to_profile_p()
1718 enum built_in_function fcode; in gimple_stringops_transform() local
1764 fcode = DECL_FUNCTION_CODE (gimple_call_fndecl (stmt)); in gimple_stringops_transform()
1765 switch (fcode) in gimple_stringops_transform()
H A Dgensupport.h93 enum rtx_code fcode; member
H A Dgenopinit.c370 fprintf (s_file, " %s,\n", rtx_upname[optabs[i].fcode]); in main()
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dgenhooks.c48 const char *fcode; in emit_findices() local
50 while ((fcode = strstr (doc, "@Fcode{")) && (!end || fcode < end)) in emit_findices()
52 fcode += strlen ("@Fcode{"); in emit_findices()
53 doc = strchr (fcode, '}'); in emit_findices()
56 printf ("@findex %.*s\n", (int) (doc - fcode), fcode); in emit_findices()
57 doc = fcode; in emit_findices()
211 const char *doc, *fcode, *p_end; in emit_documentation() local
268 for (; (fcode = strstr (doc, "@Fcode{")) && fcode < p_end; in emit_documentation()
269 doc = fcode + 2) in emit_documentation()
270 printf ("%.*s@", (int) (fcode - doc), doc); in emit_documentation()
H A Dconvert.c143 enum built_in_function fcode = builtin_mathfn_code (expr); in convert_to_real() local
153 switch (fcode) in convert_to_real()
212 tree fn = mathfn_built_in (newtype, fcode); in convert_to_real()
228 && (((fcode == BUILT_IN_FLOORL in convert_to_real()
229 || fcode == BUILT_IN_CEILL in convert_to_real()
230 || fcode == BUILT_IN_ROUNDL in convert_to_real()
231 || fcode == BUILT_IN_RINTL in convert_to_real()
232 || fcode == BUILT_IN_TRUNCL in convert_to_real()
233 || fcode == BUILT_IN_NEARBYINTL) in convert_to_real()
236 || ((fcode == BUILT_IN_FLOOR in convert_to_real()
[all …]
H A Dbuiltins.c1832 fcode = BUILT_IN_MATHFN; fcodef = BUILT_IN_MATHFN##F ; \
1837 fcode = BUILT_IN_MATHFN##_R; fcodef = BUILT_IN_MATHFN##F_R ; \
1848 enum built_in_function fcode, fcodef, fcodel, fcode2; in mathfn_built_in_1() local
1945 fcode2 = fcode; in mathfn_built_in_1()
3570 enum built_in_function fcode; in expand_builtin_memset_args() local
3677 fcode = DECL_FUNCTION_CODE (fndecl); in expand_builtin_memset_args()
3678 if (fcode == BUILT_IN_MEMSET) in expand_builtin_memset_args()
3681 else if (fcode == BUILT_IN_BZERO) in expand_builtin_memset_args()
5225 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); in expand_builtin_sync_operation() local
5229 switch (fcode) in expand_builtin_sync_operation()
[all …]
H A Dtrans-mem.c340 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); in is_tm_simple_load() local
341 return (fcode == BUILT_IN_TM_LOAD_1 in is_tm_simple_load()
342 || fcode == BUILT_IN_TM_LOAD_2 in is_tm_simple_load()
343 || fcode == BUILT_IN_TM_LOAD_4 in is_tm_simple_load()
344 || fcode == BUILT_IN_TM_LOAD_8 in is_tm_simple_load()
345 || fcode == BUILT_IN_TM_LOAD_FLOAT in is_tm_simple_load()
346 || fcode == BUILT_IN_TM_LOAD_DOUBLE in is_tm_simple_load()
347 || fcode == BUILT_IN_TM_LOAD_LDOUBLE in is_tm_simple_load()
348 || fcode == BUILT_IN_TM_LOAD_M64 in is_tm_simple_load()
349 || fcode == BUILT_IN_TM_LOAD_M128 in is_tm_simple_load()
[all …]
H A Dvalue-prof.c1363 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl); in interesting_stringop_to_profile_p() local
1365 if (fcode != BUILT_IN_MEMCPY && fcode != BUILT_IN_MEMPCPY in interesting_stringop_to_profile_p()
1366 && fcode != BUILT_IN_MEMSET && fcode != BUILT_IN_BZERO) in interesting_stringop_to_profile_p()
1369 switch (fcode) in interesting_stringop_to_profile_p()
1499 enum built_in_function fcode; in gimple_stringops_transform() local
1513 fcode = DECL_FUNCTION_CODE (fndecl); in gimple_stringops_transform()
1541 switch (fcode) in gimple_stringops_transform()
H A Dtree-streamer-in.c1064 enum built_in_function fcode; in streamer_get_builtin_tree() local
1071 fcode = (enum built_in_function) streamer_read_uhwi (ib); in streamer_get_builtin_tree()
1075 if (fcode >= END_BUILTINS) in streamer_get_builtin_tree()
1077 result = builtin_decl_explicit (fcode); in streamer_get_builtin_tree()
1082 result = targetm.builtin_decl (fcode, true); in streamer_get_builtin_tree()
/dflybsd-src/usr.bin/compress/
H A Dzopen.c159 #define fcode zs->u.w.zs_fcode macro
273 for (fcode = (long)hsize; fcode < 65536L; fcode *= 2L) in zwrite()
283 fcode = (long)(((long)c << maxbits) + ent); in zwrite()
286 if (htabof(i) == fcode) { in zwrite()
297 if (htabof(i) == fcode) { in zwrite()
309 htabof(i) = fcode; in zwrite()
/dflybsd-src/contrib/libpcap/
H A Dsavefile.c247 pcap_freecode(&p->fcode); in sf_cleanup()
620 struct bpf_insn *fcode; in pcap_offline_read() local
652 if ((fcode = p->fcode.bf_insns) == NULL || in pcap_offline_read()
653 pcap_filter(fcode, data, h.len, h.caplen)) { in pcap_offline_read()
H A Dpcap-haiku.cpp88 if (handle->fcode.bf_insns) { in pcap_read_haiku()
89 if (pcap_filter(handle->fcode.bf_insns, buffer, bytesReceived, in pcap_read_haiku()
H A Dpcap-airpcap.c669 p->fcode.bf_insns == NULL || in airpcap_read()
670 pcap_filter(p->fcode.bf_insns, datap, bhp->Originallen, caplen)) { in airpcap_read()
/dflybsd-src/games/backgammon/common_source/
H A Dtable.c44 int fcode; member
204 switch (atmata[i].fcode) { in dotable()
/dflybsd-src/sys/net/
H A Dbpf.c1047 struct bpf_insn *fcode, *old; in bpf_setf() local
1074 fcode = (struct bpf_insn *)kmalloc(size, M_BPF, M_WAITOK); in bpf_setf()
1075 if (copyin(fp->bf_insns, fcode, size) == 0 && in bpf_setf()
1076 bpf_validate(fcode, (int)flen)) { in bpf_setf()
1078 d->bd_wfilter = fcode; in bpf_setf()
1080 d->bd_rfilter = fcode; in bpf_setf()
1087 kfree(fcode, M_BPF); in bpf_setf()
/dflybsd-src/contrib/tcpdump/
H A Dtcpdump.c1471 struct bpf_program fcode; in main() local
2238 if (pcap_compile(pd, &fcode, cmdbuf, Oflag, netmask) < 0) in main()
2241 bpf_dump(&fcode, dflag); in main()
2244 pcap_freecode(&fcode); in main()
2329 if (pcap_setfilter(pd, &fcode) < 0) in main()
2610 if (pcap_compile(pd, &fcode, cmdbuf, Oflag, netmask) < 0) in main()
2617 if (pcap_setfilter(pd, &fcode) < 0) in main()
2643 pcap_freecode(&fcode); in main()
/dflybsd-src/contrib/gcc-4.7/gcc/cp/
H A Dcall.c1070 enum tree_code fcode, tcode; in standard_conversion() local
1097 fcode = TREE_CODE (from); in standard_conversion()
1101 if (fcode == FUNCTION_TYPE || fcode == ARRAY_TYPE) in standard_conversion()
1104 fcode = TREE_CODE (from); in standard_conversion()
1116 fcode = TREE_CODE (from); in standard_conversion()
1125 if (tcode == COMPLEX_TYPE && fcode == COMPLEX_TYPE) in standard_conversion()
1159 else if ((tcode == INTEGER_TYPE && fcode == POINTER_TYPE) in standard_conversion()
1160 || (tcode == POINTER_TYPE && fcode == INTEGER_TYPE)) in standard_conversion()
1167 else if (UNSCOPED_ENUM_P (to) && fcode == INTEGER_TYPE) in standard_conversion()
1174 else if ((tcode == POINTER_TYPE && fcode == POINTER_TYPE) in standard_conversion()
[all …]

12