Home
last modified time | relevance | path

Searched refs:inHostFunction (Results 1 – 3 of 3) sorted by relevance

/external/webkit/JavaScriptCore/bytecode/
DSamplingTool.h225 … void* encodeSample(Instruction* vPC, bool inCTIFunction = false, bool inHostFunction = false)
228 …ptr_t>(vPC) | (static_cast<intptr_t>(inCTIFunction) << 1) | static_cast<intptr_t>(inHostFunction));
245 bool inHostFunction() { return m_sample & 0x1; } in inHostFunction() function
DSamplingTool.cpp187 if (!sample.inHostFunction()) { in doRun()
/external/webkit/JavaScriptCore/jit/
DJITInlineMethods.h243 ALWAYS_INLINE void JIT::sampleInstruction(Instruction* instruction, bool inHostFunction) in sampleInstruction() argument
246 storePtr(ImmPtr(m_interpreter->sampler()->encodeSample(instruction, inHostFunction)), X86::ecx); in sampleInstruction()
249 ALWAYS_INLINE void JIT::sampleInstruction(Instruction* instruction, bool inHostFunction) in sampleInstruction() argument
251 …storePtr(ImmPtr(m_interpreter->sampler()->encodeSample(instruction, inHostFunction)), m_interprete… in sampleInstruction()