Changeset 90423 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Jul 5, 2011, 5:56:49 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
r89954 r90423 103 103 } 104 104 105 CodeLocation NearCall callReturnLocation;105 CodeLocationLabel callReturnLocation; // it's a near call in the old JIT, or a normal call in DFG 106 106 CodeLocationDataLabelPtr hotPathBegin; 107 107 CodeLocationNearCall hotPathOther; … … 379 379 bool hasGlobalResolveInfoAtBytecodeOffset(unsigned bytecodeOffset); 380 380 381 void setNumberOfCallLinkInfos(size_t size) { m_callLinkInfos.grow(size); } 381 382 size_t numberOfCallLinkInfos() const { return m_callLinkInfos.size(); } 382 void addCallLinkInfo() { m_callLinkInfos.append(CallLinkInfo()); }383 383 CallLinkInfo& callLinkInfo(int index) { return m_callLinkInfos[index]; } 384 384
Note:
See TracChangeset
for help on using the changeset viewer.