| 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 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1147 V(kExpectedAlignmentMarker, "expected alignment marker") \ | 1147 V(kExpectedAlignmentMarker, "expected alignment marker") \ |
| 1148 V(kExpectedAllocationSite, "expected allocation site") \ | 1148 V(kExpectedAllocationSite, "expected allocation site") \ |
| 1149 V(kExpectedPropertyCellInRegisterA2, \ | 1149 V(kExpectedPropertyCellInRegisterA2, \ |
| 1150 "Expected property cell in register a2") \ | 1150 "Expected property cell in register a2") \ |
| 1151 V(kExpectedFixedArrayInRegisterEbx, \ | 1151 V(kExpectedFixedArrayInRegisterEbx, \ |
| 1152 "Expected fixed array in register ebx") \ | 1152 "Expected fixed array in register ebx") \ |
| 1153 V(kExpectedFixedArrayInRegisterR2, \ | 1153 V(kExpectedFixedArrayInRegisterR2, \ |
| 1154 "Expected fixed array in register r2") \ | 1154 "Expected fixed array in register r2") \ |
| 1155 V(kExpectedFixedArrayInRegisterRbx, \ | 1155 V(kExpectedFixedArrayInRegisterRbx, \ |
| 1156 "Expected fixed array in register rbx") \ | 1156 "Expected fixed array in register rbx") \ |
| 1157 V(kExpectedUndefinedOrCell, \ |
| 1158 "Expected undefined or cell in register") \ |
| 1157 V(kExpectingAlignmentForCopyBytes, \ | 1159 V(kExpectingAlignmentForCopyBytes, \ |
| 1158 "Expecting alignment for CopyBytes") \ | 1160 "Expecting alignment for CopyBytes") \ |
| 1159 V(kExportDeclaration, "Export declaration") \ | 1161 V(kExportDeclaration, "Export declaration") \ |
| 1160 V(kExternalStringExpectedButNotFound, \ | 1162 V(kExternalStringExpectedButNotFound, \ |
| 1161 "External string expected, but not found") \ | 1163 "External string expected, but not found") \ |
| 1162 V(kFailedBailedOutLastTime, "Failed/bailed out last time") \ | 1164 V(kFailedBailedOutLastTime, "Failed/bailed out last time") \ |
| 1163 V(kForInStatementIsNotFastCase, "ForInStatement is not fast case") \ | 1165 V(kForInStatementIsNotFastCase, "ForInStatement is not fast case") \ |
| 1164 V(kForInStatementOptimizationIsDisabled, \ | 1166 V(kForInStatementOptimizationIsDisabled, \ |
| 1165 "ForInStatement optimization is disabled") \ | 1167 "ForInStatement optimization is disabled") \ |
| 1166 V(kForInStatementWithNonLocalEachVariable, \ | 1168 V(kForInStatementWithNonLocalEachVariable, \ |
| (...skipping 9571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10738 } else { | 10740 } else { |
| 10739 value &= ~(1 << bit_position); | 10741 value &= ~(1 << bit_position); |
| 10740 } | 10742 } |
| 10741 return value; | 10743 return value; |
| 10742 } | 10744 } |
| 10743 }; | 10745 }; |
| 10744 | 10746 |
| 10745 } } // namespace v8::internal | 10747 } } // namespace v8::internal |
| 10746 | 10748 |
| 10747 #endif // V8_OBJECTS_H_ | 10749 #endif // V8_OBJECTS_H_ |
| OLD | NEW |