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

Side by Side Diff: src/objects.h

Issue 22807003: Fix regressions triggered by map invalidation during graph creation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comments Created 7 years, 4 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/objects.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 // 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 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 V(kAssignmentToLOOKUPVariable, "assignment to LOOKUP variable") \ 1069 V(kAssignmentToLOOKUPVariable, "assignment to LOOKUP variable") \
1070 V(kAssignmentToParameterFunctionUsesArgumentsObject, \ 1070 V(kAssignmentToParameterFunctionUsesArgumentsObject, \
1071 "assignment to parameter, function uses arguments object") \ 1071 "assignment to parameter, function uses arguments object") \
1072 V(kAssignmentToParameterInArgumentsObject, \ 1072 V(kAssignmentToParameterInArgumentsObject, \
1073 "assignment to parameter in arguments object") \ 1073 "assignment to parameter in arguments object") \
1074 V(kAttemptToUseUndefinedCache, "Attempt to use undefined cache") \ 1074 V(kAttemptToUseUndefinedCache, "Attempt to use undefined cache") \
1075 V(kBadValueContextForArgumentsObjectValue, \ 1075 V(kBadValueContextForArgumentsObjectValue, \
1076 "bad value context for arguments object value") \ 1076 "bad value context for arguments object value") \
1077 V(kBadValueContextForArgumentsValue, \ 1077 V(kBadValueContextForArgumentsValue, \
1078 "bad value context for arguments value") \ 1078 "bad value context for arguments value") \
1079 V(kBailedOutDueToDependentMap, "bailed out due to dependent map") \ 1079 V(kBailedOutDueToDependencyChange, "bailed out due to dependency change") \
1080 V(kBailoutWasNotPrepared, "bailout was not prepared") \ 1080 V(kBailoutWasNotPrepared, "bailout was not prepared") \
1081 V(kBinaryStubGenerateFloatingPointCode, \ 1081 V(kBinaryStubGenerateFloatingPointCode, \
1082 "BinaryStub_GenerateFloatingPointCode") \ 1082 "BinaryStub_GenerateFloatingPointCode") \
1083 V(kBothRegistersWereSmisInSelectNonSmi, \ 1083 V(kBothRegistersWereSmisInSelectNonSmi, \
1084 "Both registers were smis in SelectNonSmi") \ 1084 "Both registers were smis in SelectNonSmi") \
1085 V(kCallToAJavaScriptRuntimeFunction, \ 1085 V(kCallToAJavaScriptRuntimeFunction, \
1086 "call to a JavaScript runtime function") \ 1086 "call to a JavaScript runtime function") \
1087 V(kCannotTranslatePositionInChangedArea, \ 1087 V(kCannotTranslatePositionInChangedArea, \
1088 "Cannot translate position in changed area") \ 1088 "Cannot translate position in changed area") \
1089 V(kCodeGenerationFailed, "code generation failed") \ 1089 V(kCodeGenerationFailed, "code generation failed") \
(...skipping 9081 matching lines...) Expand 10 before | Expand all | Expand 10 after
10171 } else { 10171 } else {
10172 value &= ~(1 << bit_position); 10172 value &= ~(1 << bit_position);
10173 } 10173 }
10174 return value; 10174 return value;
10175 } 10175 }
10176 }; 10176 };
10177 10177
10178 } } // namespace v8::internal 10178 } } // namespace v8::internal
10179 10179
10180 #endif // V8_OBJECTS_H_ 10180 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698