Home
last modified time | relevance | path

Searched refs:high_word (Results 1 – 16 of 16) sorted by relevance

/art/compiler/dex/
Dreg_location.h51 unsigned high_word:1; // High word of pair? member
Dvreg_analysis.cc35 table[i].high_word ? 'H' : 'L', table[i].home ? 'h' : 't', in DumpRegLocTable()
Dlocal_value_numbering.h140 DCHECK(!gvn_->GetMirGraph()->GetRegLocation(s_reg).high_word); in SetOperandValueWide()
147 DCHECK(!gvn_->GetMirGraph()->GetRegLocation(s_reg).high_word); in GetOperandValueWide()
Dlocal_value_numbering.cc1159 if (raw_dest.high_word) { in HandlePhi()
1226 uint32_t high_word = High32Bits(value); in HandleConstWide() local
1228 uint16_t high_res = gvn_->LookupValue(op, Low16Bits(high_word), High16Bits(high_word), 2); in HandleConstWide()
Dmir_graph.h816 DCHECK(!loc.high_word); // Do not allow asking for the high partner. in ConstantValueWide()
Dlocal_value_numbering_test.cc190 cu_.mir_graph->reg_location_[sreg + 1].high_word = true; in MarkAsWideSRegs()
Dtype_inference.cc566 loc->high_word = type.HighWord(); in Finish()
Dgvn_dead_code_elimination.cc1045 if (raw_dest.high_word) { in RecordMIR()
Dmir_optimization.cc395 reg_location_[ssa_reg_high].high_word = true; in GetNewCompilerTemp()
Dmir_graph.cc1656 !reg_location_[ssa_reg].high_word) { in GetSSANameWithConst()
Dtype_inference_test.cc556 EXPECT_EQ((flags & kExpectHigh) != 0u, loc.high_word) << s_reg; in ExpectSRegType()
Dglobal_value_numbering_test.cc298 cu_.mir_graph->reg_location_[sreg + 1].high_word = true; in MarkAsWideSRegs()
Dgvn_dead_code_elimination_test.cc416 cu_.mir_graph->reg_location_[sreg + 1].high_word = true; in MarkAsWideSRegs()
/art/compiler/dex/quick/
Dcodegen_util.cc67 if (rl_src.high_word) { in IsInexpensiveConstant()
68 rl_src.high_word = false; in IsInexpensiveConstant()
Dgen_invoke.cc774 if ((stack_map_start < info->num_arg_words) && info->args[stack_map_start].high_word) { in GenDalvikArgs()
/art/compiler/dex/quick/x86/
Dtarget_x86.cc931 << (loc.high_word ? " h" : " ") in DumpRegLocation()