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

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

Issue 6340: If an allocation is so huge that we cannot code the size needed in the failur... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 12 years, 2 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/objects.h ('k') | test/cctest/test-api.cc » ('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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « src/objects.h ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698