| Index: vm/code_generator.cc
|
| ===================================================================
|
| --- vm/code_generator.cc (revision 9784)
|
| +++ vm/code_generator.cc (working copy)
|
| @@ -1251,6 +1251,12 @@
|
| }
|
|
|
| uword interrupt_bits = isolate->GetAndClearInterrupts();
|
| + if (interrupt_bits & Isolate::kStoreBufferInterrupt) {
|
| + if (FLAG_verbose_gc) {
|
| + OS::PrintErr("Scavenge scheduled by store buffer overflow.\n");
|
| + }
|
| + isolate->heap()->CollectGarbage(Heap::kNew);
|
| + }
|
| if (interrupt_bits & Isolate::kMessageInterrupt) {
|
| isolate->message_handler()->HandleOOBMessages();
|
| }
|
|
|