| Summary: | Merge PropertyName into Identifier | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Yusuke Suzuki <ysuzuki> |
| Component: | JavaScriptCore | Assignee: | Yusuke Suzuki <ysuzuki> |
| Status: | RESOLVED WONTFIX | ||
| Severity: | Normal | CC: | barraclough, benjamin, darin, fpizlo, ggaren |
| Priority: | P2 | ||
| Version: | 528+ (Nightly build) | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
|
Description
Yusuke Suzuki
2015-03-20 14:50:06 PDT
Currently, some JIT code assumes the PropertyName's layout. It only holds StringImpl*. (Not RefPtr<StringImpl>). So in the meantime, we just use it. (In reply to comment #1) > Currently, some JIT code assumes the PropertyName's layout. It only holds > StringImpl*. (Not RefPtr<StringImpl>). > So in the meantime, we just use it. Right. It would be wrong to have the JITs use RefPtr<StringImpl>. One way to make this work would be to replace all JIT uses of PropertyName with just StringImpl*. |