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 141563013: Remove IsRegExpEquivalent. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 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/mips/full-codegen-mips.cc ('k') | src/runtime.h » ('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 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after
1185 V(kInlinedRuntimeFunctionFastAsciiArrayJoin, \ 1185 V(kInlinedRuntimeFunctionFastAsciiArrayJoin, \
1186 "Inlined runtime function: FastAsciiArrayJoin") \ 1186 "Inlined runtime function: FastAsciiArrayJoin") \
1187 V(kInlinedRuntimeFunctionGeneratorNext, \ 1187 V(kInlinedRuntimeFunctionGeneratorNext, \
1188 "Inlined runtime function: GeneratorNext") \ 1188 "Inlined runtime function: GeneratorNext") \
1189 V(kInlinedRuntimeFunctionGeneratorThrow, \ 1189 V(kInlinedRuntimeFunctionGeneratorThrow, \
1190 "Inlined runtime function: GeneratorThrow") \ 1190 "Inlined runtime function: GeneratorThrow") \
1191 V(kInlinedRuntimeFunctionGetFromCache, \ 1191 V(kInlinedRuntimeFunctionGetFromCache, \
1192 "Inlined runtime function: GetFromCache") \ 1192 "Inlined runtime function: GetFromCache") \
1193 V(kInlinedRuntimeFunctionIsNonNegativeSmi, \ 1193 V(kInlinedRuntimeFunctionIsNonNegativeSmi, \
1194 "Inlined runtime function: IsNonNegativeSmi") \ 1194 "Inlined runtime function: IsNonNegativeSmi") \
1195 V(kInlinedRuntimeFunctionIsRegExpEquivalent, \
1196 "Inlined runtime function: IsRegExpEquivalent") \
1197 V(kInlinedRuntimeFunctionIsStringWrapperSafeForDefaultValueOf, \ 1195 V(kInlinedRuntimeFunctionIsStringWrapperSafeForDefaultValueOf, \
1198 "Inlined runtime function: IsStringWrapperSafeForDefaultValueOf") \ 1196 "Inlined runtime function: IsStringWrapperSafeForDefaultValueOf") \
1199 V(kInliningBailedOut, "Inlining bailed out") \ 1197 V(kInliningBailedOut, "Inlining bailed out") \
1200 V(kInputGPRIsExpectedToHaveUpper32Cleared, \ 1198 V(kInputGPRIsExpectedToHaveUpper32Cleared, \
1201 "Input GPR is expected to have upper32 cleared") \ 1199 "Input GPR is expected to have upper32 cleared") \
1202 V(kInstanceofStubUnexpectedCallSiteCacheCheck, \ 1200 V(kInstanceofStubUnexpectedCallSiteCacheCheck, \
1203 "InstanceofStub unexpected call site cache (check)") \ 1201 "InstanceofStub unexpected call site cache (check)") \
1204 V(kInstanceofStubUnexpectedCallSiteCacheCmp1, \ 1202 V(kInstanceofStubUnexpectedCallSiteCacheCmp1, \
1205 "InstanceofStub unexpected call site cache (cmp 1)") \ 1203 "InstanceofStub unexpected call site cache (cmp 1)") \
1206 V(kInstanceofStubUnexpectedCallSiteCacheCmp2, \ 1204 V(kInstanceofStubUnexpectedCallSiteCacheCmp2, \
(...skipping 9564 matching lines...) Expand 10 before | Expand all | Expand 10 after
10771 } else { 10769 } else {
10772 value &= ~(1 << bit_position); 10770 value &= ~(1 << bit_position);
10773 } 10771 }
10774 return value; 10772 return value;
10775 } 10773 }
10776 }; 10774 };
10777 10775
10778 } } // namespace v8::internal 10776 } } // namespace v8::internal
10779 10777
10780 #endif // V8_OBJECTS_H_ 10778 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/mips/full-codegen-mips.cc ('k') | src/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698