HomeSort by relevance Sort by last modified time
    Searched refs:reg_location_ (Results 1 - 16 of 16) sorted by null

  /art/compiler/dex/
vreg_analysis.cc 60 reg_location_ = loc;
70 int orig_sreg = reg_location_[i].s_reg_low;
71 reg_location_[i].orig_sreg = orig_sreg;
72 reg_location_[i].s_reg_low = SRegToVReg(orig_sreg);
mir_optimization.cc 46 reg_location_[ssa_reg].is_const = true;
54 reg_location_[ssa_reg].is_const = true;
55 reg_location_[ssa_reg + 1].is_const = true;
319 CHECK(reg_location_ == nullptr);
393 if (reg_location_ != nullptr) {
394 reg_location_[ssa_reg_high] = temp_loc;
395 reg_location_[ssa_reg_high].high_word = true;
396 reg_location_[ssa_reg_high].s_reg_low = ssa_reg_low;
397 reg_location_[ssa_reg_high].wide = true;
405 if (reg_location_ != nullptr)
    [all...]
mir_graph.h 875 RegLocation res = reg_location_[mir->ssa_rep->uses[num]];
881 RegLocation res = reg_location_[mir->ssa_rep->defs[0]];
1269 RegLocation* reg_location_; \/\/ Map SSA names to location. member in class:art::MIRGraph
    [all...]
local_value_numbering_test.cc 188 cu_.mir_graph->reg_location_[sreg].wide = true;
189 cu_.mir_graph->reg_location_[sreg + 1].wide = true;
190 cu_.mir_graph->reg_location_[sreg + 1].high_word = true;
221 // By default, the zero-initialized reg_location_[.] with ref == false tells LVN that
224 cu_.mir_graph->reg_location_ = static_cast<RegLocation*>(cu_.arena.Alloc(
225 kMaxSsaRegs * sizeof(cu_.mir_graph->reg_location_[0]), kArenaAllocRegAlloc));
    [all...]
mir_graph.cc 84 : reg_location_(nullptr),
    [all...]
gvn_dead_code_elimination_test.cc 414 cu_.mir_graph->reg_location_[sreg].wide = true;
415 cu_.mir_graph->reg_location_[sreg + 1].wide = true;
416 cu_.mir_graph->reg_location_[sreg + 1].high_word = true;
480 // By default, the zero-initialized reg_location_[.] with ref == false tells LVN that
483 cu_.mir_graph->reg_location_ = static_cast<RegLocation*>(cu_.arena.Alloc(
484 kMaxSsaRegs * sizeof(cu_.mir_graph->reg_location_[0]), kArenaAllocRegAlloc));
    [all...]
global_value_numbering_test.cc 296 cu_.mir_graph->reg_location_[sreg].wide = true;
297 cu_.mir_graph->reg_location_[sreg + 1].wide = true;
298 cu_.mir_graph->reg_location_[sreg + 1].high_word = true;
371 // By default, the zero-initialized reg_location_[.] with ref == false tells LVN that
374 cu_.mir_graph->reg_location_ =
    [all...]
type_inference_test.cc 511 cu_.mir_graph->reg_location_ = static_cast<RegLocation*>(cu_.arena.Alloc(
512 kMaxSsaRegs * sizeof(cu_.mir_graph->reg_location_[0]), kArenaAllocRegAlloc));
514 cu_.mir_graph->reg_location_[cu_.mir_graph->GetMethodSReg()].location = kLocCompilerTemp;
551 RegLocation loc = cu_.mir_graph->reg_location_[s_reg];
    [all...]
type_inference.cc 560 RegLocation* loc = &mir_graph_->reg_location_[s_reg];
    [all...]
  /art/compiler/dex/quick/
codegen_util.cc     [all...]
ralloc_util.cc     [all...]
mir_to_lir.cc     [all...]
  /art/compiler/dex/quick/arm/
int_arm.cc 295 RegLocation rl_true = mir_graph_->reg_location_[mir->ssa_rep->uses[1]];
296 RegLocation rl_false = mir_graph_->reg_location_[mir->ssa_rep->uses[2]];
    [all...]
utility_arm.cc     [all...]
  /art/compiler/dex/quick/arm64/
int_arm64.cc 207 RegLocation rl_true = mir_graph_->reg_location_[mir->ssa_rep->uses[1]];
208 RegLocation rl_false = mir_graph_->reg_location_[mir->ssa_rep->uses[2]];
    [all...]
  /art/compiler/dex/quick/x86/
utility_x86.cc     [all...]

Completed in 260 milliseconds