OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 1244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1255 size += info_->zone()->allocation_size() - info_zone_start_allocation_size_; | 1255 size += info_->zone()->allocation_size() - info_zone_start_allocation_size_; |
1256 int64_t ticks = OS::Ticks() - start_ticks_; | 1256 int64_t ticks = OS::Ticks() - start_ticks_; |
1257 isolate()->GetHStatistics()->SaveTiming(name_, ticks, size); | 1257 isolate()->GetHStatistics()->SaveTiming(name_, ticks, size); |
1258 } | 1258 } |
1259 } | 1259 } |
1260 | 1260 |
1261 | 1261 |
1262 bool CompilationPhase::ShouldProduceTraceOutput() const { | 1262 bool CompilationPhase::ShouldProduceTraceOutput() const { |
1263 // Trace if the appropriate trace flag is set and the phase name's first | 1263 // Trace if the appropriate trace flag is set and the phase name's first |
1264 // character is in the FLAG_trace_phase command line parameter. | 1264 // character is in the FLAG_trace_phase command line parameter. |
| 1265 AllowHandleDereference allow_deref; |
1265 bool tracing_on = info()->IsStub() | 1266 bool tracing_on = info()->IsStub() |
1266 ? FLAG_trace_hydrogen_stubs | 1267 ? FLAG_trace_hydrogen_stubs |
1267 : (FLAG_trace_hydrogen && | 1268 : (FLAG_trace_hydrogen && |
1268 info()->closure()->PassesFilter(FLAG_trace_hydrogen_filter)); | 1269 info()->closure()->PassesFilter(FLAG_trace_hydrogen_filter)); |
1269 return (tracing_on && | 1270 return (tracing_on && |
1270 OS::StrChr(const_cast<char*>(FLAG_trace_phase), name_[0]) != NULL); | 1271 OS::StrChr(const_cast<char*>(FLAG_trace_phase), name_[0]) != NULL); |
1271 } | 1272 } |
1272 | 1273 |
1273 } } // namespace v8::internal | 1274 } } // namespace v8::internal |
OLD | NEW |