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

1 2

  /art/compiler/dex/
compiler_ir.h 62 uint32_t disable_opt; // opt_control_vector flags. member in struct:art::CompilationUnit
post_opt_passes.cc 34 bool res = ((c_unit->disable_opt & (1 << kPromoteRegs)) == 0);
bb_optimizations.h 251 return ((cUnit->disable_opt & (1 << kSuppressExceptionEdges)) != 0);
270 return ((cUnit->disable_opt & (1 << kBBOpt)) == 0);
mir_optimization.cc 325 bool use_lvn = bb->use_lvn && (cu_->disable_opt & (1u << kGlobalValueNumbering)) != 0u;
349 if ((cu_->disable_opt & (1 << kBranchFusing)) != 0) {
566 bb = ((cu_->disable_opt & (1 << kSuppressExceptionEdges)) != 0) ? NextDominatedBlock(bb) : NULL;
714 if ((cu_->disable_opt & (1 << kNullCheckElimination)) == 0) {
737 bool do_nce = ((cu_->disable_opt & (1 << kNullCheckElimination)) == 0);
    [all...]
vreg_analysis.cc 366 ((cu_->disable_opt & (1 << kPromoteRegs)) == 0)) {
370 cu_->disable_opt |= (1 << kPromoteRegs);
frontend.cc 490 disable_opt(0),
673 cu.disable_opt = kCompilerOptimizerDisableFlags;
702 cu.disable_opt |= kDisabledOptimizationsPerISA[cu.instruction_set];
mir_dataflow.cc     [all...]
local_value_numbering.cc     [all...]
mir_graph.cc 548 (cu_->disable_opt & (1 << kSuppressExceptionEdges)) || is_throw || in_try_block;
    [all...]
  /art/compiler/
compiler.cc 156 cu.disable_opt |=
  /art/compiler/dex/quick/arm64/
call_arm64.cc 199 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
247 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
int_arm64.cc 355 if (!(cu_->disable_opt & (1 << kSafeOptimizations)) && r_dest == r_src) {
    [all...]
  /art/compiler/dex/quick/
local_optimizations.cc 510 if (!(cu_->disable_opt & (1 << kLoadStoreElimination))) {
513 if (!(cu_->disable_opt & (1 << kLoadHoisting))) {
ralloc_util.cc 713 if (IsTemp(rl.reg) && !(cu_->disable_opt & (1 << kSuppressLoads))) {
723 if (IsTemp(rs) && !(cu_->disable_opt & (1 << kSuppressLoads))) {
    [all...]
gen_common.cc 168 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
176 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
186 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
201 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
808 bool needs_null_check = !((cu_->disable_opt & (1 << kNullCheckElimination)) &&
    [all...]
gen_invoke.cc     [all...]
mir_to_lir.cc     [all...]
  /art/compiler/dex/quick/arm/
call_arm.cc 187 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
258 if ((opt_flags & MIR_IGNORE_NULL_CHECK) && !(cu_->disable_opt & (1 << kNullCheckElimination))) {
assemble_arm.cc     [all...]
utility_arm.cc     [all...]
int_arm.cc 422 if (!(cu_->disable_opt & (1 << kSafeOptimizations)) && r_dest == r_src) {
    [all...]
  /art/compiler/dex/quick/x86/
call_x86.cc 324 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
assemble_x86.cc     [all...]
  /art/compiler/dex/quick/mips/
utility_mips.cc 48 if (!(cu_->disable_opt & (1 << kSafeOptimizations)) && r_dest == r_src) {
int_mips.cc 175 if (!(cu_->disable_opt & (1 << kSafeOptimizations)) && r_dest == r_src) {

Completed in 382 milliseconds

1 2