HomeSort by relevance Sort by last modified time
    Searched refs:inHostFunction (Results 1 - 3 of 3) sorted by null

  /external/webkit/JavaScriptCore/bytecode/
SamplingTool.h 227 void* encodeSample(Instruction* vPC, bool inCTIFunction = false, bool inHostFunction = false)
230 return reinterpret_cast<void*>(reinterpret_cast<intptr_t>(vPC) | (static_cast<intptr_t>(inCTIFunction) << 1) | static_cast<intptr_t>(inHostFunction));
247 bool inHostFunction() { return m_sample & 0x1; }
SamplingTool.cpp 187 if (!sample.inHostFunction()) {
  /external/webkit/JavaScriptCore/jit/
JITInlineMethods.h 282 ALWAYS_INLINE void JIT::sampleInstruction(Instruction* instruction, bool inHostFunction)
285 storePtr(ImmPtr(m_interpreter->sampler()->encodeSample(instruction, inHostFunction)), X86Registers::ecx);
288 ALWAYS_INLINE void JIT::sampleInstruction(Instruction* instruction, bool inHostFunction)
290 storePtr(ImmPtr(m_interpreter->sampler()->encodeSample(instruction, inHostFunction)), m_interpreter->sampler()->sampleSlot());

Completed in 59 milliseconds