Home
last modified time | relevance | path

Searched refs:inliner (Results 1 – 21 of 21) sorted by relevance

/external/proguard/src/proguard/preverify/
DSubroutineInliner.java57 ClassVisitor inliner = in execute() local
66 inliner = in execute()
68 inliner); in execute()
71 programClassPool.classesAccept(inliner); in execute()
/external/llvm/test/Transforms/Inline/
D2004-04-15-InlineDeletesCall.ll3 ; Inlining the first call caused the inliner function to delete the second
4 ; call. Then the inliner tries to inline the second call, which no longer
Dinline-invoke-with-asm-call.ll4 ; In inliner, we assume that inline asm does not throw. This testing case makes
5 ; sure that the inliner does not convert "call asm" to "invoke asm".
DPR4909.ll1 ; RUN: opt < %s -partial-inliner -disable-output
Dcrash.ll3 ; This test was failing because the inliner would inline @list_DeleteElement
7 ; another one. This crashed the inliner because the new call was not in the
Dinline_cleanup.ll1 ; Test that the inliner doesn't leave around dead allocas, and that it folds
63 ; No branches should survive the inliner's cleanup.
164 ; This previously crashed during inliner cleanup and folding inner return
Dalways-inline.ll19 ; The always inliner can't DCE internal functions. PR2945
30 ; The always inliner (unlike the normal one) should be willing to inline
D2010-05-12-ValueMap.ll3 ; This tests for a bug where the inliner kept the functions in a ValueMap after
Dnoinline-recursive-fn.ll1 ; The inliner should never inline recursive functions into other functions.
3 ; inliner heuristics are not set up for this.
Dlifetime.ll28 ;; Without this, the inliner will simplify out @test_no_marker before adding
Ddevirtualize.ll6 ; Simple devirt testcase, requires iteration between inliner and GVN.
Dinline_invoke.ll3 ; Test that the inliner correctly handles inlining into invoke sites
/external/chromium_org/v8/src/compiler/
Dpipeline.cc222 JSInliner inliner(info(), &jsgraph); in GenerateCode() local
223 inliner.Inline(); in GenerateCode()
Djs-inlining.cc30 explicit InlinerVisitor(JSInliner* inliner) : inliner_(inliner) {} in InlinerVisitor() argument
/external/llvm/test/Other/
Doptimization-remarks-inline.ll7 ; second one we ask for the inliner, but we then ask for the vectorizer
/external/chromium_org/v8/test/webkit/
Ddfg-inline-constant-expected.txt24 …inlining in the DFG JIT doesn't get confused by constants being reused between inliner and inlinee.
/external/llvm/docs/
DFAQ.rst414 code is perfectly well defined). If you run this through the inliner, you
415 get this (the explicit "or" is there so that the inliner doesn't dead code
437 with the wrong calling convention. We really don't want to make the inliner
440 if ``%X`` was an input argument to ``@test``, the inliner would produce this:
DExceptionHandling.rst301 catches exceptions of type ``B``. The inliner will update the ``landingpad``
DPasses.rst386 A custom inliner that handles only functions that are marked as "always
912 ``-partial-inliner``: Partial Inliner
DLangRef.rst305 function definition. Furthermore the inliner doesn't consider such function
377 doesn't prevent the inliner from inlining the function call.
1007 the inliner and other passes to reason about the semantics of the function
1094 This attribute indicates that the inliner should attempt to inline
1112 inliner.
1149 This attribute indicates that the inliner should never inline this
/external/clang/docs/
DUsersManual.rst538 done by compiler transformations. For instance, when the inliner
558 emit the associated diagnostic. For example, to get a report from the inliner,
568 Note that remarks from the inliner are identified with `[-Rpass=inline]`.
1126 frequently than another function ``bar`` helps the inliner.