| Index: src/ia32/macro-assembler-ia32.cc
|
| diff --git a/src/ia32/macro-assembler-ia32.cc b/src/ia32/macro-assembler-ia32.cc
|
| index 395e8248522a22c824036e124941c54c509f7360..ac23eece480405ebe2e7dbac50bdbf5e085b5130 100644
|
| --- a/src/ia32/macro-assembler-ia32.cc
|
| +++ b/src/ia32/macro-assembler-ia32.cc
|
| @@ -508,10 +508,6 @@ void MacroAssembler::RecordWriteForMap(
|
| // Compute the address.
|
| lea(address, FieldOperand(object, HeapObject::kMapOffset));
|
|
|
| - // Count number of write barriers in generated code.
|
| - isolate()->counters()->write_barriers_static()->Increment();
|
| - IncrementCounter(isolate()->counters()->write_barriers_dynamic(), 1);
|
| -
|
| // A single check of the map's pages interesting flag suffices, since it is
|
| // only set during incremental collection, and then it's also guaranteed that
|
| // the from object's page's interesting flag is also set. This optimization
|
| @@ -529,6 +525,10 @@ void MacroAssembler::RecordWriteForMap(
|
|
|
| bind(&done);
|
|
|
| + // Count number of write barriers in generated code.
|
| + isolate()->counters()->write_barriers_static()->Increment();
|
| + IncrementCounter(isolate()->counters()->write_barriers_dynamic(), 1);
|
| +
|
| // Clobber clobbered input registers when running with the debug-code flag
|
| // turned on to provoke errors.
|
| if (emit_debug_code()) {
|
| @@ -565,10 +565,6 @@ void MacroAssembler::RecordWrite(
|
| bind(&ok);
|
| }
|
|
|
| - // Count number of write barriers in generated code.
|
| - isolate()->counters()->write_barriers_static()->Increment();
|
| - IncrementCounter(isolate()->counters()->write_barriers_dynamic(), 1);
|
| -
|
| // First, check if a write barrier is even needed. The tests below
|
| // catch stores of Smis and stores into young gen.
|
| Label done;
|
| @@ -599,6 +595,10 @@ void MacroAssembler::RecordWrite(
|
|
|
| bind(&done);
|
|
|
| + // Count number of write barriers in generated code.
|
| + isolate()->counters()->write_barriers_static()->Increment();
|
| + IncrementCounter(isolate()->counters()->write_barriers_dynamic(), 1);
|
| +
|
| // Clobber clobbered registers when running with the debug-code flag
|
| // turned on to provoke errors.
|
| if (emit_debug_code()) {
|
|
|