Status Update
Comments
zh...@google.com <zh...@google.com>
zh...@google.com <zh...@google.com>
zh...@google.com <zh...@google.com> #2
Thank you for the report. We will try to fix this soon. In the meantime, could you please start the emulator from the console (see the commands below), open the camera app to crash it and attach the output, it might help to figure out what the problem is:
cd /Users/YOUR_USERNAME/Library/Android/sdk/emulator
./emulator -list-avds
./emulator -verbose -avd YOUR_AVD_FROM_PREVIOUS_STEP
if there is a crash report to send, please send it and attach the report id.
yb...@google.com <yb...@google.com> #3
We got a crash report (thanks JP): 872e3b20bc34905b. It says EXC_BAD_INSTRUCTION / 0x00000001
and the console also says "Illegal hardware instruction". I suspect the new MacOS brought a new hypervizor which causes this behavior. Haitao, could you please take a look?
zh...@google.com <zh...@google.com> #4
We have quite some crashes like this:
product_name="AndroidEmulator" AND crash.Reason="EXC_BAD_INSTRUCTION / 0x00000001" AND cpu.Architecture="arm64"
ap...@google.com <ap...@google.com> #5
The most of crashes happen here:
vVertical_Scale_ARGB_8888_Accelerate
vImageVerticalShear_ARGB8888
vImageVerticalShear_ARGB8888
vImageScale_ARGB8888
vRotateClockwise270Degree_ARGB8888_Accelerate2
vRotate_90_ARGB_8888_270Degree_Accelerate2
ap...@google.com <ap...@google.com> #6
I suspect EXC_BAD_INSTRUCTION
happens in vImageRotate90_ARGB8888
and vImageScale_ARGB8888
which are used by webcam on MacOS.
Description
After a few code refactors and bug fixes, DataStoreImpl no longer handles CorruptionException in reads after initialization is successful.
Specifically, is only used in , while calls which calls which simply caches a also calls
readDataOrHandleCorruption
InitDataStore
readState
readDataAndUpdateCache
attemptRead
ReadException
if any exception is thrown from the read;updateCollector
readDataAndUpdateCache
thus doesn't catchCorruptionException
.Create the bug to track the fix.