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

Side by Side Diff: src/regexp-delay.js

Issue 150018: Optimize %IsConstructCall() on IA-32. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 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
OLDNEW
1 // Copyright 2006-2009 the V8 project authors. All rights reserved. 1 // Copyright 2006-2009 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 %IgnoreAttributesAndSetProperty(object, 'multiline', multiline); 96 %IgnoreAttributesAndSetProperty(object, 'multiline', multiline);
97 %IgnoreAttributesAndSetProperty(object, 'lastIndex', 0); 97 %IgnoreAttributesAndSetProperty(object, 'lastIndex', 0);
98 } 98 }
99 99
100 // Call internal function to compile the pattern. 100 // Call internal function to compile the pattern.
101 %RegExpCompile(object, pattern, flags); 101 %RegExpCompile(object, pattern, flags);
102 } 102 }
103 103
104 104
105 function RegExpConstructor(pattern, flags) { 105 function RegExpConstructor(pattern, flags) {
106 if (%IsConstructCall()) { 106 if (%_IsConstructCall()) {
107 DoConstructRegExp(this, pattern, flags, true); 107 DoConstructRegExp(this, pattern, flags, true);
108 } else { 108 } else {
109 // RegExp : Called as function; see ECMA-262, section 15.10.3.1. 109 // RegExp : Called as function; see ECMA-262, section 15.10.3.1.
110 if (IS_REGEXP(pattern) && IS_UNDEFINED(flags)) { 110 if (IS_REGEXP(pattern) && IS_UNDEFINED(flags)) {
111 return pattern; 111 return pattern;
112 } 112 }
113 return new $RegExp(pattern, flags); 113 return new $RegExp(pattern, flags);
114 } 114 }
115 } 115 }
116 116
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 %DefineAccessor($RegExp, "$'", SETTER, NoOpSetter, DONT_ENUM | DONT_DELETE); 403 %DefineAccessor($RegExp, "$'", SETTER, NoOpSetter, DONT_ENUM | DONT_DELETE);
404 404
405 for (var i = 1; i < 10; ++i) { 405 for (var i = 1; i < 10; ++i) {
406 %DefineAccessor($RegExp, '$' + i, GETTER, RegExpMakeCaptureGetter(i), DONT_D ELETE); 406 %DefineAccessor($RegExp, '$' + i, GETTER, RegExpMakeCaptureGetter(i), DONT_D ELETE);
407 %DefineAccessor($RegExp, '$' + i, SETTER, NoOpSetter, DONT_DELETE); 407 %DefineAccessor($RegExp, '$' + i, SETTER, NoOpSetter, DONT_DELETE);
408 } 408 }
409 } 409 }
410 410
411 411
412 SetupRegExp(); 412 SetupRegExp();
OLDNEW
« no previous file with comments | « src/messages.js ('k') | src/string.js » ('j') | src/x64/codegen-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698