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

Unified Diff: src/assembler-ia32.cc

Issue 1935: New static flags system (Closed)
Patch Set: Merge, again. Created 12 years, 3 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/assembler-arm.cc ('k') | src/bootstrapper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler-ia32.cc
diff --git a/src/assembler-ia32.cc b/src/assembler-ia32.cc
index 483ae0efbaa97a13165f07583fd04a769a140c02..3f2b2c9f6aa371d72766f3074360751ec7b5e452 100644
--- a/src/assembler-ia32.cc
+++ b/src/assembler-ia32.cc
@@ -42,10 +42,6 @@
namespace v8 { namespace internal {
-DEFINE_bool(debug_code, false,
- "generate extra code (comments, assertions) for debugging");
-DEFINE_bool(emit_branch_hints, false, "emit branch hints");
-
// -----------------------------------------------------------------------------
// Implementation of Register
@@ -412,11 +408,6 @@ void Assembler::push(const Immediate& x) {
}
-DEFINE_bool(push_pop_elimination, true,
- "eliminate redundant push/pops in assembly code");
-DEFINE_bool(print_push_pop_elimination, false,
- "print elimination of redundant push/pops in assembly code");
-
void Assembler::push(Register src) {
EnsureSpace ensure_space(this);
last_pc_ = pc_;
@@ -1180,10 +1171,6 @@ void Assembler::print(Label* L) {
}
-DEFINE_bool(eliminate_jumps, true, "eliminate jumps to jumps in assembly code");
-DEFINE_bool(print_jump_elimination, false,
- "print elimination of jumps to jumps in assembly code");
-
void Assembler::bind_to(Label* L, int pos) {
EnsureSpace ensure_space(this);
last_pc_ = NULL;
« no previous file with comments | « src/assembler-arm.cc ('k') | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698