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

Unified Diff: runtime/vm/assembler_mips.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_arm64.cc ('k') | runtime/vm/assembler_mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_mips.h
diff --git a/runtime/vm/assembler_mips.h b/runtime/vm/assembler_mips.h
index 174ec9fdd95be6aaee35f0cd15ccfb1d9d058e8b..ed5d170ab9b0880641bf03524b59b3f93e665170 100644
--- a/runtime/vm/assembler_mips.h
+++ b/runtime/vm/assembler_mips.h
@@ -241,7 +241,7 @@ class Assembler : public ValueObject {
delay_slot_available_(false),
in_delay_slot_(false),
comments_(),
- allow_constant_pool_(true) { }
+ constant_pool_allowed_(true) { }
~Assembler() { }
void PopRegister(Register r) { Pop(r); }
@@ -1622,11 +1622,11 @@ class Assembler : public ValueObject {
static bool IsSafe(const Object& object) { return true; }
static bool IsSafeSmi(const Object& object) { return object.IsSmi(); }
- 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;
}
private:
@@ -1656,7 +1656,7 @@ class Assembler : public ValueObject {
GrowableArray<CodeComment*> comments_;
- bool allow_constant_pool_;
+ bool constant_pool_allowed_;
void LoadObjectHelper(Register rd, const Object& object, bool is_unique);
« no previous file with comments | « runtime/vm/assembler_arm64.cc ('k') | runtime/vm/assembler_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698