Searched refs:m_profiledBytecodes (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10/JavaScriptCore-7600.1.17/profiler/
H A DProfilerCompilation.h56 unsigned profiledBytecodesSize() const { return m_profiledBytecodes.size(); }
57 const ProfiledBytecodes& profiledBytecodesAt(unsigned i) const { return m_profiledBytecodes[i]; }
83 Vector<ProfiledBytecodes> m_profiledBytecodes; member in class:JSC::Profiler::Compilation
H A DProfilerCompilation.cpp58 for (unsigned i = m_profiledBytecodes.size(); i--;) {
59 if (m_profiledBytecodes[i].bytecodes() == bytecodes)
63 m_profiledBytecodes.append(ProfiledBytecodes(bytecodes, profiledBlock));
104 for (unsigned i = 0; i < m_profiledBytecodes.size(); ++i)
105 profiledBytecodes->putDirectIndex(exec, i, m_profiledBytecodes[i].toJS(exec));

Completed in 111 milliseconds