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

  /external/webkit/JavaScriptCore/interpreter/
Register.h 75 Instruction* vPC() const;
95 Instruction* vPC;
154 ALWAYS_INLINE Register& Register::operator=(Instruction* vPC)
156 u.vPC = vPC;
207 ALWAYS_INLINE Instruction* Register::vPC() const
209 return u.vPC;
  /external/webkit/JavaScriptCore/bytecode/
SamplingTool.h 217 void sample(CodeBlock* codeBlock, Instruction* vPC)
219 ASSERT(!(reinterpret_cast<intptr_t>(vPC) & 0x3));
221 m_sample = reinterpret_cast<intptr_t>(vPC);
227 void* encodeSample(Instruction* vPC, bool inCTIFunction = false, bool inHostFunction = false)
229 ASSERT(!(reinterpret_cast<intptr_t>(vPC) & 0x3));
230 return reinterpret_cast<void*>(reinterpret_cast<intptr_t>(vPC) | (static_cast<intptr_t>(inCTIFunction) << 1) | static_cast<intptr_t>(inHostFunction));
246 Instruction* vPC() { return reinterpret_cast<Instruction*>(m_sample & ~0x3); }

Completed in 932 milliseconds