(instruction: &Instruction)
| 1302 | instruction_index, |
| 1303 | )?, |
| 1304 | I::Istore_3 => store_fixed( |
| 1305 | &mut state, |
| 1306 | 3, |
| 1307 | FrameValue::Integer, |
| 1308 | context, |
| 1309 | instruction_index, |
| 1310 | )?, |
| 1311 | I::Lstore_0 => store_fixed(&mut state, 0, FrameValue::Long, context, instruction_index)?, |
| 1312 | I::Lstore_1 => store_fixed(&mut state, 1, FrameValue::Long, context, instruction_index)?, |
| 1313 | I::Lstore_2 => store_fixed(&mut state, 2, FrameValue::Long, context, instruction_index)?, |
| 1314 | I::Lstore_3 => store_fixed(&mut state, 3, FrameValue::Long, context, instruction_index)?, |
| 1315 | I::Fstore_0 => store_fixed(&mut state, 0, FrameValue::Float, context, instruction_index)?, |
| 1316 | I::Fstore_1 => store_fixed(&mut state, 1, FrameValue::Float, context, instruction_index)?, |
| 1317 | I::Fstore_2 => store_fixed(&mut state, 2, FrameValue::Float, context, instruction_index)?, |
| 1318 | I::Fstore_3 => store_fixed(&mut state, 3, FrameValue::Float, context, instruction_index)?, |
| 1319 | I::Dstore_0 => store_fixed( |
| 1320 | &mut state, |
| 1321 | 0, |
| 1322 | FrameValue::Double, |
| 1323 | context, |
| 1324 | instruction_index, |
| 1325 | )?, |
| 1326 | I::Dstore_1 => store_fixed( |
| 1327 | &mut state, |
| 1328 | 1, |
| 1329 | FrameValue::Double, |
| 1330 | context, |
| 1331 | instruction_index, |
| 1332 | )?, |
| 1333 | I::Dstore_2 => store_fixed( |
| 1334 | &mut state, |
| 1335 | 2, |
| 1336 | FrameValue::Double, |
| 1337 | context, |
| 1338 | instruction_index, |
| 1339 | )?, |
| 1340 | I::Dstore_3 => store_fixed( |
| 1341 | &mut state, |
| 1342 | 3, |
| 1343 | FrameValue::Double, |
| 1344 | context, |
| 1345 | instruction_index, |
no outgoing calls
no test coverage detected