HomeSort by relevance Sort by last modified time
    Searched refs:optimizing (Results 1 - 25 of 32) sorted by null

1 2

  /art/compiler/
Android.mk 43 optimizing/block_builder.cc \
44 optimizing/bounds_check_elimination.cc \
45 optimizing/builder.cc \
46 optimizing/code_generator.cc \
47 optimizing/code_generator_utils.cc \
48 optimizing/constant_folding.cc \
49 optimizing/dead_code_elimination.cc \
50 optimizing/dex_cache_array_fixups_arm.cc \
51 optimizing/graph_checker.cc \
52 optimizing/graph_visualizer.cc
    [all...]
  /art/build/
Android.oat.mk 40 # $(1): compiler - default, optimizing, jit, interpreter or interpreter-access-checks.
59 ifeq ($(1),optimizing)
60 core_compile_options += --compiler-backend=Optimizing
62 core_infix := -optimizing
79 ifneq ($(filter-out default interpreter interp-ac jit optimizing,$(1)),)
81 $$(error found $(1) expected default, interpreter, interpreter-access-checks, jit or optimizing)
151 # $(1): compiler - default, optimizing, jit, interpreter or interpreter-access-checks.
166 $(eval $(call create-core-oat-host-rule-combination,optimizing,,,false))
171 $(eval $(call create-core-oat-host-rule-combination,optimizing,,,true))
179 $(eval $(call create-core-oat-host-rule-combination,optimizing,valgrind,32,false)
    [all...]
Android.gtest.mk 275 compiler/optimizing/bounds_check_elimination_test.cc \
276 compiler/optimizing/dominator_test.cc \
277 compiler/optimizing/find_loops_test.cc \
278 compiler/optimizing/graph_checker_test.cc \
279 compiler/optimizing/graph_test.cc \
280 compiler/optimizing/gvn_test.cc \
281 compiler/optimizing/induction_var_analysis_test.cc \
282 compiler/optimizing/induction_var_range_test.cc \
283 compiler/optimizing/licm_test.cc \
284 compiler/optimizing/live_interval_test.cc
    [all...]
  /art/
Android.mk 208 # All host tests that run solely with the optimizing compiler.
209 .PHONY: test-art-host-optimizing
210 test-art-host-optimizing: test-art-host-run-test-optimizing
233 .PHONY: test-art-host-optimizing$(ART_PHONY_TEST_HOST_SUFFIX)
234 test-art-host-optimizing$(ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-optimizing$(ART_PHONY_TEST_HOST_SUFFIX)
256 .PHONY: test-art-host-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX)
257 test-art-host-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX): test-art-host-run-test-optimizing$(2ND_ART_PHONY_TEST_HOST_SUFFIX
    [all...]
  /external/v8/test/mjsunit/
regress-sync-optimized-lists.js 35 // Flush the optimizing compiler's queue.
math-exp-precision.js 61 // Make sure optimizing the function does not alter the result.
unicode-test.js     [all...]
  /art/tools/ahat/
Android.mk 71 $(HOST_CORE_IMG_OUT_BASE)-optimizing-pic$(CORE_IMG_SUFFIX)
  /prebuilts/go/darwin-x86/test/chan/
select5.go 181 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
190 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
248 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
257 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
293 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
302 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
342 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
351 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
  /prebuilts/go/linux-x86/test/chan/
select5.go 181 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
190 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
248 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
257 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
293 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
302 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
342 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
351 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
  /art/test/
Android.run-test.mk 115 COMPILER_TYPES += optimizing
470 # Known broken tests for the mips32 optimizing compiler backend.
475 ifneq (,$(filter optimizing,$(COMPILER_TYPES)))
477 optimizing,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
485 # Known broken tests for the mips64 optimizing compiler backend.
489 ifneq (,$(filter optimizing,$(COMPILER_TYPES)))
491 optimizing,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES), \
499 # Tests that should fail when the optimizing compiler compiles them non-debuggable.
504 ifneq (,$(filter optimizing,$(COMPILER_TYPES)))
506 optimizing,$(RELOCATE_TYPES),$(TRACE_TYPES),$(GC_TYPES),$(JNI_TYPES),
    [all...]
  /external/proguard/src/proguard/
ClassSpecificationVisitorFactory.java 50 * @param optimizing a flag that specifies whether the visitors
59 boolean optimizing,
72 (optimizing && !keepClassSpecification.allowOptimization) ||
  /external/v8/test/mjsunit/regress/
regress-fundecl.js 30 // Test hoisting of function declarations in the optimizing
regress-1106.js 30 // Test for issue 1106, where the optimizing compiler broke when accessing
  /external/v8/test/webkit/
typeof-codegen-crash.js 25 "This test for a crash when optimizing expressions of the form 'typeof o == constant' where 'constant' is not a string."
dfg-integer-optimization.js 30 // optimizing the first to be an integer addition. The first one certainly is an integer addition,
dfg-inlining-reg-alloc.js 37 // enough to find some way of optimizing this code to be small enough to inline.
  /art/tools/dexfuzz/src/dexfuzz/fuzzers/
Fuzzer.java 125 Class<? extends Executor> optimizing, Class<? extends Executor> interpreter) {
138 optimizing.getConstructor(BaseListener.class, Device.class);
  /external/v8/test/mjsunit/es6/
block-let-crankshaft.js 339 // let bindings are handled by the optimizing compiler.
  /external/v8/test/mjsunit/harmony/
block-let-crankshaft-sloppy.js 338 // let bindings are handled by the optimizing compiler.
  /prebuilts/go/darwin-x86/src/runtime/
select.go 241 // optimizing (and needing to test).
  /prebuilts/go/linux-x86/src/runtime/
select.go 241 // optimizing (and needing to test).
  /external/libunwind/doc/
libunwind-dynamic.tex 56 are logically separate entities, optimizing code-generators will
  /external/v8/
Android.v8common.mk 245 src/optimizing-compile-dispatcher.cc \
  /external/bison/
configure     [all...]

Completed in 1262 milliseconds

1 2