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

Side by Side Diff: src/assembler.cc

Issue 11312165: Refactoring: Make emit_debug_code flag handling architecture-independent. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/assembler.h ('k') | src/ia32/assembler-ia32.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 static DoubleConstant double_constants; 102 static DoubleConstant double_constants;
103 103
104 const char* const RelocInfo::kFillerCommentString = "DEOPTIMIZATION PADDING"; 104 const char* const RelocInfo::kFillerCommentString = "DEOPTIMIZATION PADDING";
105 105
106 // ----------------------------------------------------------------------------- 106 // -----------------------------------------------------------------------------
107 // Implementation of AssemblerBase 107 // Implementation of AssemblerBase
108 108
109 AssemblerBase::AssemblerBase(Isolate* isolate) 109 AssemblerBase::AssemblerBase(Isolate* isolate)
110 : isolate_(isolate), 110 : isolate_(isolate),
111 jit_cookie_(0), 111 jit_cookie_(0),
112 emit_debug_code_(FLAG_debug_code),
112 predictable_code_size_(false) { 113 predictable_code_size_(false) {
113 if (FLAG_mask_constants_with_cookie && isolate != NULL) { 114 if (FLAG_mask_constants_with_cookie && isolate != NULL) {
114 jit_cookie_ = V8::RandomPrivate(isolate); 115 jit_cookie_ = V8::RandomPrivate(isolate);
115 } 116 }
116 } 117 }
117 118
118 119
119 // ----------------------------------------------------------------------------- 120 // -----------------------------------------------------------------------------
120 // Implementation of Label 121 // Implementation of Label
121 122
(...skipping 1274 matching lines...) Expand 10 before | Expand all | Expand 10 after
1396 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); 1397 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position);
1397 state_.written_position = state_.current_position; 1398 state_.written_position = state_.current_position;
1398 written = true; 1399 written = true;
1399 } 1400 }
1400 1401
1401 // Return whether something was written. 1402 // Return whether something was written.
1402 return written; 1403 return written;
1403 } 1404 }
1404 1405
1405 } } // namespace v8::internal 1406 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/ia32/assembler-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698