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

Unified Diff: src/assembler-arm.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 | « no previous file | src/assembler-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler-arm.cc
diff --git a/src/assembler-arm.cc b/src/assembler-arm.cc
index e057fe033b77289d354bfea16155a34ff598256c..12d110b9b5807061b1efe3acedc6d14e7df712ad 100644
--- a/src/assembler-arm.cc
+++ b/src/assembler-arm.cc
@@ -41,10 +41,6 @@
namespace v8 { namespace internal {
-DEFINE_bool(debug_code, false,
- "generate extra code (comments, assertions) for debugging");
-
-
// -----------------------------------------------------------------------------
// Implementation of Register and CRegister
@@ -272,11 +268,6 @@ enum {
};
-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");
-
// add(sp, sp, 4) instruction (aka Pop())
static const Instr kPopInstruction =
al | 4 * B21 | 4 | LeaveCC | I | sp.code() * B16 | sp.code() * B12;
@@ -469,10 +460,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) {
ASSERT(0 <= pos && pos <= pc_offset()); // must have a valid binding position
while (L->is_linked()) {
« no previous file with comments | « no previous file | src/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698