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

Unified Diff: runtime/vm/precompiler.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/parser.cc ('k') | runtime/vm/precompiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/precompiler.h
diff --git a/runtime/vm/precompiler.h b/runtime/vm/precompiler.h
index 9f2ca90d67ad987b59f2e579d66572be0fa0752e..b7633635d227c412d3514fd4da9221698e49b8f8 100644
--- a/runtime/vm/precompiler.h
+++ b/runtime/vm/precompiler.h
@@ -78,12 +78,12 @@ class SymbolKeyValueTrait {
typedef DirectChainedHashMap<SymbolKeyValueTrait> SymbolSet;
-class StackmapKeyValueTrait {
+class StackMapKeyValueTrait {
public:
// Typedefs needed for the DirectChainedHashMap template.
- typedef const Stackmap* Key;
- typedef const Stackmap* Value;
- typedef const Stackmap* Pair;
+ typedef const StackMap* Key;
+ typedef const StackMap* Value;
+ typedef const StackMap* Pair;
static Key KeyOf(Pair kv) { return kv; }
@@ -96,7 +96,7 @@ class StackmapKeyValueTrait {
}
};
-typedef DirectChainedHashMap<StackmapKeyValueTrait> StackmapSet;
+typedef DirectChainedHashMap<StackMapKeyValueTrait> StackMapSet;
class ArrayKeyValueTrait {
@@ -393,7 +393,7 @@ class Precompiler : public ValueObject {
void BindStaticCalls();
void SwitchICCalls();
void ShareMegamorphicBuckets();
- void DedupStackmaps();
+ void DedupStackMaps();
void DedupLists();
void DedupInstructions();
void ResetPrecompilerState();
« no previous file with comments | « runtime/vm/parser.cc ('k') | runtime/vm/precompiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698