HomeSort by relevance Sort by last modified time
    Searched defs:vPC (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/JavaScriptCore/interpreter/
Register.h 71 Instruction* vPC() const;
86 Instruction* vPC;
138 ALWAYS_INLINE Register& Register::operator=(Instruction* vPC)
140 u.vPC = vPC;
159 ALWAYS_INLINE Instruction* Register::vPC() const
161 return u.vPC;
  /external/webkit/Source/JavaScriptCore/bytecode/
SamplingTool.h 219 void sample(CodeBlock* codeBlock, Instruction* vPC)
221 ASSERT(!(reinterpret_cast<intptr_t>(vPC) & 0x3));
223 m_sample = reinterpret_cast<intptr_t>(vPC);
229 void* encodeSample(Instruction* vPC, bool inCTIFunction = false, bool inHostFunction = false)
231 ASSERT(!(reinterpret_cast<intptr_t>(vPC) & 0x3));
232 return reinterpret_cast<void*>(reinterpret_cast<intptr_t>(vPC) | (static_cast<intptr_t>(inCTIFunction) << 1) | static_cast<intptr_t>(inHostFunction));
248 Instruction* vPC() { return reinterpret_cast<Instruction*>(m_sample & ~0x3); }

Completed in 174 milliseconds