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

Unified Diff: runtime/vm/assembler_x64.h

Issue 1249933003: Rename assembler field/getter/setter allow_constant_pool to constant_pool_allowed (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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 | « runtime/vm/assembler_mips.cc ('k') | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_x64.h
diff --git a/runtime/vm/assembler_x64.h b/runtime/vm/assembler_x64.h
index b7db5a5186ac85eeb9284e503981ec9277b354e2..f7580ac13d34d52af5a99c2d1370eba5721d4676 100644
--- a/runtime/vm/assembler_x64.h
+++ b/runtime/vm/assembler_x64.h
@@ -751,11 +751,11 @@ class Assembler : public ValueObject {
void Drop(intptr_t stack_elements, Register tmp = TMP);
- bool allow_constant_pool() const {
- return allow_constant_pool_;
+ bool constant_pool_allowed() const {
+ return constant_pool_allowed_;
}
- void set_allow_constant_pool(bool b) {
- allow_constant_pool_ = b;
+ void set_constant_pool_allowed(bool b) {
+ constant_pool_allowed_ = b;
}
bool CanLoadImmediateFromPool(const Immediate& imm, Register pp);
@@ -1073,7 +1073,7 @@ class Assembler : public ValueObject {
};
GrowableArray<CodeComment*> comments_;
- bool allow_constant_pool_;
+ bool constant_pool_allowed_;
intptr_t FindImmediate(int64_t imm);
bool CanLoadFromObjectPool(const Object& object) const;
« no previous file with comments | « runtime/vm/assembler_mips.cc ('k') | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698