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

Side by Side Diff: src/objects.h

Issue 388233002: Version 3.27.34.6 (merged r22029) (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.27
Patch Set: update test expectations Created 6 years, 5 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/compiler.cc ('k') | src/version.cc » ('j') | 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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/assert-scope.h" 9 #include "src/assert-scope.h"
10 #include "src/builtins.h" 10 #include "src/builtins.h"
(...skipping 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after
1029 "Call to a JavaScript runtime function") \ 1029 "Call to a JavaScript runtime function") \
1030 V(kCannotTranslatePositionInChangedArea, \ 1030 V(kCannotTranslatePositionInChangedArea, \
1031 "Cannot translate position in changed area") \ 1031 "Cannot translate position in changed area") \
1032 V(kCodeGenerationFailed, "Code generation failed") \ 1032 V(kCodeGenerationFailed, "Code generation failed") \
1033 V(kCodeObjectNotProperlyPatched, "Code object not properly patched") \ 1033 V(kCodeObjectNotProperlyPatched, "Code object not properly patched") \
1034 V(kCompoundAssignmentToLookupSlot, "Compound assignment to lookup slot") \ 1034 V(kCompoundAssignmentToLookupSlot, "Compound assignment to lookup slot") \
1035 V(kContextAllocatedArguments, "Context-allocated arguments") \ 1035 V(kContextAllocatedArguments, "Context-allocated arguments") \
1036 V(kCopyBuffersOverlap, "Copy buffers overlap") \ 1036 V(kCopyBuffersOverlap, "Copy buffers overlap") \
1037 V(kCouldNotGenerateZero, "Could not generate +0.0") \ 1037 V(kCouldNotGenerateZero, "Could not generate +0.0") \
1038 V(kCouldNotGenerateNegativeZero, "Could not generate -0.0") \ 1038 V(kCouldNotGenerateNegativeZero, "Could not generate -0.0") \
1039 V(kDebuggerIsActive, "Debugger is active") \ 1039 V(kDebuggerHasBreakPoints, "Debugger has break points") \
1040 V(kDebuggerStatement, "DebuggerStatement") \ 1040 V(kDebuggerStatement, "DebuggerStatement") \
1041 V(kDeclarationInCatchContext, "Declaration in catch context") \ 1041 V(kDeclarationInCatchContext, "Declaration in catch context") \
1042 V(kDeclarationInWithContext, "Declaration in with context") \ 1042 V(kDeclarationInWithContext, "Declaration in with context") \
1043 V(kDefaultNaNModeNotSet, "Default NaN mode not set") \ 1043 V(kDefaultNaNModeNotSet, "Default NaN mode not set") \
1044 V(kDeleteWithGlobalVariable, "Delete with global variable") \ 1044 V(kDeleteWithGlobalVariable, "Delete with global variable") \
1045 V(kDeleteWithNonGlobalVariable, "Delete with non-global variable") \ 1045 V(kDeleteWithNonGlobalVariable, "Delete with non-global variable") \
1046 V(kDestinationOfCopyNotAligned, "Destination of copy not aligned") \ 1046 V(kDestinationOfCopyNotAligned, "Destination of copy not aligned") \
1047 V(kDontDeleteCellsCannotContainTheHole, \ 1047 V(kDontDeleteCellsCannotContainTheHole, \
1048 "DontDelete cells can't contain the hole") \ 1048 "DontDelete cells can't contain the hole") \
1049 V(kDoPushArgumentNotImplementedForDoubleType, \ 1049 V(kDoPushArgumentNotImplementedForDoubleType, \
(...skipping 10198 matching lines...) Expand 10 before | Expand all | Expand 10 after
11248 } else { 11248 } else {
11249 value &= ~(1 << bit_position); 11249 value &= ~(1 << bit_position);
11250 } 11250 }
11251 return value; 11251 return value;
11252 } 11252 }
11253 }; 11253 };
11254 11254
11255 } } // namespace v8::internal 11255 } } // namespace v8::internal
11256 11256
11257 #endif // V8_OBJECTS_H_ 11257 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698