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

  /external/webkit/Source/JavaScriptCore/heap/
ConservativeRoots.h 40 class ConservativeRoots {
42 ConservativeRoots(Heap*);
43 ~ConservativeRoots();
64 inline ConservativeRoots::ConservativeRoots(Heap* heap)
72 inline ConservativeRoots::~ConservativeRoots()
78 inline void ConservativeRoots::add(void* p)
89 inline size_t ConservativeRoots::size()
94 inline JSCell** ConservativeRoots::roots(
    [all...]
MachineStackMarker.h 35 class ConservativeRoots;
43 void gatherConservativeRoots(ConservativeRoots&, void* stackCurrent);
51 void gatherFromCurrentThread(ConservativeRoots&, void* stackCurrent);
59 void gatherFromOtherThread(ConservativeRoots&, Thread*);
ConservativeRoots.cpp 27 #include "ConservativeRoots.h"
36 void ConservativeRoots::grow()
47 void ConservativeRoots::add(void* begin, void* end)
MarkStack.cpp 29 #include "ConservativeRoots.h"
49 void MarkStack::append(ConservativeRoots& conservativeRoots)
51 JSCell** roots = conservativeRoots.roots();
52 size_t size = conservativeRoots.size();
MarkStack.h 39 class ConservativeRoots;
73 void append(ConservativeRoots&);
MachineStackMarker.cpp 25 #include "ConservativeRoots.h"
256 void MachineThreads::gatherFromCurrentThread(ConservativeRoots& conservativeRoots, void* stackCurrent)
272 conservativeRoots.add(registersBegin, registersEnd);
277 conservativeRoots.add(stackBegin, stackEnd);
441 void MachineThreads::gatherFromOtherThread(ConservativeRoots& conservativeRoots, Thread* thread)
448 conservativeRoots.add(static_cast<void*>(&regs), static_cast<void*>(reinterpret_cast<char*>(&regs) + regSize));
453 conservativeRoots.add(stackPointer, stackBase);
462 void MachineThreads::gatherConservativeRoots(ConservativeRoots& conservativeRoots, void* stackCurrent
    [all...]
Heap.cpp 25 #include "ConservativeRoots.h"
216 ConservativeRoots machineThreadRoots(this);
219 ConservativeRoots registerFileRoots(this);
  /external/webkit/Source/JavaScriptCore/interpreter/
RegisterFile.cpp 32 #include "ConservativeRoots.h"
55 void RegisterFile::gatherConservativeRoots(ConservativeRoots& conservativeRoots)
61 conservativeRoots.add(v.asCell());
RegisterFile.h 117 void gatherConservativeRoots(ConservativeRoots&);

Completed in 226 milliseconds