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

Side by Side Diff: src/objects.h

Issue 1777593003: S390: Platform specific includes in common files (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Use new Macro for object in roots array too. Created 4 years, 9 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
« no previous file with comments | « src/macro-assembler.h ('k') | src/profiler/sampler.cc » ('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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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/assert-scope.h" 10 #include "src/assert-scope.h"
(...skipping 15 matching lines...) Expand all
26 #if V8_TARGET_ARCH_ARM 26 #if V8_TARGET_ARCH_ARM
27 #include "src/arm/constants-arm.h" // NOLINT 27 #include "src/arm/constants-arm.h" // NOLINT
28 #elif V8_TARGET_ARCH_ARM64 28 #elif V8_TARGET_ARCH_ARM64
29 #include "src/arm64/constants-arm64.h" // NOLINT 29 #include "src/arm64/constants-arm64.h" // NOLINT
30 #elif V8_TARGET_ARCH_MIPS 30 #elif V8_TARGET_ARCH_MIPS
31 #include "src/mips/constants-mips.h" // NOLINT 31 #include "src/mips/constants-mips.h" // NOLINT
32 #elif V8_TARGET_ARCH_MIPS64 32 #elif V8_TARGET_ARCH_MIPS64
33 #include "src/mips64/constants-mips64.h" // NOLINT 33 #include "src/mips64/constants-mips64.h" // NOLINT
34 #elif V8_TARGET_ARCH_PPC 34 #elif V8_TARGET_ARCH_PPC
35 #include "src/ppc/constants-ppc.h" // NOLINT 35 #include "src/ppc/constants-ppc.h" // NOLINT
36 #elif V8_TARGET_ARCH_S390
37 #include "src/s390/constants-s390.h" // NOLINT
36 #endif 38 #endif
37 39
38 40
39 // 41 //
40 // Most object types in the V8 JavaScript are described in this file. 42 // Most object types in the V8 JavaScript are described in this file.
41 // 43 //
42 // Inheritance hierarchy: 44 // Inheritance hierarchy:
43 // - Object 45 // - Object
44 // - Smi (immediate small integer) 46 // - Smi (immediate small integer)
45 // - HeapObject (superclass for everything allocated in the heap) 47 // - HeapObject (superclass for everything allocated in the heap)
(...skipping 10837 matching lines...) Expand 10 before | Expand all | Expand 10 after
10883 } 10885 }
10884 return value; 10886 return value;
10885 } 10887 }
10886 }; 10888 };
10887 10889
10888 10890
10889 } // NOLINT, false-positive due to second-order macros. 10891 } // NOLINT, false-positive due to second-order macros.
10890 } // NOLINT, false-positive due to second-order macros. 10892 } // NOLINT, false-positive due to second-order macros.
10891 10893
10892 #endif // V8_OBJECTS_H_ 10894 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/macro-assembler.h ('k') | src/profiler/sampler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698