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 1274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1285 V(kOffsetOutOfRange, "Offset out of range") \ | 1285 V(kOffsetOutOfRange, "Offset out of range") \ |
1286 V(kOperandIsASmiAndNotAName, "Operand is a smi and not a name") \ | 1286 V(kOperandIsASmiAndNotAName, "Operand is a smi and not a name") \ |
1287 V(kOperandIsASmiAndNotAString, "Operand is a smi and not a string") \ | 1287 V(kOperandIsASmiAndNotAString, "Operand is a smi and not a string") \ |
1288 V(kOperandIsASmi, "Operand is a smi") \ | 1288 V(kOperandIsASmi, "Operand is a smi") \ |
1289 V(kOperandIsNotAName, "Operand is not a name") \ | 1289 V(kOperandIsNotAName, "Operand is not a name") \ |
1290 V(kOperandIsNotANumber, "Operand is not a number") \ | 1290 V(kOperandIsNotANumber, "Operand is not a number") \ |
1291 V(kOperandIsNotASmi, "Operand is not a smi") \ | 1291 V(kOperandIsNotASmi, "Operand is not a smi") \ |
1292 V(kOperandIsNotAString, "Operand is not a string") \ | 1292 V(kOperandIsNotAString, "Operand is not a string") \ |
1293 V(kOperandIsNotSmi, "Operand is not smi") \ | 1293 V(kOperandIsNotSmi, "Operand is not smi") \ |
1294 V(kOperandNotANumber, "Operand not a number") \ | 1294 V(kOperandNotANumber, "Operand not a number") \ |
| 1295 V(kObjectTagged, "The object is tagged") \ |
| 1296 V(kObjectNotTagged, "The object is not tagged") \ |
1295 V(kOptimizationDisabled, "Optimization is disabled") \ | 1297 V(kOptimizationDisabled, "Optimization is disabled") \ |
1296 V(kOptimizedTooManyTimes, "Optimized too many times") \ | 1298 V(kOptimizedTooManyTimes, "Optimized too many times") \ |
1297 V(kOutOfVirtualRegistersWhileTryingToAllocateTempRegister, \ | 1299 V(kOutOfVirtualRegistersWhileTryingToAllocateTempRegister, \ |
1298 "Out of virtual registers while trying to allocate temp register") \ | 1300 "Out of virtual registers while trying to allocate temp register") \ |
1299 V(kParseScopeError, "Parse/scope error") \ | 1301 V(kParseScopeError, "Parse/scope error") \ |
1300 V(kPossibleDirectCallToEval, "Possible direct call to eval") \ | 1302 V(kPossibleDirectCallToEval, "Possible direct call to eval") \ |
1301 V(kPreconditionsWereNotMet, "Preconditions were not met") \ | 1303 V(kPreconditionsWereNotMet, "Preconditions were not met") \ |
1302 V(kPropertyAllocationCountFailed, "Property allocation count failed") \ | 1304 V(kPropertyAllocationCountFailed, "Property allocation count failed") \ |
1303 V(kReceivedInvalidReturnAddress, "Received invalid return address") \ | 1305 V(kReceivedInvalidReturnAddress, "Received invalid return address") \ |
1304 V(kReferenceToAVariableWhichRequiresDynamicLookup, \ | 1306 V(kReferenceToAVariableWhichRequiresDynamicLookup, \ |
(...skipping 9520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10825 } else { | 10827 } else { |
10826 value &= ~(1 << bit_position); | 10828 value &= ~(1 << bit_position); |
10827 } | 10829 } |
10828 return value; | 10830 return value; |
10829 } | 10831 } |
10830 }; | 10832 }; |
10831 | 10833 |
10832 } } // namespace v8::internal | 10834 } } // namespace v8::internal |
10833 | 10835 |
10834 #endif // V8_OBJECTS_H_ | 10836 #endif // V8_OBJECTS_H_ |
OLD | NEW |