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

Side by Side Diff: src/objects-inl.h

Issue 1282503003: Remove several grab-bag includes from the v8.h header. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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
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 // Review notes: 5 // Review notes:
6 // 6 //
7 // - The use of macros in these inline functions may seem superfluous 7 // - The use of macros in these inline functions may seem superfluous
8 // but it is absolutely needed to make sure gcc generates optimal 8 // but it is absolutely needed to make sure gcc generates optimal
9 // code. gcc is not happy when attempting to inline too deep. 9 // code. gcc is not happy when attempting to inline too deep.
10 // 10 //
(...skipping 10 matching lines...) Expand all
21 #include "src/heap/heap-inl.h" 21 #include "src/heap/heap-inl.h"
22 #include "src/heap/heap.h" 22 #include "src/heap/heap.h"
23 #include "src/isolate.h" 23 #include "src/isolate.h"
24 #include "src/layout-descriptor-inl.h" 24 #include "src/layout-descriptor-inl.h"
25 #include "src/lookup.h" 25 #include "src/lookup.h"
26 #include "src/objects.h" 26 #include "src/objects.h"
27 #include "src/property.h" 27 #include "src/property.h"
28 #include "src/prototype.h" 28 #include "src/prototype.h"
29 #include "src/transitions-inl.h" 29 #include "src/transitions-inl.h"
30 #include "src/type-feedback-vector-inl.h" 30 #include "src/type-feedback-vector-inl.h"
31 #include "src/types-inl.h"
31 #include "src/v8memory.h" 32 #include "src/v8memory.h"
32 33
33 namespace v8 { 34 namespace v8 {
34 namespace internal { 35 namespace internal {
35 36
36 PropertyDetails::PropertyDetails(Smi* smi) { 37 PropertyDetails::PropertyDetails(Smi* smi) {
37 value_ = smi->value(); 38 value_ = smi->value();
38 } 39 }
39 40
40 41
(...skipping 7178 matching lines...) Expand 10 before | Expand all | Expand 10 after
7219 #undef READ_INT64_FIELD 7220 #undef READ_INT64_FIELD
7220 #undef WRITE_INT64_FIELD 7221 #undef WRITE_INT64_FIELD
7221 #undef READ_BYTE_FIELD 7222 #undef READ_BYTE_FIELD
7222 #undef WRITE_BYTE_FIELD 7223 #undef WRITE_BYTE_FIELD
7223 #undef NOBARRIER_READ_BYTE_FIELD 7224 #undef NOBARRIER_READ_BYTE_FIELD
7224 #undef NOBARRIER_WRITE_BYTE_FIELD 7225 #undef NOBARRIER_WRITE_BYTE_FIELD
7225 7226
7226 } } // namespace v8::internal 7227 } } // namespace v8::internal
7227 7228
7228 #endif // V8_OBJECTS_INL_H_ 7229 #endif // V8_OBJECTS_INL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698