Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: src/objects.h

Issue 233013005: Revert "ARM: Do not set FPSCR when converting to clamped uint8" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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") \
1131 V(kDeleteWithGlobalVariable, "Delete with global variable") \ 1130 V(kDeleteWithGlobalVariable, "Delete with global variable") \
1132 V(kDeleteWithNonGlobalVariable, "Delete with non-global variable") \ 1131 V(kDeleteWithNonGlobalVariable, "Delete with non-global variable") \
1133 V(kDestinationOfCopyNotAligned, "Destination of copy not aligned") \ 1132 V(kDestinationOfCopyNotAligned, "Destination of copy not aligned") \
1134 V(kDontDeleteCellsCannotContainTheHole, \ 1133 V(kDontDeleteCellsCannotContainTheHole, \
1135 "DontDelete cells can't contain the hole") \ 1134 "DontDelete cells can't contain the hole") \
1136 V(kDoPushArgumentNotImplementedForDoubleType, \ 1135 V(kDoPushArgumentNotImplementedForDoubleType, \
1137 "DoPushArgument not implemented for double type") \ 1136 "DoPushArgument not implemented for double type") \
1138 V(kEliminatedBoundsCheckFailed, "Eliminated bounds check failed") \ 1137 V(kEliminatedBoundsCheckFailed, "Eliminated bounds check failed") \
1139 V(kEmitLoadRegisterUnsupportedDoubleImmediate, \ 1138 V(kEmitLoadRegisterUnsupportedDoubleImmediate, \
1140 "EmitLoadRegister: Unsupported double immediate") \ 1139 "EmitLoadRegister: Unsupported double immediate") \
(...skipping 9870 matching lines...) Expand 10 before | Expand all | Expand 10 after
11011 } else { 11010 } else {
11012 value &= ~(1 << bit_position); 11011 value &= ~(1 << bit_position);
11013 } 11012 }
11014 return value; 11013 return value;
11015 } 11014 }
11016 }; 11015 };
11017 11016
11018 } } // namespace v8::internal 11017 } } // namespace v8::internal
11019 11018
11020 #endif // V8_OBJECTS_H_ 11019 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698