Changeset 163259 in webkit for trunk/Source/JavaScriptCore/profiler
- Timestamp:
- Feb 1, 2014, 10:38:51 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/profiler/ProfilerBytecodeSequence.cpp
r161364 r163259 1 1 /* 2 * Copyright (C) 2012, 2013 Apple Inc. All rights reserved.2 * Copyright (C) 2012, 2013, 2014 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 49 49 } 50 50 51 StubInfoMap stubInfos; 52 codeBlock->getStubInfoMap(stubInfos); 53 51 54 for (unsigned bytecodeIndex = 0; bytecodeIndex < codeBlock->instructions().size();) { 52 55 out.reset(); 53 codeBlock->dumpBytecode(out, bytecodeIndex );56 codeBlock->dumpBytecode(out, bytecodeIndex, stubInfos); 54 57 m_sequence.append(Bytecode(bytecodeIndex, codeBlock->vm()->interpreter->getOpcodeID(codeBlock->instructions()[bytecodeIndex].u.opcode), out.toCString())); 55 58 bytecodeIndex += opcodeLength(
Note:
See TracChangeset
for help on using the changeset viewer.