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

Side by Side Diff: src/objects.h

Issue 638643002: Update unicode to 7.0.0. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comment Created 6 years, 2 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/jsregexp.cc ('k') | src/scanner.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 #ifndef V8_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
11 #include "src/assert-scope.h" 11 #include "src/assert-scope.h"
12 #include "src/bailout-reason.h" 12 #include "src/bailout-reason.h"
13 #include "src/base/bits.h" 13 #include "src/base/bits.h"
14 #include "src/builtins.h" 14 #include "src/builtins.h"
15 #include "src/checks.h" 15 #include "src/checks.h"
16 #include "src/elements-kind.h" 16 #include "src/elements-kind.h"
17 #include "src/field-index.h" 17 #include "src/field-index.h"
18 #include "src/flags.h" 18 #include "src/flags.h"
19 #include "src/list.h" 19 #include "src/list.h"
20 #include "src/property-details.h" 20 #include "src/property-details.h"
21 #include "src/smart-pointers.h" 21 #include "src/smart-pointers.h"
22 #include "src/unicode-inl.h" 22 #include "src/unicode-inl.h"
23 #include "src/unicode-decoder.h"
23 #include "src/zone.h" 24 #include "src/zone.h"
24 25
25 #if V8_TARGET_ARCH_ARM 26 #if V8_TARGET_ARCH_ARM
26 #include "src/arm/constants-arm.h" // NOLINT 27 #include "src/arm/constants-arm.h" // NOLINT
27 #elif V8_TARGET_ARCH_ARM64 28 #elif V8_TARGET_ARCH_ARM64
28 #include "src/arm64/constants-arm64.h" // NOLINT 29 #include "src/arm64/constants-arm64.h" // NOLINT
29 #elif V8_TARGET_ARCH_MIPS 30 #elif V8_TARGET_ARCH_MIPS
30 #include "src/mips/constants-mips.h" // NOLINT 31 #include "src/mips/constants-mips.h" // NOLINT
31 #elif V8_TARGET_ARCH_MIPS64 32 #elif V8_TARGET_ARCH_MIPS64
32 #include "src/mips64/constants-mips64.h" // NOLINT 33 #include "src/mips64/constants-mips64.h" // NOLINT
(...skipping 10808 matching lines...) Expand 10 before | Expand all | Expand 10 after
10841 } else { 10842 } else {
10842 value &= ~(1 << bit_position); 10843 value &= ~(1 << bit_position);
10843 } 10844 }
10844 return value; 10845 return value;
10845 } 10846 }
10846 }; 10847 };
10847 10848
10848 } } // namespace v8::internal 10849 } } // namespace v8::internal
10849 10850
10850 #endif // V8_OBJECTS_H_ 10851 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/jsregexp.cc ('k') | src/scanner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698