| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 return HAS_FAILURE_TAG(this); | 192 return HAS_FAILURE_TAG(this); |
| 193 } | 193 } |
| 194 | 194 |
| 195 | 195 |
| 196 bool Object::IsRetryAfterGC() { | 196 bool Object::IsRetryAfterGC() { |
| 197 return HAS_FAILURE_TAG(this) | 197 return HAS_FAILURE_TAG(this) |
| 198 && Failure::cast(this)->type() == Failure::RETRY_AFTER_GC; | 198 && Failure::cast(this)->type() == Failure::RETRY_AFTER_GC; |
| 199 } | 199 } |
| 200 | 200 |
| 201 | 201 |
| 202 bool Object::IsOutOfMemoryFailure() { |
| 203 return HAS_FAILURE_TAG(this) |
| 204 && Failure::cast(this)->IsOutOfMemoryException(); |
| 205 } |
| 206 |
| 207 |
| 202 bool Object::IsException() { | 208 bool Object::IsException() { |
| 203 return this == Failure::Exception(); | 209 return this == Failure::Exception(); |
| 204 } | 210 } |
| 205 | 211 |
| 206 | 212 |
| 207 bool Object::IsJSObject() { | 213 bool Object::IsJSObject() { |
| 208 return IsHeapObject() | 214 return IsHeapObject() |
| 209 && HeapObject::cast(this)->map()->instance_type() >= FIRST_JS_OBJECT_TYPE; | 215 && HeapObject::cast(this)->map()->instance_type() >= FIRST_JS_OBJECT_TYPE; |
| 210 } | 216 } |
| 211 | 217 |
| (...skipping 2026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2238 #undef WRITE_INT_FIELD | 2244 #undef WRITE_INT_FIELD |
| 2239 #undef READ_SHORT_FIELD | 2245 #undef READ_SHORT_FIELD |
| 2240 #undef WRITE_SHORT_FIELD | 2246 #undef WRITE_SHORT_FIELD |
| 2241 #undef READ_BYTE_FIELD | 2247 #undef READ_BYTE_FIELD |
| 2242 #undef WRITE_BYTE_FIELD | 2248 #undef WRITE_BYTE_FIELD |
| 2243 | 2249 |
| 2244 | 2250 |
| 2245 } } // namespace v8::internal | 2251 } } // namespace v8::internal |
| 2246 | 2252 |
| 2247 #endif // V8_OBJECTS_INL_H_ | 2253 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |