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 1109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1120 V(kCompoundAssignmentToLookupSlot, "Compound assignment to lookup slot") \ | 1120 V(kCompoundAssignmentToLookupSlot, "Compound assignment to lookup slot") \ |
1121 V(kContextAllocatedArguments, "Context-allocated arguments") \ | 1121 V(kContextAllocatedArguments, "Context-allocated arguments") \ |
1122 V(kCopyBuffersOverlap, "Copy buffers overlap") \ | 1122 V(kCopyBuffersOverlap, "Copy buffers overlap") \ |
1123 V(kCouldNotGenerateZero, "Could not generate +0.0") \ | 1123 V(kCouldNotGenerateZero, "Could not generate +0.0") \ |
1124 V(kCouldNotGenerateNegativeZero, "Could not generate -0.0") \ | 1124 V(kCouldNotGenerateNegativeZero, "Could not generate -0.0") \ |
1125 V(kDebuggerIsActive, "Debugger is active") \ | 1125 V(kDebuggerIsActive, "Debugger is active") \ |
1126 V(kDebuggerStatement, "DebuggerStatement") \ | 1126 V(kDebuggerStatement, "DebuggerStatement") \ |
1127 V(kDeclarationInCatchContext, "Declaration in catch context") \ | 1127 V(kDeclarationInCatchContext, "Declaration in catch context") \ |
1128 V(kDeclarationInWithContext, "Declaration in with context") \ | 1128 V(kDeclarationInWithContext, "Declaration in with context") \ |
1129 V(kDefaultNaNModeNotSet, "Default NaN mode not set") \ | 1129 V(kDefaultNaNModeNotSet, "Default NaN mode not set") \ |
| 1130 V(kDefaultRoundingModeNotSet, "Default rounding mode not set") \ |
1130 V(kDeleteWithGlobalVariable, "Delete with global variable") \ | 1131 V(kDeleteWithGlobalVariable, "Delete with global variable") \ |
1131 V(kDeleteWithNonGlobalVariable, "Delete with non-global variable") \ | 1132 V(kDeleteWithNonGlobalVariable, "Delete with non-global variable") \ |
1132 V(kDestinationOfCopyNotAligned, "Destination of copy not aligned") \ | 1133 V(kDestinationOfCopyNotAligned, "Destination of copy not aligned") \ |
1133 V(kDontDeleteCellsCannotContainTheHole, \ | 1134 V(kDontDeleteCellsCannotContainTheHole, \ |
1134 "DontDelete cells can't contain the hole") \ | 1135 "DontDelete cells can't contain the hole") \ |
1135 V(kDoPushArgumentNotImplementedForDoubleType, \ | 1136 V(kDoPushArgumentNotImplementedForDoubleType, \ |
1136 "DoPushArgument not implemented for double type") \ | 1137 "DoPushArgument not implemented for double type") \ |
1137 V(kEliminatedBoundsCheckFailed, "Eliminated bounds check failed") \ | 1138 V(kEliminatedBoundsCheckFailed, "Eliminated bounds check failed") \ |
1138 V(kEmitLoadRegisterUnsupportedDoubleImmediate, \ | 1139 V(kEmitLoadRegisterUnsupportedDoubleImmediate, \ |
1139 "EmitLoadRegister: Unsupported double immediate") \ | 1140 "EmitLoadRegister: Unsupported double immediate") \ |
(...skipping 9866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11006 } else { | 11007 } else { |
11007 value &= ~(1 << bit_position); | 11008 value &= ~(1 << bit_position); |
11008 } | 11009 } |
11009 return value; | 11010 return value; |
11010 } | 11011 } |
11011 }; | 11012 }; |
11012 | 11013 |
11013 } } // namespace v8::internal | 11014 } } // namespace v8::internal |
11014 | 11015 |
11015 #endif // V8_OBJECTS_H_ | 11016 #endif // V8_OBJECTS_H_ |
OLD | NEW |