Lines Matching refs:i
29 for (int i = 0; i < count; i++) { in DumpRegLocTable() local
31 table[i].orig_sreg, storage_name[table[i].location], in DumpRegLocTable()
32 table[i].wide ? 'W' : 'N', table[i].defined ? 'D' : 'U', in DumpRegLocTable()
33 table[i].fp ? 'F' : table[i].ref ? 'R' :'C', in DumpRegLocTable()
34 table[i].is_const ? 'c' : 'n', in DumpRegLocTable()
35 table[i].high_word ? 'H' : 'L', table[i].home ? 'h' : 't', in DumpRegLocTable()
36 table[i].reg.GetRawBits(), in DumpRegLocTable()
37 table[i].s_reg_low); in DumpRegLocTable()
51 for (int i = 0; i < GetNumSSARegs(); i++) { in InitRegLocations() local
52 loc[i] = fresh_loc; in InitRegLocations()
53 loc[i].s_reg_low = i; in InitRegLocations()
54 loc[i].is_const = false; // Constants will be marked by constant propagation pass later. in InitRegLocations()
69 for (int i = 0; i < GetNumSSARegs(); i++) { in RemapRegLocations() local
70 int orig_sreg = reg_location_[i].s_reg_low; in RemapRegLocations()
71 reg_location_[i].orig_sreg = orig_sreg; in RemapRegLocations()
72 reg_location_[i].s_reg_low = SRegToVReg(orig_sreg); in RemapRegLocations()