Home | History | Annotate | Download | only in dex

Lines Matching refs:table

335 void MIRGraph::DumpRegLocTable(RegLocation* table, int count) {
341 table[i].orig_sreg, storage_name[table[i].location],
342 table[i].wide ? 'W' : 'N', table[i].defined ? 'D' : 'U',
343 table[i].fp ? 'F' : table[i].ref ? 'R' :'C',
344 table[i].is_const ? 'c' : 'n',
345 table[i].high_word ? 'H' : 'L', table[i].home ? 'h' : 't',
346 cg->IsFpReg(table[i].low_reg) ? 's' : 'r',
347 table[i].low_reg & cg->FpRegMask(),
348 cg->IsFpReg(table[i].high_reg) ? 's' : 'r',
349 table[i].high_reg & cg->FpRegMask(), table[i].s_reg_low);
355 table[i].orig_sreg, storage_name[table[i].location],
356 table[i].wide ? 'W' : 'N', table[i].defined ? 'D' : 'U',
357 table[i].fp ? 'F' : table[i].ref ? 'R' :'C',
358 table[i].is_const ? 'c' : 'n',
359 table[i].high_word ? 'H' : 'L', table[i].home ? 'h' : 't',
360 table[i].s_reg_low);