OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
253 inline void MemsetPointer(T** dest, U* value, int counter) { | 253 inline void MemsetPointer(T** dest, U* value, int counter) { |
254 #ifdef DEBUG | 254 #ifdef DEBUG |
255 T* a = NULL; | 255 T* a = NULL; |
256 U* b = NULL; | 256 U* b = NULL; |
257 a = b; // Fake assignment to check assignability. | 257 a = b; // Fake assignment to check assignability. |
258 USE(a); | 258 USE(a); |
259 #endif // DEBUG | 259 #endif // DEBUG |
260 #if V8_HOST_ARCH_IA32 | 260 #if V8_HOST_ARCH_IA32 |
261 #define STOS "stosl" | 261 #define STOS "stosl" |
262 #elif V8_HOST_ARCH_X64 | 262 #elif V8_HOST_ARCH_X64 |
263 #if V8_HOST_ARCH_32_BIT | |
danno
2013/07/17 13:33:21
Are you sure the nesting is right here? It seems l
haitao.feng
2013/07/18 10:04:09
It is right. For X32, V8_HOST_ARCH_X64 and V8_HOST
| |
264 #define STOS "addr32 stosl" | |
265 #else | |
263 #define STOS "stosq" | 266 #define STOS "stosq" |
264 #endif | 267 #endif |
268 #endif | |
265 #if defined(__native_client__) | 269 #if defined(__native_client__) |
266 // This STOS sequence does not validate for x86_64 Native Client. | 270 // This STOS sequence does not validate for x86_64 Native Client. |
267 // Here we #undef STOS to force use of the slower C version. | 271 // Here we #undef STOS to force use of the slower C version. |
268 // TODO(bradchen): Profile V8 and implement a faster REP STOS | 272 // TODO(bradchen): Profile V8 and implement a faster REP STOS |
269 // here if the profile indicates it matters. | 273 // here if the profile indicates it matters. |
270 #undef STOS | 274 #undef STOS |
271 #endif | 275 #endif |
272 | 276 |
273 #if defined(__GNUC__) && defined(STOS) | 277 #if defined(__GNUC__) && defined(STOS) |
274 asm volatile( | 278 asm volatile( |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
385 | 389 |
386 // Add formatted contents like printf based on a va_list. | 390 // Add formatted contents like printf based on a va_list. |
387 void AddFormattedList(const char* format, va_list list); | 391 void AddFormattedList(const char* format, va_list list); |
388 private: | 392 private: |
389 DISALLOW_IMPLICIT_CONSTRUCTORS(StringBuilder); | 393 DISALLOW_IMPLICIT_CONSTRUCTORS(StringBuilder); |
390 }; | 394 }; |
391 | 395 |
392 } } // namespace v8::internal | 396 } } // namespace v8::internal |
393 | 397 |
394 #endif // V8_V8UTILS_H_ | 398 #endif // V8_V8UTILS_H_ |
OLD | NEW |