Changeset 37831 in webkit for trunk/JavaScriptCore/VM/CodeGenerator.cpp
- Timestamp:
- Oct 23, 2008, 3:29:54 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeGenerator.cpp
r37812 r37831 966 966 967 967 if (globalObject) { 968 m_codeBlock-> structureIDInstructions.append(instructions().size());968 m_codeBlock->globalResolveInstructions.append(instructions().size()); 969 969 emitOpcode(op_resolve_global); 970 970 instructions().append(dst->index()); … … 1046 1046 RegisterID* CodeGenerator::emitGetById(RegisterID* dst, RegisterID* base, const Identifier& property) 1047 1047 { 1048 m_codeBlock-> structureIDInstructions.append(instructions().size());1048 m_codeBlock->propertyAccessInstructions.append(instructions().size()); 1049 1049 1050 1050 emitOpcode(op_get_by_id); … … 1061 1061 RegisterID* CodeGenerator::emitPutById(RegisterID* base, const Identifier& property, RegisterID* value) 1062 1062 { 1063 m_codeBlock-> structureIDInstructions.append(instructions().size());1063 m_codeBlock->propertyAccessInstructions.append(instructions().size()); 1064 1064 1065 1065 emitOpcode(op_put_by_id); … … 1220 1220 1221 1221 emitExpressionInfo(divot, startOffset, endOffset); 1222 m_codeBlock-> structureIDInstructions.append(instructions().size());1222 m_codeBlock->callLinkInfos.append(CallLinkInfo()); 1223 1223 emitOpcode(opcodeID); 1224 1224 instructions().append(dst->index()); … … 1284 1284 1285 1285 emitExpressionInfo(divot, startOffset, endOffset); 1286 m_codeBlock-> structureIDInstructions.append(instructions().size());1286 m_codeBlock->callLinkInfos.append(CallLinkInfo()); 1287 1287 emitOpcode(op_construct); 1288 1288 instructions().append(dst->index());
Note:
See TracChangeset
for help on using the changeset viewer.