Lines Matching refs:table_offset
2011 void Mir2Lir::GenSmallPackedSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
2012 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
2054 void Mir2Lir::GenPackedSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
2055 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
2062 GenSmallPackedSwitch(mir, table_offset, rl_src);
2065 GenLargePackedSwitch(mir, table_offset, rl_src);
2069 void Mir2Lir::GenSmallSparseSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
2070 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
2084 void Mir2Lir::GenSparseSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
2085 const uint16_t* table = cu_->insns + current_dalvik_offset_ + table_offset;
2092 GenSmallSparseSwitch(mir, table_offset, rl_src);
2095 GenLargeSparseSwitch(mir, table_offset, rl_src);