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

Unified Diff: runtime/vm/flow_graph_compiler.h

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/exceptions.cc ('k') | runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler.h
diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h
index afdb4cb0a7bff56de4f7de68e5c6c1d5debc03e6..e8b013fdc58d7735138020cb998b8d44105b4823 100644
--- a/runtime/vm/flow_graph_compiler.h
+++ b/runtime/vm/flow_graph_compiler.h
@@ -478,7 +478,7 @@ class FlowGraphCompiler : public ValueObject {
intptr_t pc_offset,
const Array& handler_types,
bool needs_stacktrace);
- void SetNeedsStacktrace(intptr_t try_index);
+ void SetNeedsStackTrace(intptr_t try_index);
void AddCurrentDescriptor(RawPcDescriptors::Kind kind,
intptr_t deopt_id,
TokenPosition token_pos);
@@ -506,7 +506,7 @@ class FlowGraphCompiler : public ValueObject {
void FinalizeExceptionHandlers(const Code& code);
void FinalizePcDescriptors(const Code& code);
RawArray* CreateDeoptInfo(Assembler* assembler);
- void FinalizeStackmaps(const Code& code);
+ void FinalizeStackMaps(const Code& code);
void FinalizeVarDescriptors(const Code& code);
void FinalizeStaticCallTargetsTable(const Code& code);
@@ -699,9 +699,9 @@ class FlowGraphCompiler : public ValueObject {
intptr_t GetOptimizationThreshold() const;
- StackmapTableBuilder* stackmap_table_builder() {
+ StackMapTableBuilder* stackmap_table_builder() {
if (stackmap_table_builder_ == NULL) {
- stackmap_table_builder_ = new StackmapTableBuilder();
+ stackmap_table_builder_ = new StackMapTableBuilder();
}
return stackmap_table_builder_;
}
@@ -752,7 +752,7 @@ class FlowGraphCompiler : public ValueObject {
BlockEntryInstr* current_block_;
ExceptionHandlerList* exception_handlers_list_;
DescriptorList* pc_descriptors_list_;
- StackmapTableBuilder* stackmap_table_builder_;
+ StackMapTableBuilder* stackmap_table_builder_;
CodeSourceMapBuilder* code_source_map_builder_;
intptr_t saved_code_size_;
GrowableArray<BlockInfo*> block_info_;
« no previous file with comments | « runtime/vm/exceptions.cc ('k') | runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698