Home | History | Annotate | Download | only in src

Lines Matching refs:Relocatable

8132 void Relocatable::PostGarbageCollectionProcessing() {
8134 Relocatable* current = isolate->relocatable_top();
8143 int Relocatable::ArchiveSpacePerThread() {
8149 char* Relocatable::ArchiveState(Isolate* isolate, char* to) {
8150 *reinterpret_cast<Relocatable**>(to) = isolate->relocatable_top();
8157 char* Relocatable::RestoreState(Isolate* isolate, char* from) {
8158 isolate->set_relocatable_top(*reinterpret_cast<Relocatable**>(from));
8163 char* Relocatable::Iterate(ObjectVisitor* v, char* thread_storage) {
8164 Relocatable* top = *reinterpret_cast<Relocatable**>(thread_storage);
8170 void Relocatable::Iterate(ObjectVisitor* v) {
8176 void Relocatable::Iterate(ObjectVisitor* v, Relocatable* top) {
8177 Relocatable* current = top;
8186 : Relocatable(isolate),
8194 : Relocatable(isolate),