Searched refs:reg_location_ (Results 1 - 8 of 8) sorted by relevance

/art/compiler/dex/
H A Dvreg_analysis.cc24 if (is_fp && !reg_location_[index].fp) {
25 reg_location_[index].fp = true;
26 reg_location_[index].defined = true;
34 if (is_core && !reg_location_[index].defined) {
35 reg_location_[index].core = true;
36 reg_location_[index].defined = true;
44 if (is_ref && !reg_location_[index].defined) {
45 reg_location_[index].ref = true;
46 reg_location_[index].defined = true;
54 if (is_wide && !reg_location_[inde
[all...]
H A Dmir_graph.h501 RegLocation res = reg_location_[mir->ssa_rep->uses[num]];
507 RegLocation res = reg_location_[mir->ssa_rep->defs[0]];
549 return reg_location_[index];
553 return reg_location_[method_sreg_];
608 RegLocation* reg_location_; // Map SSA names to location. member in class:art::MIRGraph
H A Dmir_graph.cc75 : reg_location_(NULL),
966 if (!show_singles && (reg_location_ != NULL) && reg_location_[i].wide) {
1029 if (reg_location_ == NULL) {
1033 if (IsConst(reg_location_[ssa_reg])) {
1034 if (!singles_only && reg_location_[ssa_reg].wide) {
1036 ConstantValueWide(reg_location_[ssa_reg]));
1039 ConstantValue(reg_location_[ssa_reg]));
/art/compiler/dex/quick/
H A Dgen_loadstore.cc51 if (mir_graph_->SRegToVReg(mir_graph_->reg_location_[i].s_reg_low) == base_vreg) {
52 used_as_reference |= mir_graph_->reg_location_[i].ref;
H A Dralloc_util.cc917 RegLocation loc = mir_graph_->reg_location_[i];
1045 RegLocation *curr = &mir_graph_->reg_location_[i];
1139 mir_graph_->DumpRegLocTable(mir_graph_->reg_location_, mir_graph_->GetNumSSARegs());
H A Dmir_to_lir.cc716 GenEntrySequence(&mir_graph_->reg_location_[start_vreg],
717 mir_graph_->reg_location_[mir_graph_->GetMethodSReg()]);
/art/compiler/dex/portable/
H A Dmir_to_gbc.cc1544 RegLocation rl_dest = mir_graph_->reg_location_[mir->ssa_rep->defs[0]];
1586 RegLocation rl_dest = mir_graph_->reg_location_[mir->ssa_rep->defs[0]];
1836 start_sreg += mir_graph_->reg_location_[start_sreg].wide ? 2 : 1;
1895 RegLocation rl_temp = mir_graph_->reg_location_[i];
1900 ::llvm::Constant* imm_value = mir_graph_->reg_location_[i].wide ?
1902 val = EmitConst(imm_value, mir_graph_->reg_location_[i]);
/art/compiler/dex/quick/arm/
H A Dint_arm.cc231 RegLocation rl_true = mir_graph_->reg_location_[mir->ssa_rep->uses[1]];
232 RegLocation rl_false = mir_graph_->reg_location_[mir->ssa_rep->uses[2]];

Completed in 6226 milliseconds