Home | History | Annotate | Download | only in src

Lines Matching refs:Relocatable

6395 void Relocatable::PostGarbageCollectionProcessing() {
6397 Relocatable* current = isolate->relocatable_top();
6406 int Relocatable::ArchiveSpacePerThread() {
6412 char* Relocatable::ArchiveState(Isolate* isolate, char* to) {
6413 *reinterpret_cast<Relocatable**>(to) = isolate->relocatable_top();
6420 char* Relocatable::RestoreState(Isolate* isolate, char* from) {
6421 isolate->set_relocatable_top(*reinterpret_cast<Relocatable**>(from));
6426 char* Relocatable::Iterate(ObjectVisitor* v, char* thread_storage) {
6427 Relocatable* top = *reinterpret_cast<Relocatable**>(thread_storage);
6433 void Relocatable::Iterate(ObjectVisitor* v) {
6439 void Relocatable::Iterate(ObjectVisitor* v, Relocatable* top) {
6440 Relocatable* current = top;
6449 : Relocatable(isolate),
6457 : Relocatable(isolate),