| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 21 matching lines...) Expand all Loading... |
| 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 "objects.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 "heap.h" | 41 #include "heap.h" |
| 42 #include "memory.h" | |
| 43 #include "isolate.h" | 42 #include "isolate.h" |
| 44 #include "property.h" | 43 #include "property.h" |
| 45 #include "spaces.h" | 44 #include "spaces.h" |
| 45 #include "v8memory.h" |
| 46 | 46 |
| 47 namespace v8 { | 47 namespace v8 { |
| 48 namespace internal { | 48 namespace internal { |
| 49 | 49 |
| 50 PropertyDetails::PropertyDetails(Smi* smi) { | 50 PropertyDetails::PropertyDetails(Smi* smi) { |
| 51 value_ = smi->value(); | 51 value_ = smi->value(); |
| 52 } | 52 } |
| 53 | 53 |
| 54 | 54 |
| 55 Smi* PropertyDetails::AsSmi() { | 55 Smi* PropertyDetails::AsSmi() { |
| (...skipping 4054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4110 #undef WRITE_INT_FIELD | 4110 #undef WRITE_INT_FIELD |
| 4111 #undef READ_SHORT_FIELD | 4111 #undef READ_SHORT_FIELD |
| 4112 #undef WRITE_SHORT_FIELD | 4112 #undef WRITE_SHORT_FIELD |
| 4113 #undef READ_BYTE_FIELD | 4113 #undef READ_BYTE_FIELD |
| 4114 #undef WRITE_BYTE_FIELD | 4114 #undef WRITE_BYTE_FIELD |
| 4115 | 4115 |
| 4116 | 4116 |
| 4117 } } // namespace v8::internal | 4117 } } // namespace v8::internal |
| 4118 | 4118 |
| 4119 #endif // V8_OBJECTS_INL_H_ | 4119 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |