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

Side by Side Diff: src/ostreams.cc

Issue 458533002: Fix disassembly redirection from stdout into a file. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: switch to reversible escaping Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/ostreams.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <algorithm> 5 #include <algorithm>
6 #include <cmath> 6 #include <cmath>
7 7
8 #include "src/base/platform/platform.h" // For isinf/isnan with MSVC 8 #include "src/base/platform/platform.h" // For isinf/isnan with MSVC
9 #include "src/ostreams.h" 9 #include "src/ostreams.h"
10 10
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 return *this; 156 return *this;
157 } 157 }
158 158
159 159
160 OFStream& OFStream::flush() { 160 OFStream& OFStream::flush() {
161 if (f_) fflush(f_); 161 if (f_) fflush(f_);
162 return *this; 162 return *this;
163 } 163 }
164 164
165 165
166 OStream& operator<<(OStream& os, const AsReversiblyEscapedUC16& c) {
167 char buf[10];
168 const char* format = (0x20 <= c.value && c.value <= 0x7F) && (c.value != 0x52)
169 ? "%c"
170 : (c.value <= 0xff) ? "\\x%02x" : "\\u%04x";
171 snprintf(buf, sizeof(buf), format, c.value);
172 return os << buf;
173 }
174
175
166 OStream& operator<<(OStream& os, const AsUC16& c) { 176 OStream& operator<<(OStream& os, const AsUC16& c) {
167 char buf[10]; 177 char buf[10];
168 const char* format = (0x20 <= c.value && c.value <= 0x7F) 178 const char* format = (0x20 <= c.value && c.value <= 0x7F)
169 ? "%c" 179 ? "%c"
170 : (c.value <= 0xff) ? "\\x%02x" : "\\u%04x"; 180 : (c.value <= 0xff) ? "\\x%02x" : "\\u%04x";
171 snprintf(buf, sizeof(buf), format, c.value); 181 snprintf(buf, sizeof(buf), format, c.value);
172 return os << buf; 182 return os << buf;
173 } 183 }
174 } } // namespace v8::internal 184 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/ostreams.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698