| /freebsd-12.1/contrib/gcc/ |
| H A D | basic-block.h | 393 #define ENTRY_BLOCK_PTR_FOR_FUNCTION(FN) ((FN)->cfg->x_entry_block_ptr) argument 394 #define EXIT_BLOCK_PTR_FOR_FUNCTION(FN) ((FN)->cfg->x_exit_block_ptr) argument 395 #define basic_block_info_for_function(FN) ((FN)->cfg->x_basic_block_info) argument 396 #define n_basic_blocks_for_function(FN) ((FN)->cfg->x_n_basic_blocks) argument 397 #define n_edges_for_function(FN) ((FN)->cfg->x_n_edges) argument 398 #define last_basic_block_for_function(FN) ((FN)->cfg->x_last_basic_block) argument 399 #define label_to_block_map_for_function(FN) ((FN)->cfg->x_label_to_block_map) argument 421 #define FOR_EACH_BB_FN(BB, FN) \ argument 422 FOR_BB_BETWEEN (BB, (FN)->cfg->x_entry_block_ptr->next_bb, (FN)->cfg->x_exit_block_ptr, next_bb) 427 FOR_BB_BETWEEN (BB, (FN)->cfg->x_exit_block_ptr->prev_bb, (FN)->cfg->x_entry_block_ptr, prev_bb) [all …]
|
| H A D | fix-header.c | 450 #define REQUIRED(FN) ((FN)->partial == &required_dummy_proto) argument 451 #define SET_REQUIRED(FN) ((FN)->partial = &required_dummy_proto) argument 452 #define SET_SEEN(FN) ((FN)->partial = &seen_dummy_proto) argument 453 #define SEEN(FN) ((FN)->partial == &seen_dummy_proto) argument
|
| H A D | tree.h | 250 ((FN) == BUILT_IN_EXP10 || (FN) == BUILT_IN_EXP10F || (FN) == BUILT_IN_EXP10L \ 251 || (FN) == BUILT_IN_POW10 || (FN) == BUILT_IN_POW10F || (FN) == BUILT_IN_POW10L) 253 #define BUILTIN_EXPONENT_P(FN) (BUILTIN_EXP10_P (FN) \ argument 254 || (FN) == BUILT_IN_EXP || (FN) == BUILT_IN_EXPF || (FN) == BUILT_IN_EXPL \ 255 || (FN) == BUILT_IN_EXP2 || (FN) == BUILT_IN_EXP2F || (FN) == BUILT_IN_EXP2L) 257 #define BUILTIN_SQRT_P(FN) \ argument 258 ((FN) == BUILT_IN_SQRT || (FN) == BUILT_IN_SQRTF || (FN) == BUILT_IN_SQRTL) 261 ((FN) == BUILT_IN_CBRT || (FN) == BUILT_IN_CBRTF || (FN) == BUILT_IN_CBRTL) 263 #define BUILTIN_ROOT_P(FN) (BUILTIN_SQRT_P (FN) || BUILTIN_CBRT_P (FN)) argument 265 #define CASE_FLT_FN(FN) case FN: case FN##F: case FN##L argument [all …]
|
| H A D | convert.c | 192 #define CASE_MATHFN(FN) case BUILT_IN_##FN: case BUILT_IN_##FN##L: in convert_to_real() argument
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/ |
| H A D | UninitializedObject.h | 172 template <class FieldNodeT> FieldChainInfo add(const FieldNodeT &FN); 176 template <class FieldNodeT> FieldChainInfo replaceHead(const FieldNodeT &FN); 330 inline FieldChainInfo FieldChainInfo::add(const FieldNodeT &FN) { in add() argument 331 assert(!contains(FN.getRegion()) && in add() 336 NewChain.Chain = ChainFactory.add(FN, Chain); in add() 341 inline FieldChainInfo FieldChainInfo::replaceHead(const FieldNodeT &FN) { in replaceHead() argument 343 return NewChain.add(FN); in replaceHead()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-xray/ |
| H A D | xray-stacks.cpp | 452 FuncIdConversionHelper &FN) { in printStack() argument 465 auto FuncId = FN.SymbolOrNumber(F->FuncId); in printStack() 474 auto LeafFuncId = FN.SymbolOrNumber(Leaf->FuncId); in printStack() 486 print(OS, FN, iter.second); in printPerThread() 520 print(OS, FN, RootValues); in printIgnoringThreads() 553 printAll<AggType>(OS, FN, MergedByThreadRoots, in printAllAggregatingThreads() 561 print(OS, FN, MergedByThreadRoots); in printAggregatingThreads() 566 void printAll(raw_ostream &OS, FuncIdConversionHelper &FN, in printAll() argument 603 void print(raw_ostream &OS, FuncIdConversionHelper &FN, in print() argument 666 printStack(OS, P.first, FN); in print() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | raw_ostream.cpp | 361 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) { in operator <<() argument 362 if (FN.Hex) { in operator <<() 364 if (FN.Upper && FN.HexPrefix) in operator <<() 366 else if (FN.Upper && !FN.HexPrefix) in operator <<() 368 else if (!FN.Upper && FN.HexPrefix) in operator <<() 372 llvm::write_hex(*this, FN.HexValue, Style, FN.Width); in operator <<() 376 llvm::write_integer(Stream, FN.DecValue, 0, IntegerStyle::Integer); in operator <<() 377 if (Buffer.size() < FN.Width) in operator <<() 378 indent(FN.Width - Buffer.size()); in operator <<()
|
| H A D | SourceMgr.cpp | 265 SMDiagnostic::SMDiagnostic(const SourceMgr &sm, SMLoc L, StringRef FN, in SMDiagnostic() argument 270 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Kind(Kind), in SMDiagnostic()
|
| /freebsd-12.1/contrib/compiler-rt/lib/hwasan/ |
| H A D | hwasan_interceptors.cc | 193 #define INTERCEPTOR_ALIAS(RET, FN, ARGS...) \ argument 194 extern "C" SANITIZER_INTERFACE_ATTRIBUTE RET WRAP(FN)(ARGS) \ 195 ALIAS("__sanitizer_" #FN); \ 196 extern "C" SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE RET FN( \ 197 ARGS) ALIAS("__sanitizer_" #FN)
|
| /freebsd-12.1/contrib/gcc/config/i386/ |
| H A D | sol2.h | 102 #define ASM_OUTPUT_CALL(FILE, FN) \ argument 106 print_operand (FILE, XEXP (DECL_RTL (FN), 0), 'P'); \
|
| /freebsd-12.1/contrib/netbsd-tests/fs/vfs/ |
| H A D | t_vnops.c | 124 #define FIELD(FN) \ in lookup_complex() argument 125 printf(#FN "\t%lld\t%lld\n", \ in lookup_complex() 126 (long long)sb1.FN, (long long)sb2.FN) in lookup_complex() 127 #define TIME(FN) \ in lookup_complex() argument 128 printf(#FN "\t%lld.%ld\t%lld.%ld\n", \ in lookup_complex() 129 (long long)sb1.FN.tv_sec, sb1.FN.tv_nsec, \ in lookup_complex() 130 (long long)sb2.FN.tv_sec, sb2.FN.tv_nsec) in lookup_complex()
|
| /freebsd-12.1/contrib/gcc/config/sparc/ |
| H A D | sol2.h | 166 #define ASM_OUTPUT_CALL(FILE, FN) \ argument 170 print_operand (FILE, XEXP (DECL_RTL (FN), 0), 0); \
|
| /freebsd-12.1/contrib/netbsd-tests/bin/sh/ |
| H A D | t_option.sh | 558 FN="test-funcs.$$" 559 opt_test_setup "${FN}" || atf_skip "Cannot setup test environment" 561 ${TEST_SH} -ec ". './${FN}'; local_opt_check" 2>/dev/null || 565 ${TEST_SH} -ec ". './${FN}'; local_test"
|
| /freebsd-12.1/contrib/llvm/tools/llvm-link/ |
| H A D | llvm-link.cpp | 118 const std::string &FN, in loadFile() argument 123 errs() << "Loading '" << FN << "'\n"; in loadFile() 126 Result = parseIRFile(FN, Err, Context); in loadFile() 128 Result = getLazyIRFileModule(FN, Err, Context, !MaterializeMetadata); in loadFile()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/IPO/ |
| H A D | MergeFunctions.cpp | 289 void replaceFunctionInTree(const FunctionNode &FN, Function *G); 861 void MergeFunctions::replaceFunctionInTree(const FunctionNode &FN, in replaceFunctionInTree() argument 863 Function *F = FN.getFunc(); in replaceFunctionInTree() 872 assert(&(*IterToFNInFnTree) == &FN && "F should map to FN in FNodesInTree."); in replaceFunctionInTree() 877 FN.replaceBy(G); in replaceFunctionInTree()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | SourceLocation.h | 292 PresumedLoc(const char *FN, unsigned Ln, unsigned Co, SourceLocation IL) in PresumedLoc() argument 293 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {} in PresumedLoc()
|
| /freebsd-12.1/contrib/gcc/cp/ |
| H A D | mangle.c | 72 # define MANGLE_TRACE(FN, INPUT) \ argument 73 fprintf (stderr, " %-24s: %-24s\n", (FN), (INPUT)) 74 # define MANGLE_TRACE_TREE(FN, NODE) \ argument 76 (FN), tree_code_name[TREE_CODE (NODE)], (void *) (NODE)) 78 # define MANGLE_TRACE(FN, INPUT) argument 79 # define MANGLE_TRACE_TREE(FN, NODE) argument
|
| H A D | cp-tree.h | 1727 #define FOR_EACH_CLONE(CLONE, FN) \ argument 1728 if (TREE_CODE (FN) == FUNCTION_DECL \ 1729 && (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (FN) \ 1730 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (FN))) \ 1731 for (CLONE = TREE_CHAIN (FN); \ 1760 #define DECL_CONV_FN_TYPE(FN) \ argument 1761 (DECL_CONV_FN_P (FN) ? TREE_TYPE (DECL_NAME (FN)) : NULL_TREE)
|
| /freebsd-12.1/contrib/expat/ |
| H A D | Makefile.in | 91 for FN in $(APIHEADER) ; do $(INSTALL_DATA) $$FN $(DESTDIR)$(includedir) ; done
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | DiagnosticInfo.cpp | 413 StringRef FN = in mapping() local 421 io.mapRequired("Function", FN); in mapping()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | SourceMgr.h | 279 SMDiagnostic(const SourceMgr &sm, SMLoc L, StringRef FN,
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/ |
| H A D | PPMacroExpansion.cpp | 1522 SmallString<128> FN; in ExpandBuiltinMacro() local 1524 FN += PLoc.getFilename(); in ExpandBuiltinMacro() 1525 Lexer::Stringify(FN); in ExpandBuiltinMacro() 1526 OS << '"' << FN << '"'; in ExpandBuiltinMacro()
|
| /freebsd-12.1/sys/sys/ |
| H A D | mount.h | 786 #define VFS_EXTATTRCTL(MP, C, FN, NS, N) ({ \ argument 790 _rc = (*(MP)->mnt_op->vfs_extattrctl)(MP, C, FN, NS, N); \
|
| /freebsd-12.1/contrib/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 1182 FieldInit(Init *R, StringInit *FN) in FieldInit() argument 1183 : TypedInit(IK_FieldInit, R->getFieldType(FN)), Rec(R), FieldName(FN) { in FieldInit() 1195 static FieldInit *get(Init *R, StringInit *FN);
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64SchedExynosM4.td | 633 def : InstRW<[M4WriteFMAC3H], (instregex "^FN?MULHrr")>; 634 def : InstRW<[M4WriteFMAC3], (instregex "^FN?MUL[SD]rr")>; 638 M4ReadFMACM1], (instregex "^FN?M(ADD|SUB)Hrrr")>; 640 M4ReadFMACM1], (instregex "^FN?M(ADD|SUB)[SD]rrr")>;
|