[iOS] Crash on startup. #8128

Closed
opened 2024-05-09 19:40:30 +00:00 by vng · 0 comments
vng commented 2024-05-09 19:40:30 +00:00 (Migrated from github.com)

Crash dump:

Thread 22 Crashed:
0   libsystem_platform.dylib      	       0x1edce2af0 _platform_memmove + 144
1   Organic Maps                  	       0x100e7e7b0 0x100b88000 + 3106736
2   Organic Maps                  	       0x100eb64d0 0x100b88000 + 3335376
3   Organic Maps                  	       0x100eb5b50 0x100b88000 + 3332944
4   Organic Maps                  	       0x100eb593c 0x100b88000 + 3332412
5   Organic Maps                  	       0x100eb6214 0x100b88000 + 3334676
6   Organic Maps                  	       0x100f4b1f4 0x100b88000 + 3944948
7   Organic Maps                  	       0x100f3c100 0x100b88000 + 3883264
8   Organic Maps                  	       0x100e92700 0x100b88000 + 3188480
9   Organic Maps                  	       0x100f4fa98 0x100b88000 + 3963544
10  Organic Maps                  	       0x100e0b0f0 0x100b88000 + 2633968
11  libsystem_pthread.dylib       	       0x1edd99a90 _pthread_start + 136
12  libsystem_pthread.dylib       	       0x1edd98fcc thread_start + 8

I've decoded it with https://github.com/organicmaps/organicmaps/actions/runs/8952369390

dp::VertexArrayBuffer::ApplyMutation(ref_ptr<dp::GraphicsContext>, ref_ptr<dp::IndexBufferMutator>, ref_ptr<dp::AttributeBufferMutator>) (in Organic Maps) (vertex_array_buffer.cpp:398)
std::__1::__function::__func<gui::ShapeRenderer::Render(ref_ptr<dp::GraphicsContext>, ref_ptr<gpu::ProgramManager>, ScreenBase const&)::$_2, std::__1::allocator<gui::ShapeRenderer::Render(ref_ptr<dp::GraphicsContext>, ref_ptr<gpu::ProgramManager>, ScreenBase const&)::$_2>, void (gui::ShapeControl::ShapeInfo&)>::operator()(gui::ShapeControl::ShapeInfo&) (in Organic Maps) (function.h:364)
std::__1::__function::__func<gui::ShapeRenderer::ForEachShapeInfo(std::__1::function<void (gui::ShapeControl::ShapeInfo&)> const&)::$_3, std::__1::allocator<gui::ShapeRenderer::ForEachShapeInfo(std::__1::function<void (gui::ShapeControl::ShapeInfo&)> const&)::$_3>, void (gui::ShapeControl&)>::operator()(gui::ShapeControl&) (in Organic Maps) (function.h:364)
gui::ShapeRenderer::ForEachShapeControl(std::__1::function<void (gui::ShapeControl&)> const&) (in Organic Maps) (shape.cpp:149)
gui::ShapeRenderer::Render(ref_ptr<dp::GraphicsContext>, ref_ptr<gpu::ProgramManager>, ScreenBase const&) (in Organic Maps) (shape.cpp:99)
df::FrontendRenderer::RenderScene(ScreenBase const&, bool) (in Organic Maps) (frontend_renderer.cpp:1524)
df::FrontendRenderer::RenderFrame() (in Organic Maps) (frontend_renderer.cpp:1767)

I suspect, it is connected with drawing still not ready glyphs in GUI (diagnostic FPS was turned-on by user) at this point:
shape.cpp, line 120:

    if (info.m_handle->HasDynamicAttributes())
    {
      dp::AttributeBufferMutator mutator;
      ref_ptr<dp::AttributeBufferMutator> mutatorRef = make_ref(&mutator);
      info.m_handle->GetAttributeMutation(mutatorRef);
      info.m_buffer->ApplyMutation(context, nullptr, mutatorRef);
    }
Crash dump: ``` Thread 22 Crashed: 0 libsystem_platform.dylib 0x1edce2af0 _platform_memmove + 144 1 Organic Maps 0x100e7e7b0 0x100b88000 + 3106736 2 Organic Maps 0x100eb64d0 0x100b88000 + 3335376 3 Organic Maps 0x100eb5b50 0x100b88000 + 3332944 4 Organic Maps 0x100eb593c 0x100b88000 + 3332412 5 Organic Maps 0x100eb6214 0x100b88000 + 3334676 6 Organic Maps 0x100f4b1f4 0x100b88000 + 3944948 7 Organic Maps 0x100f3c100 0x100b88000 + 3883264 8 Organic Maps 0x100e92700 0x100b88000 + 3188480 9 Organic Maps 0x100f4fa98 0x100b88000 + 3963544 10 Organic Maps 0x100e0b0f0 0x100b88000 + 2633968 11 libsystem_pthread.dylib 0x1edd99a90 _pthread_start + 136 12 libsystem_pthread.dylib 0x1edd98fcc thread_start + 8 ``` I've decoded it with https://github.com/organicmaps/organicmaps/actions/runs/8952369390 ``` dp::VertexArrayBuffer::ApplyMutation(ref_ptr<dp::GraphicsContext>, ref_ptr<dp::IndexBufferMutator>, ref_ptr<dp::AttributeBufferMutator>) (in Organic Maps) (vertex_array_buffer.cpp:398) std::__1::__function::__func<gui::ShapeRenderer::Render(ref_ptr<dp::GraphicsContext>, ref_ptr<gpu::ProgramManager>, ScreenBase const&)::$_2, std::__1::allocator<gui::ShapeRenderer::Render(ref_ptr<dp::GraphicsContext>, ref_ptr<gpu::ProgramManager>, ScreenBase const&)::$_2>, void (gui::ShapeControl::ShapeInfo&)>::operator()(gui::ShapeControl::ShapeInfo&) (in Organic Maps) (function.h:364) std::__1::__function::__func<gui::ShapeRenderer::ForEachShapeInfo(std::__1::function<void (gui::ShapeControl::ShapeInfo&)> const&)::$_3, std::__1::allocator<gui::ShapeRenderer::ForEachShapeInfo(std::__1::function<void (gui::ShapeControl::ShapeInfo&)> const&)::$_3>, void (gui::ShapeControl&)>::operator()(gui::ShapeControl&) (in Organic Maps) (function.h:364) gui::ShapeRenderer::ForEachShapeControl(std::__1::function<void (gui::ShapeControl&)> const&) (in Organic Maps) (shape.cpp:149) gui::ShapeRenderer::Render(ref_ptr<dp::GraphicsContext>, ref_ptr<gpu::ProgramManager>, ScreenBase const&) (in Organic Maps) (shape.cpp:99) df::FrontendRenderer::RenderScene(ScreenBase const&, bool) (in Organic Maps) (frontend_renderer.cpp:1524) df::FrontendRenderer::RenderFrame() (in Organic Maps) (frontend_renderer.cpp:1767) ``` I suspect, it is connected with drawing _still not ready_ glyphs in GUI (diagnostic FPS was turned-on by user) at this point: shape.cpp, line 120: ``` if (info.m_handle->HasDynamicAttributes()) { dp::AttributeBufferMutator mutator; ref_ptr<dp::AttributeBufferMutator> mutatorRef = make_ref(&mutator); info.m_handle->GetAttributeMutation(mutatorRef); info.m_buffer->ApplyMutation(context, nullptr, mutatorRef); } ```
This repo is archived. You cannot comment on issues.
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No project
No assignees
1 participant
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#8128
No description provided.