Home | History | Annotate | Download | only in quick

Lines Matching refs:table_offset

2044 void Mir2Lir::GenSmallPackedSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
2045 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
2087 void Mir2Lir::GenPackedSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
2088 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
2095 GenSmallPackedSwitch(mir, table_offset, rl_src);
2098 GenLargePackedSwitch(mir, table_offset, rl_src);
2102 void Mir2Lir::GenSmallSparseSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
2103 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
2117 void Mir2Lir::GenSparseSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
2118 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
2125 GenSmallSparseSwitch(mir, table_offset, rl_src);
2128 GenLargeSparseSwitch(mir, table_offset, rl_src);