Home
last modified time | relevance | path

Searched refs:stackBase (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
DStackBounds.cpp91 void* stackBase = 0; in initialize() local
105 stackBase = reinterpret_cast<void*>(threadInfo.stkbase); in initialize()
107 ASSERT(stackBase); in initialize()
109 m_bound = stackBase; in initialize()
110 m_origin = static_cast<char*>(stackBase) + stackSize; in initialize()
159 void* stackBase = 0; in initialize() local
172 int rc = pthread_attr_getstack(&sattr, &stackBase, &stackSize); in initialize()
174 ASSERT(stackBase); in initialize()
176 m_bound = stackBase; in initialize()
177 m_origin = static_cast<char*>(stackBase) + stackSize; in initialize()
/external/webkit/Source/JavaScriptCore/heap/
DMachineStackMarker.cpp128 , stackBase(base) in Thread()
147 void* stackBase; member in JSC::MachineThreads::Thread
421 void* stackBase = 0; in otherThreadStackPointer()
423 int rc = pthread_attr_getstack(&regs, &stackBase, &stackSize); in otherThreadStackPointer()
425 ASSERT(stackBase); in otherThreadStackPointer()
426 return static_cast<char*>(stackBase) + stackSize; in otherThreadStackPointer()
451 void* stackBase = thread->stackBase; in gatherFromOtherThread() local
452 swapIfBackwards(stackPointer, stackBase); in gatherFromOtherThread()
453 conservativeRoots.add(stackPointer, stackBase); in gatherFromOtherThread()