/external/elfutils/tests/ |
D | run-addr2line-i-test.sh | 115 foobar inlined at /tmp/x.cpp:15 in _Z3barv 119 fubar inlined at /tmp/x.cpp:20 in _Z3bazv 123 foobar inlined at /tmp/x.cpp:15 in _Z3foov 129 fubar inlined at /tmp/x.cpp:20 in _Z3foov 137 fubar inlined at /tmp/x.cpp:32 in _Z2fuv 141 foobar inlined at /tmp/x.cpp:33 in _Z2fuv 162 foobar inlined at /tmp/x.cpp:15 in _Z3barv 167 fubar inlined at /tmp/x.cpp:20 in _Z3bazv 172 foobar inlined at /tmp/x.cpp:15 in _Z3foov 179 fubar inlined at /tmp/x.cpp:20 in _Z3foov [all …]
|
D | run-addr2line-alt-debugpath.sh | 43 (inlined by) bar at /tmp/x.cpp:15 45 (inlined by) baz at /tmp/x.cpp:20 47 (inlined by) bar at /tmp/x.cpp:15 48 (inlined by) _Z3foov at /tmp/x.cpp:25 50 (inlined by) baz at /tmp/x.cpp:20 51 (inlined by) _Z3foov at /tmp/x.cpp:26 54 (inlined by) _Z2fuv at /tmp/x.cpp:32 56 (inlined by) _Z2fuv at /tmp/x.cpp:33
|
D | run-addr2line-i-demangle-test.sh | 38 foobar inlined at /tmp/x.cpp:15 in bar() 42 fubar inlined at /tmp/x.cpp:20 in baz() 46 foobar inlined at /tmp/x.cpp:15 in foo() 52 fubar inlined at /tmp/x.cpp:20 in foo() 60 fubar inlined at /tmp/x.cpp:32 in fu() 64 foobar inlined at /tmp/x.cpp:33 in fu()
|
/external/mesa3d/src/compiler/nir/ |
D | nir_inline_functions.c | 28 static bool inline_function_impl(nir_function_impl *impl, struct set *inlined); 149 struct set *inlined) in inline_functions_block() argument 168 inline_function_impl(call->callee->impl, inlined); in inline_functions_block() 244 inline_function_impl(nir_function_impl *impl, struct set *inlined) in inline_function_impl() argument 246 if (_mesa_set_search(inlined, impl)) in inline_function_impl() 254 progress |= inline_functions_block(block, &b, inlined); in inline_function_impl() 265 _mesa_set_add(inlined, impl); in inline_function_impl() 273 struct set *inlined = _mesa_set_create(NULL, _mesa_hash_pointer, in nir_inline_functions() local 279 progress = inline_function_impl(function->impl, inlined) || progress; in nir_inline_functions() 282 _mesa_set_destroy(inlined, NULL); in nir_inline_functions()
|
/external/elfutils/libdw/ |
D | dwarf_getscopes.c | 43 unsigned int inlined, nscopes; member 77 a->inlined = depth; in pc_match() 130 a->nscopes = depth + 1 - a->inlined; in pc_record() 144 if (a->inlined == 0) in pc_record() 152 Dwarf_Die *const inlinedie = &a->scopes[depth - a->inlined]; in pc_record() 169 assert (a->inlined); in pc_record() 170 if (depth >= a->inlined) in pc_record()
|
/external/llvm/test/tools/llvm-profdata/ |
D | overflow-sample.test | 12 SHOW_OVERFLOW-NEXT: No inlined callsites in this function 17 SHOW_OVERFLOW-NEXT: No inlined callsites in this function 22 SHOW_OVERFLOW-NEXT: No inlined callsites in this function 33 SHOW_NO_OVERFLOW-NEXT: No inlined callsites in this function 38 SHOW_NO_OVERFLOW-NEXT: No inlined callsites in this function 43 SHOW_NO_OVERFLOW-NEXT: No inlined callsites in this function
|
D | inline-samples.test | 8 inlined callees. 11 SHOW1: 2.3: inlined callee: _Z3fool: 246044, 0, 3 sampled lines 12 SHOW1: 1.3: inlined callee: _Z3bari: 0, 0, 2 sampled lines 13 SHOW1: 1.7: inlined callee: _Z3bari: 99492, 0, 2 sampled lines 15 SHOW1: 1.8: inlined callee: _Z3bari: 0, 0, 2 sampled lines
|
D | gcc-gcov-sample-profile.test | 9 inlined callees. 12 SHOW1: 2.3: inlined callee: _Z3fool: 243786, 0, 3 sampled lines 13 SHOW1: 1.3: inlined callee: _Z3bari: 0, 0, 2 sampled lines 14 SHOW1: 1.7: inlined callee: _Z3bari: 98558, 0, 2 sampled lines 15 SHOW1: 1.8: inlined callee: _Z3bari: 0, 0, 2 sampled lines
|
/external/v8/tools/clang/plugins/tests/ |
D | missing_ctor_dllexport.txt | 5 ./missing_ctor_dllexport.h:47:3: warning: [chromium-style] Complex constructor has an inlined body. 8 ./missing_ctor_dllexport.h:49:3: warning: [chromium-style] Complex constructor has an inlined body. 11 ./missing_ctor_dllexport.h:51:3: warning: [chromium-style] Complex constructor has an inlined body.
|
D | missing_ctor.txt | 6 ./missing_ctor.h:51:3: warning: [chromium-style] Complex constructor has an inlined body. 9 ./missing_ctor.h:53:3: warning: [chromium-style] Complex constructor has an inlined body.
|
D | inline_ctor.txt | 2 ./inline_ctor.h:13:3: warning: [chromium-style] Complex constructor has an inlined body. 8 ./inline_ctor.h:31:25: warning: [chromium-style] Complex constructor has an inlined body.
|
/external/clang/docs/analyzer/ |
D | DebugChecks.rst | 83 currently DISABLED in inlined functions, since different calls to the same 84 inlined function could provide different information, making it difficult to 98 If a call occurs within an inlined function, prints TRUE or FALSE according to 99 the value of its argument. If a call occurs outside an inlined function, 102 The intended use of this checker is to assert that a function is inlined at 104 function is never inlined (by passing 'false' and expecting no warning). The 107 You might wonder why we can't print TRUE if a function is ever inlined and 108 FALSE if it is not. The problem is that any inlined function could conceivably 116 int inlined() { 122 clang_analyzer_checkInlined(false); // no-warning (not inlined) [all …]
|
D | IPA.txt | 34 functions can inlined, in an all-or-nothing way. These options use the 41 This option controls which C++ member functions may be inlined. 46 inlined as well; it doesn't make sense to inline destructors without inlining 54 destructors will not be inlined. Additionally, no C++ member functions will be 55 inlined under -analyzer-config ipa=none or -analyzer-config ipa=basic-inlining, 60 This option controls whether C++ templated functions may be inlined. 126 Exiting an inlined function is a bit more work, fortunately broken up into 129 1. The CoreEngine realizes we're at the end of an inlined call and generates a 153 analyzing a path due to exceeding the maximum block count inside an inlined 184 - In C++, constructors are not inlined unless the destructor call will be [all …]
|
/external/swiftshader/third_party/LLVM/test/Transforms/Inline/ |
D | 2010-05-31-ByvalTailcall.ll | 5 ; be used by inlined calls, so any inlined calls need to have their 'tail' flags 7 ; (inlined) call to 'ext' in 'foo' was being passed an uninitialized value.
|
D | alloca_test.ll | 1 ; This test ensures that alloca instructions in the entry block for an inlined 2 ; function are moved to the top of the function they are inlined into.
|
D | delete-call.ll | 1 ; RUN: opt %s -S -inline -functionattrs -stats |& grep {Number of call sites deleted, not inlined} 2 ; RUN: opt %s -S -inline -stats |& grep {Number of functions inlined}
|
/external/clang/test/Analysis/ |
D | crash-trace.c | 10 void inlined() { in inlined() function 15 inlined(); in test()
|
/external/curl/tests/ |
D | valgrind.supp | 44 libidn-idna_to_ascii-error-inlined-functions 60 libidn-idna_to_ascii-error-inlined-functions-alt 76 libidn-idna_to_ascii-error-inlined-functions-alt2
|
/external/compiler-rt/test/asan/TestCases/ |
D | use-after-scope-inlined.cc | 11 void inlined(int arg) { in inlined() function 18 inlined(argc); in main()
|
/external/valgrind/memcheck/tests/ |
D | inlinfo.vgtest | 1 # test that the inlined function calls are properly shown in errors. 2 # Also test the generation of suppression entries with inlined calls.
|
/external/v8/src/crankshaft/ |
D | lithium-codegen.cc | 387 for (CompilationInfo::InlinedFunctionHolder& inlined : in PopulateDeoptimizationLiteralsWithInlinedFunctions() 389 if (!inlined.shared_info.is_identical_to(info()->shared_info())) { in PopulateDeoptimizationLiteralsWithInlinedFunctions() 390 int index = DefineDeoptimizationLiteral(inlined.shared_info); in PopulateDeoptimizationLiteralsWithInlinedFunctions() 391 inlined.RegisterInlinedFunctionId(index); in PopulateDeoptimizationLiteralsWithInlinedFunctions() 398 for (const CompilationInfo::InlinedFunctionHolder& inlined : in PopulateDeoptimizationLiteralsWithInlinedFunctions() local 400 if (!inlined.shared_info.is_identical_to(info()->shared_info())) { in PopulateDeoptimizationLiteralsWithInlinedFunctions() 401 DefineDeoptimizationLiteral(inlined.inlined_code_object_root); in PopulateDeoptimizationLiteralsWithInlinedFunctions()
|
/external/libmojo/mojo/public/tools/bindings/generators/cpp_templates/ |
D | union_serialization_definition.tmpl | 9 bool inlined, 11 size_t size = inlined ? 0 : sizeof({{data_type}}); 43 bool inlined, 47 if (!inlined) 106 } else if (inlined) {
|
/external/llvm/test/Transforms/Inline/ |
D | optimization-remarks.ll | 3 ; CHECK: foo should always be inlined (cost=always) 4 ; CHECK: foo inlined into bar 5 ; CHECK: foz should never be inlined (cost=never) 6 ; CHECK: foz will not be inlined into bar
|
D | attributes.ll | 46 ; * noattr callee is inlined into noattr caller, 47 ; * sanitize_(address|memory|thread) callee is not inlined into noattr caller, 48 ; * alwaysinline callee is always inlined no matter what sanitize_* attributes are present. 85 ; * noattr callee is not inlined into sanitize_(address|memory|thread) caller, 86 ; * sanitize_(address|memory|thread) callee is inlined into the caller with the same attribute, 87 ; * alwaysinline callee is always inlined no matter what sanitize_* attributes are present. 133 ; Check that a function doesn't get inlined if target-cpu strings don't match 158 ; Check that a function doesn't get inlined if target-features strings don't 263 ; Check that no-jump-tables flag propagates from inlined callee to caller
|
D | invoke-combine-clauses.ll | 12 ; inlined function caused "catch i8* @exception_outer" to appear 50 ; inlined function caused "catch i8* @exception_outer" to appear 83 ; Check what happens if the inlined function contains an "invoke" but 84 ; no "resume". In this case, the inlined landingpad does not need to
|