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

Unified Diff: src/arm64/assembler-arm64.h

Issue 2092413002: [RegisterConfiguration] Streamline access to arch defaults, simplify Registers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix compile. Created 4 years, 6 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/arm/simulator-arm.cc ('k') | src/arm64/assembler-arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm64/assembler-arm64.h
diff --git a/src/arm64/assembler-arm64.h b/src/arm64/assembler-arm64.h
index b796a38e54640300bf811529c10ed2ae980e0e73..cc26278c979e8d50d0cf0f5dab71958347ca1b86 100644
--- a/src/arm64/assembler-arm64.h
+++ b/src/arm64/assembler-arm64.h
@@ -154,9 +154,6 @@ struct Register : public CPURegister {
DCHECK(IsValidOrNone());
}
- const char* ToString();
- bool IsAllocatable(RegisterConfiguration::CompilerSelector compiler =
- RegisterConfiguration::CRANKSHAFT) const;
bool IsValid() const {
DCHECK(IsRegister() || IsNone());
return IsValidRegister();
@@ -232,9 +229,6 @@ struct FPRegister : public CPURegister {
DCHECK(IsValidOrNone());
}
- const char* ToString();
- bool IsAllocatable(RegisterConfiguration::CompilerSelector compiler =
- RegisterConfiguration::CRANKSHAFT) const;
bool IsValid() const {
DCHECK(IsFPRegister() || IsNone());
return IsValidFPRegister();
« no previous file with comments | « src/arm/simulator-arm.cc ('k') | src/arm64/assembler-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698