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