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

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

Issue 3253001: Improve header file inclusions. Drop some unneeded includes, and add some ne... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 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/heap-inl.h ('k') | src/v8.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 17 matching lines...) Expand all
28 // Review notes: 28 // Review notes:
29 // 29 //
30 // - The use of macros in these inline functions may seem superfluous 30 // - The use of macros in these inline functions may seem superfluous
31 // but it is absolutely needed to make sure gcc generates optimal 31 // but it is absolutely needed to make sure gcc generates optimal
32 // code. gcc is not happy when attempting to inline too deep. 32 // code. gcc is not happy when attempting to inline too deep.
33 // 33 //
34 34
35 #ifndef V8_OBJECTS_INL_H_ 35 #ifndef V8_OBJECTS_INL_H_
36 #define V8_OBJECTS_INL_H_ 36 #define V8_OBJECTS_INL_H_
37 37
38 #include "memory.h" 38 #include "objects.h"
39 #include "contexts.h" 39 #include "contexts.h"
40 #include "conversions-inl.h" 40 #include "conversions-inl.h"
41 #include "objects.h" 41 #include "heap.h"
42 #include "memory.h"
42 #include "property.h" 43 #include "property.h"
44 #include "spaces.h"
43 45
44 namespace v8 { 46 namespace v8 {
45 namespace internal { 47 namespace internal {
46 48
47 PropertyDetails::PropertyDetails(Smi* smi) { 49 PropertyDetails::PropertyDetails(Smi* smi) {
48 value_ = smi->value(); 50 value_ = smi->value();
49 } 51 }
50 52
51 53
52 Smi* PropertyDetails::AsSmi() { 54 Smi* PropertyDetails::AsSmi() {
(...skipping 3426 matching lines...) Expand 10 before | Expand all | Expand 10 after
3479 #undef WRITE_INT_FIELD 3481 #undef WRITE_INT_FIELD
3480 #undef READ_SHORT_FIELD 3482 #undef READ_SHORT_FIELD
3481 #undef WRITE_SHORT_FIELD 3483 #undef WRITE_SHORT_FIELD
3482 #undef READ_BYTE_FIELD 3484 #undef READ_BYTE_FIELD
3483 #undef WRITE_BYTE_FIELD 3485 #undef WRITE_BYTE_FIELD
3484 3486
3485 3487
3486 } } // namespace v8::internal 3488 } } // namespace v8::internal
3487 3489
3488 #endif // V8_OBJECTS_INL_H_ 3490 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/heap-inl.h ('k') | src/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698