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

Side by Side Diff: src/objects.h

Issue 72813004: Fixed crashes exposed though fuzzing. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix nits Created 7 years, 1 month 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/ia32/macro-assembler-ia32.cc ('k') | src/runtime.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after
1189 V(kModuleUrl, "Module url") \ 1189 V(kModuleUrl, "Module url") \
1190 V(kNativeFunctionLiteral, "Native function literal") \ 1190 V(kNativeFunctionLiteral, "Native function literal") \
1191 V(kNoCasesLeft, "no cases left") \ 1191 V(kNoCasesLeft, "no cases left") \
1192 V(kNoEmptyArraysHereInEmitFastAsciiArrayJoin, \ 1192 V(kNoEmptyArraysHereInEmitFastAsciiArrayJoin, \
1193 "No empty arrays here in EmitFastAsciiArrayJoin") \ 1193 "No empty arrays here in EmitFastAsciiArrayJoin") \
1194 V(kNonInitializerAssignmentToConst, \ 1194 V(kNonInitializerAssignmentToConst, \
1195 "non-initializer assignment to const") \ 1195 "non-initializer assignment to const") \
1196 V(kNonSmiIndex, "Non-smi index") \ 1196 V(kNonSmiIndex, "Non-smi index") \
1197 V(kNonSmiKeyInArrayLiteral, "Non-smi key in array literal") \ 1197 V(kNonSmiKeyInArrayLiteral, "Non-smi key in array literal") \
1198 V(kNonSmiValue, "Non-smi value") \ 1198 V(kNonSmiValue, "Non-smi value") \
1199 V(kNonObject, "Non-object value") \
1199 V(kNotEnoughVirtualRegistersForValues, \ 1200 V(kNotEnoughVirtualRegistersForValues, \
1200 "not enough virtual registers for values") \ 1201 "not enough virtual registers for values") \
1201 V(kNotEnoughSpillSlotsForOsr, \ 1202 V(kNotEnoughSpillSlotsForOsr, \
1202 "not enough spill slots for OSR") \ 1203 "not enough spill slots for OSR") \
1203 V(kNotEnoughVirtualRegistersRegalloc, \ 1204 V(kNotEnoughVirtualRegistersRegalloc, \
1204 "not enough virtual registers (regalloc)") \ 1205 "not enough virtual registers (regalloc)") \
1205 V(kObjectFoundInSmiOnlyArray, "object found in smi-only array") \ 1206 V(kObjectFoundInSmiOnlyArray, "object found in smi-only array") \
1206 V(kObjectLiteralWithComplexProperty, \ 1207 V(kObjectLiteralWithComplexProperty, \
1207 "Object literal with complex property") \ 1208 "Object literal with complex property") \
1208 V(kOddballInStringTableIsNotUndefinedOrTheHole, \ 1209 V(kOddballInStringTableIsNotUndefinedOrTheHole, \
(...skipping 9356 matching lines...) Expand 10 before | Expand all | Expand 10 after
10565 } else { 10566 } else {
10566 value &= ~(1 << bit_position); 10567 value &= ~(1 << bit_position);
10567 } 10568 }
10568 return value; 10569 return value;
10569 } 10570 }
10570 }; 10571 };
10571 10572
10572 } } // namespace v8::internal 10573 } } // namespace v8::internal
10573 10574
10574 #endif // V8_OBJECTS_H_ 10575 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/ia32/macro-assembler-ia32.cc ('k') | src/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698