| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |