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

Unified Diff: runtime/vm/flow_graph_compiler.cc

Issue 2572563004: Improve the casing of Stackmap and Stacktrace. (Closed)
Patch Set: Build fixes Created 4 years 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/flow_graph_compiler.h ('k') | runtime/vm/intermediate_language_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler.cc
diff --git a/runtime/vm/flow_graph_compiler.cc b/runtime/vm/flow_graph_compiler.cc
index 405b37f7b9f98e1461f8a604f7414fea5d836288..6d103b889c9a06c294e65bf0bc2150e6bc9a12b1 100644
--- a/runtime/vm/flow_graph_compiler.cc
+++ b/runtime/vm/flow_graph_compiler.cc
@@ -785,8 +785,8 @@ void FlowGraphCompiler::AddExceptionHandler(intptr_t try_index,
}
-void FlowGraphCompiler::SetNeedsStacktrace(intptr_t try_index) {
- exception_handlers_list_->SetNeedsStacktrace(try_index);
+void FlowGraphCompiler::SetNeedsStackTrace(intptr_t try_index) {
+ exception_handlers_list_->SetNeedsStackTrace(try_index);
}
@@ -1070,13 +1070,13 @@ RawArray* FlowGraphCompiler::CreateDeoptInfo(Assembler* assembler) {
}
-void FlowGraphCompiler::FinalizeStackmaps(const Code& code) {
+void FlowGraphCompiler::FinalizeStackMaps(const Code& code) {
if (stackmap_table_builder_ == NULL) {
code.set_stackmaps(Object::null_array());
} else {
// Finalize the stack map array and add it to the code object.
code.set_stackmaps(
- Array::Handle(stackmap_table_builder_->FinalizeStackmaps(code)));
+ Array::Handle(stackmap_table_builder_->FinalizeStackMaps(code)));
}
}
« no previous file with comments | « runtime/vm/flow_graph_compiler.h ('k') | runtime/vm/intermediate_language_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698