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

Side by Side Diff: src/objects.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/jsregexp.cc ('k') | src/objects-inl.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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 inline bool IsExternalAsciiString(); 592 inline bool IsExternalAsciiString();
593 inline bool IsExternalTwoByteString(); 593 inline bool IsExternalTwoByteString();
594 inline bool IsShortString(); 594 inline bool IsShortString();
595 inline bool IsMediumString(); 595 inline bool IsMediumString();
596 inline bool IsLongString(); 596 inline bool IsLongString();
597 inline bool IsSymbol(); 597 inline bool IsSymbol();
598 inline bool IsNumber(); 598 inline bool IsNumber();
599 inline bool IsByteArray(); 599 inline bool IsByteArray();
600 inline bool IsFailure(); 600 inline bool IsFailure();
601 inline bool IsRetryAfterGC(); 601 inline bool IsRetryAfterGC();
602 inline bool IsOutOfMemoryFailure();
602 inline bool IsException(); 603 inline bool IsException();
603 inline bool IsJSObject(); 604 inline bool IsJSObject();
604 inline bool IsMap(); 605 inline bool IsMap();
605 inline bool IsFixedArray(); 606 inline bool IsFixedArray();
606 inline bool IsDescriptorArray(); 607 inline bool IsDescriptorArray();
607 inline bool IsContext(); 608 inline bool IsContext();
608 inline bool IsGlobalContext(); 609 inline bool IsGlobalContext();
609 inline bool IsJSFunction(); 610 inline bool IsJSFunction();
610 inline bool IsCode(); 611 inline bool IsCode();
611 inline bool IsOddball(); 612 inline bool IsOddball();
(...skipping 3360 matching lines...) Expand 10 before | Expand all | Expand 10 after
3972 } else { 3973 } else {
3973 value &= ~(1 << bit_position); 3974 value &= ~(1 << bit_position);
3974 } 3975 }
3975 return value; 3976 return value;
3976 } 3977 }
3977 }; 3978 };
3978 3979
3979 } } // namespace v8::internal 3980 } } // namespace v8::internal
3980 3981
3981 #endif // V8_OBJECTS_H_ 3982 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/jsregexp.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698