| 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 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1139 V(kDontDeleteCellsCannotContainTheHole, \ | 1139 V(kDontDeleteCellsCannotContainTheHole, \ |
| 1140 "DontDelete cells can't contain the hole") \ | 1140 "DontDelete cells can't contain the hole") \ |
| 1141 V(kDoPushArgumentNotImplementedForDoubleType, \ | 1141 V(kDoPushArgumentNotImplementedForDoubleType, \ |
| 1142 "DoPushArgument not implemented for double type") \ | 1142 "DoPushArgument not implemented for double type") \ |
| 1143 V(kEmitLoadRegisterUnsupportedDoubleImmediate, \ | 1143 V(kEmitLoadRegisterUnsupportedDoubleImmediate, \ |
| 1144 "EmitLoadRegister: Unsupported double immediate") \ | 1144 "EmitLoadRegister: Unsupported double immediate") \ |
| 1145 V(kEval, "eval") \ | 1145 V(kEval, "eval") \ |
| 1146 V(kExpected0AsASmiSentinel, "Expected 0 as a Smi sentinel") \ | 1146 V(kExpected0AsASmiSentinel, "Expected 0 as a Smi sentinel") \ |
| 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(kExpectedFixedArrayInRegisterA2, \ |
| 1150 "Expected property cell in register a2") \ | 1150 "Expected fixed array 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(kExpectingAlignmentForCopyBytes, \ | 1157 V(kExpectingAlignmentForCopyBytes, \ |
| 1158 "Expecting alignment for CopyBytes") \ | 1158 "Expecting alignment for CopyBytes") \ |
| 1159 V(kExportDeclaration, "Export declaration") \ | 1159 V(kExportDeclaration, "Export declaration") \ |
| 1160 V(kExternalStringExpectedButNotFound, \ | 1160 V(kExternalStringExpectedButNotFound, \ |
| (...skipping 9577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10738 } else { | 10738 } else { |
| 10739 value &= ~(1 << bit_position); | 10739 value &= ~(1 << bit_position); |
| 10740 } | 10740 } |
| 10741 return value; | 10741 return value; |
| 10742 } | 10742 } |
| 10743 }; | 10743 }; |
| 10744 | 10744 |
| 10745 } } // namespace v8::internal | 10745 } } // namespace v8::internal |
| 10746 | 10746 |
| 10747 #endif // V8_OBJECTS_H_ | 10747 #endif // V8_OBJECTS_H_ |
| OLD | NEW |