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

Side by Side Diff: src/objects.h

Issue 201573011: Fix false x64 argument index assertion (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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 | « no previous file | src/x64/lithium-codegen-x64.cc » ('j') | src/x64/lithium-codegen-x64.cc » ('J')
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 1210 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 V(kInstanceofStubUnexpectedCallSiteCacheCheck, \ 1221 V(kInstanceofStubUnexpectedCallSiteCacheCheck, \
1222 "InstanceofStub unexpected call site cache (check)") \ 1222 "InstanceofStub unexpected call site cache (check)") \
1223 V(kInstanceofStubUnexpectedCallSiteCacheCmp1, \ 1223 V(kInstanceofStubUnexpectedCallSiteCacheCmp1, \
1224 "InstanceofStub unexpected call site cache (cmp 1)") \ 1224 "InstanceofStub unexpected call site cache (cmp 1)") \
1225 V(kInstanceofStubUnexpectedCallSiteCacheCmp2, \ 1225 V(kInstanceofStubUnexpectedCallSiteCacheCmp2, \
1226 "InstanceofStub unexpected call site cache (cmp 2)") \ 1226 "InstanceofStub unexpected call site cache (cmp 2)") \
1227 V(kInstanceofStubUnexpectedCallSiteCacheMov, \ 1227 V(kInstanceofStubUnexpectedCallSiteCacheMov, \
1228 "InstanceofStub unexpected call site cache (mov)") \ 1228 "InstanceofStub unexpected call site cache (mov)") \
1229 V(kInteger32ToSmiFieldWritingToNonSmiLocation, \ 1229 V(kInteger32ToSmiFieldWritingToNonSmiLocation, \
1230 "Integer32ToSmiField writing to non-smi location") \ 1230 "Integer32ToSmiField writing to non-smi location") \
1231 V(kInvalidArgumentIndex, "Argument index exceeds argument count") \
1231 V(kInvalidCaptureReferenced, "Invalid capture referenced") \ 1232 V(kInvalidCaptureReferenced, "Invalid capture referenced") \
1232 V(kInvalidElementsKindForInternalArrayOrInternalPackedArray, \ 1233 V(kInvalidElementsKindForInternalArrayOrInternalPackedArray, \
1233 "Invalid ElementsKind for InternalArray or InternalPackedArray") \ 1234 "Invalid ElementsKind for InternalArray or InternalPackedArray") \
1234 V(kInvalidFullCodegenState, "invalid full-codegen state") \ 1235 V(kInvalidFullCodegenState, "invalid full-codegen state") \
1235 V(kInvalidHandleScopeLevel, "Invalid HandleScope level") \ 1236 V(kInvalidHandleScopeLevel, "Invalid HandleScope level") \
1236 V(kInvalidLeftHandSideInAssignment, "Invalid left-hand side in assignment") \ 1237 V(kInvalidLeftHandSideInAssignment, "Invalid left-hand side in assignment") \
1237 V(kInvalidLhsInCompoundAssignment, "Invalid lhs in compound assignment") \ 1238 V(kInvalidLhsInCompoundAssignment, "Invalid lhs in compound assignment") \
1238 V(kInvalidLhsInCountOperation, "Invalid lhs in count operation") \ 1239 V(kInvalidLhsInCountOperation, "Invalid lhs in count operation") \
1239 V(kInvalidMinLength, "Invalid min_length") \ 1240 V(kInvalidMinLength, "Invalid min_length") \
1240 V(kJSGlobalObjectNativeContextShouldBeANativeContext, \ 1241 V(kJSGlobalObjectNativeContextShouldBeANativeContext, \
(...skipping 9550 matching lines...) Expand 10 before | Expand all | Expand 10 after
10791 } else { 10792 } else {
10792 value &= ~(1 << bit_position); 10793 value &= ~(1 << bit_position);
10793 } 10794 }
10794 return value; 10795 return value;
10795 } 10796 }
10796 }; 10797 };
10797 10798
10798 } } // namespace v8::internal 10799 } } // namespace v8::internal
10799 10800
10800 #endif // V8_OBJECTS_H_ 10801 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/lithium-codegen-x64.cc » ('j') | src/x64/lithium-codegen-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698