InitSelfHostedCode only returns false for four resons: if (!rt->initializeAtoms(cx)) { if (!rt->createJitRuntime(cx)) { if (!rt->initSelfHosting(cx)) { if (!rt->parentRuntime && !rt->initMainAtomsTables(cx)) { Those all sound pretty generic. Which ones are going to depend on profile data?
Bug 1567902 Comment 4 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
InitSelfHostedCode only returns false for four reasons: ``` if (!rt->initializeAtoms(cx)) { ... if (!rt->createJitRuntime(cx)) { ... if (!rt->initSelfHosting(cx)) { ... if (!rt->parentRuntime && !rt->initMainAtomsTables(cx)) { ... ``` Those all sound pretty generic. Which ones are going to depend on profile data?