HomeSort by relevance Sort by last modified time
    Searched full:inlined (Results 151 - 175 of 2113) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
InlineCost.h 46 /// "never" be inlined. Otherwise, the cost represents a unitless
48 /// being inlined.
120 /// inlined into any caller.
148 /// result assumes that the inlined version will always be used. You should
167 /// higher threshold to determine if the function call should be inlined.
176 /// has been inlined. If Callee is NULL it means a dead call has been
  /external/clang/test/Analysis/
NewDelete-custom.cpp 34 void *p = operator new[](0); // call is inlined, no warn
47 void *p = operator new(0); // call is inlined, no warn
  /external/elfutils/tests/
run-addr2line-i-lex-test.sh 61 foobar inlined at /tmp/x.cpp:12 in _Z3foov
65 foobar inlined at /tmp/x.cpp:12 in _Z3foov
  /external/libgsm/src/
table.c 9 /* Most of these tables are inlined at their point of use.
15 * (Most of them inlined, so watch out.)
  /external/llvm/test/Other/
optimization-remarks-inline.ll 35 ; CHECK: foo inlined into bar
36 ; REMARKS-NOT: foo inlined into bar
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
Inliner.cpp 34 STATISTIC(NumInlined, "Number of functions inlined");
35 STATISTIC(NumCallsDeleted, "Number of call sites deleted, not inlined");
73 /// available from other functions inlined into the caller. If we are able to
83 // inlined.
87 // If the inlined function had a higher stack protection level than the
95 // Look at all of the allocas that we inlined through this call site. If we
96 // have already inlined other allocas through other calls into this function,
118 // When processing our SCC, check to see if CS was inlined from some other
123 // Assume that C was not inlined into B initially, and so we're processing A
134 // a previously inlined alloca. If not, remember that we had it
    [all...]
  /external/v8/src/crankshaft/
lithium-codegen.cc 387 for (CompilationInfo::InlinedFunctionHolder& inlined :
389 if (!inlined.shared_info.is_identical_to(info()->shared_info())) {
390 int index = DefineDeoptimizationLiteral(inlined.shared_info);
391 inlined.RegisterInlinedFunctionId(index);
396 // Define deoptimization literals for all unoptimized code objects of inlined
398 for (const CompilationInfo::InlinedFunctionHolder& inlined :
400 if (!inlined.shared_info.is_identical_to(info()->shared_info())) {
401 DefineDeoptimizationLiteral(inlined.inlined_code_object_root);
  /external/v8/src/ic/ia32/
ic-ia32.cc 41 // was inlined.
53 // was inlined.
  /external/v8/src/ic/x64/
ic-x64.cc 42 // was inlined.
54 // was inlined.
  /external/v8/src/ic/x87/
ic-x87.cc 41 // was inlined.
53 // was inlined.
  /external/clang/docs/analyzer/
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 b
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 40 STATISTIC(NumInlined, "Number of functions inlined");
41 STATISTIC(NumCallsDeleted, "Number of call sites deleted, not inlined");
75 /// available from other functions inlined into the caller. If we are able to
93 // inlined.
99 // Look at all of the allocas that we inlined through this call site. If we
100 // have already inlined other allocas through other calls into this function,
122 // When processing our SCC, check to see if CS was inlined from some other
127 // Assume that C was not inlined into B initially, and so we're processing A
138 // a previously inlined alloca. If not, remember that we had it.
155 // multiple different allocas that we just inlined, we use the 'UsedAllocas
    [all...]
  /art/compiler/optimizing/
inliner.cc 129 // doing some logic in the runtime to discover if a method could have been inlined.
146 // that this method is actually inlined;
159 // This avoids doing the inlining work again on the inlined blocks.
530 << " is not hit and not inlined";
552 << " is megamorphic and not inlined";
561 << " is missing types and not inlined";
759 << " from inline cache is not inlined because its class is not"
788 // We successfully inlined, now add a guard.
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 95 /// unwind edges introduced for calls within the inlined function.
423 // We only need to check for function calls: inlined invoke
433 // attached to the newly inlined @llvm.experimental_deoptimize
444 // be UB. Rewriting this call to an invoke which targets the inlined
502 /// If we inlined an invoke site, we need to convert calls
503 /// in the body of the inlined function into invokes.
505 /// II is the invoke instruction being inlined. FirstNewBlock is the first
506 /// block of the inlined code (the last block is the end of the function),
507 /// and InlineCodeInfo is information about the code that got inlined.
514 // The inlined code is currently at the end of the function, scan from th
    [all...]
  /art/test/476-clinit-inline-static-invoke/src/
Main.java 27 // if it is inlined.
  /art/test/505-simplifier-type-propagation/src/
Main.java 27 // The following call will be inlined, which will make
  /art/test/578-polymorphic-inlining/src/
Main.java 31 // incorrect graph, by setting the inlined blocks as catch blocks.
  /art/test/616-cha-interface-default/src-multidex/
Base.java 25 // Test default method that's not inlined.
  /bionic/libstdc++/include/
new 27 // These four are not replaceable, so should be inlined.
  /bionic/linker/
rt.cpp 31 * about linker activity. It can?t be inlined away, can't be hidden.
  /external/clang/lib/StaticAnalyzer/Core/
PrettyStackTraceLocationContext.h 25 /// #0 void inlined()
  /external/clang/test/CodeGen/
target-features-error-2.c 12 return _mm256_extract_epi32(a, 3); // expected-error {{always_inline function '_mm256_extract_epi32' requires target feature 'sse4.2', but would be inlined into function 'baz' that is compiled without support for 'sse4.2'}}
  /external/junit/src/main/java/junit/extensions/
ActiveTestSuite.java 45 // inlined due to limitation in VA/Java
  /external/libmojo/mojo/public/tools/bindings/generators/cpp_templates/
union_declaration.tmpl 16 bool inlined);
  /external/libunwind/tests/
Ltest-varargs.c 28 * reasonable. If the compiler inlined everything, then this check will also

Completed in 340 milliseconds

1 2 3 4 5 67 8 91011>>