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

Unified Diff: src/compiler/register-allocator.h

Issue 910753002: [turbofan] remove one level of indirection in phi inputs (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 months 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 | « src/compiler/instruction-selector.cc ('k') | src/compiler/register-allocator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/register-allocator.h
diff --git a/src/compiler/register-allocator.h b/src/compiler/register-allocator.h
index bd9bd55425f733c10f58081d75746fcb68e3e700..d7dd1b7358246462f2a9474399b23e23225bebd3 100644
--- a/src/compiler/register-allocator.h
+++ b/src/compiler/register-allocator.h
@@ -608,8 +608,7 @@ class RegisterAllocator FINAL : public ZoneObject {
PhiInstruction* const phi;
const InstructionBlock* const block;
};
- typedef std::map<int, PhiMapValue, std::less<int>,
- zone_allocator<std::pair<int, PhiMapValue>>> PhiMap;
+ typedef ZoneMap<int, PhiMapValue> PhiMap;
Zone* const local_zone_;
Frame* const frame_;
« no previous file with comments | « src/compiler/instruction-selector.cc ('k') | src/compiler/register-allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698