Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Unified Diff: runtime/vm/source_report.cc

Issue 2481873005: clang-format runtime/vm (Closed)
Patch Set: Merge Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/source_report.h ('k') | runtime/vm/source_report_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/source_report.cc
diff --git a/runtime/vm/source_report.cc b/runtime/vm/source_report.cc
index 26f2cd2bf977d7185b487aa1bfd98cdc10528f48..390c0f5471074bbd899ecc3a1e06f2b3a6bbd8cc 100644
--- a/runtime/vm/source_report.cc
+++ b/runtime/vm/source_report.cc
@@ -26,8 +26,7 @@ SourceReport::SourceReport(intptr_t report_set, CompileMode compile_mode)
start_pos_(TokenPosition::kNoSource),
end_pos_(TokenPosition::kNoSource),
profile_(Isolate::Current()),
- next_script_index_(0) {
-}
+ next_script_index_(0) {}
SourceReport::~SourceReport() {
@@ -57,9 +56,8 @@ void SourceReport::Init(Thread* thread,
ClearScriptTable();
if (IsReportRequested(kProfile)) {
// Build the profile.
- SampleFilter samplesForIsolate(thread_->isolate(),
- Thread::kMutatorTask,
- -1, -1);
+ SampleFilter samplesForIsolate(thread_->isolate(), Thread::kMutatorTask, -1,
+ -1);
profile_.Build(thread, &samplesForIsolate, Profile::kNoTags);
}
}
@@ -95,8 +93,7 @@ bool SourceReport::ShouldSkipFunction(const Function& func) {
default:
return true;
}
- if (func.is_abstract() ||
- func.IsImplicitConstructor() ||
+ if (func.is_abstract() || func.IsImplicitConstructor() ||
func.IsRedirectingFactory()) {
return true;
}
@@ -166,10 +163,10 @@ void SourceReport::PrintCallSitesData(JSONObject* jsobj,
const TokenPosition end_pos = function.end_token_pos();
ZoneGrowableArray<const ICData*>* ic_data_array =
- new(zone()) ZoneGrowableArray<const ICData*>();
+ new (zone()) ZoneGrowableArray<const ICData*>();
function.RestoreICDataMap(ic_data_array, false /* clone ic-data */);
- const PcDescriptors& descriptors = PcDescriptors::Handle(
- zone(), code.pc_descriptors());
+ const PcDescriptors& descriptors =
+ PcDescriptors::Handle(zone(), code.pc_descriptors());
JSONArray sites(jsobj, "callSites");
@@ -178,7 +175,7 @@ void SourceReport::PrintCallSitesData(JSONObject* jsobj,
RawPcDescriptors::kIcCall | RawPcDescriptors::kUnoptStaticCall);
while (iter.MoveNext()) {
HANDLESCOPE(thread());
- // TODO(zra): Remove this bailout once DBC has reliable ICData.
+// TODO(zra): Remove this bailout once DBC has reliable ICData.
#if defined(TARGET_ARCH_DBC)
if (iter.DeoptId() >= ic_data_array->length()) {
continue;
@@ -206,10 +203,10 @@ void SourceReport::PrintCoverageData(JSONObject* jsobj,
const TokenPosition end_pos = function.end_token_pos();
ZoneGrowableArray<const ICData*>* ic_data_array =
- new(zone()) ZoneGrowableArray<const ICData*>();
+ new (zone()) ZoneGrowableArray<const ICData*>();
function.RestoreICDataMap(ic_data_array, false /* clone ic-data */);
- const PcDescriptors& descriptors = PcDescriptors::Handle(
- zone(), code.pc_descriptors());
+ const PcDescriptors& descriptors =
+ PcDescriptors::Handle(zone(), code.pc_descriptors());
const int kCoverageNone = 0;
const int kCoverageMiss = 1;
@@ -227,7 +224,7 @@ void SourceReport::PrintCoverageData(JSONObject* jsobj,
RawPcDescriptors::kIcCall | RawPcDescriptors::kUnoptStaticCall);
while (iter.MoveNext()) {
HANDLESCOPE(thread());
- // TODO(zra): Remove this bailout once DBC has reliable ICData.
+// TODO(zra): Remove this bailout once DBC has reliable ICData.
#if defined(TARGET_ARCH_DBC)
if (iter.DeoptId() >= ic_data_array->length()) {
continue;
@@ -279,14 +276,14 @@ void SourceReport::PrintCoverageData(JSONObject* jsobj,
void SourceReport::PrintPossibleBreakpointsData(JSONObject* jsobj,
const Function& func,
const Code& code) {
- const uint8_t kSafepointKind = (RawPcDescriptors::kIcCall |
- RawPcDescriptors::kUnoptStaticCall |
- RawPcDescriptors::kRuntimeCall);
+ const uint8_t kSafepointKind =
+ (RawPcDescriptors::kIcCall | RawPcDescriptors::kUnoptStaticCall |
+ RawPcDescriptors::kRuntimeCall);
const TokenPosition begin_pos = func.token_pos();
const TokenPosition end_pos = func.end_token_pos();
- const PcDescriptors& descriptors = PcDescriptors::Handle(
- zone(), code.pc_descriptors());
+ const PcDescriptors& descriptors =
+ PcDescriptors::Handle(zone(), code.pc_descriptors());
intptr_t func_length = (end_pos.Pos() - begin_pos.Pos()) + 1;
GrowableArray<char> possible(func_length);
@@ -416,8 +413,7 @@ void SourceReport::VisitFunction(JSONArray* jsarr, const Function& func) {
// We skip compiled async functions. Once an async function has
// been compiled, there is another function with the same range which
// actually contains the user code.
- if (func.IsAsyncFunction() ||
- func.IsAsyncGenerator() ||
+ if (func.IsAsyncFunction() || func.IsAsyncGenerator() ||
func.IsSyncGenerator()) {
return;
}
« no previous file with comments | « runtime/vm/source_report.h ('k') | runtime/vm/source_report_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698