OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library native; | 5 library native; |
6 | 6 |
7 import 'dart:uri'; | 7 import 'dart:uri'; |
8 import 'dart2jslib.dart' hide SourceString; | 8 import 'dart2jslib.dart' hide SourceString; |
9 import 'elements/elements.dart'; | 9 import 'elements/elements.dart'; |
10 import 'js_backend/js_backend.dart'; | 10 import 'js_backend/js_backend.dart'; |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 ClassElement cls, | 168 ClassElement cls, |
169 NativeEmitter nativeEmitter) { | 169 NativeEmitter nativeEmitter) { |
170 List<ClassElement> subtypes = nativeEmitter.subtypes[cls]; | 170 List<ClassElement> subtypes = nativeEmitter.subtypes[cls]; |
171 if (subtypes == null) return false; | 171 if (subtypes == null) return false; |
172 for (ClassElement subtype in subtypes) { | 172 for (ClassElement subtype in subtypes) { |
173 if (subtype.lookupLocalMember(element.name) != null) return true; | 173 if (subtype.lookupLocalMember(element.name) != null) return true; |
174 } | 174 } |
175 return false; | 175 return false; |
176 } | 176 } |
177 | 177 |
| 178 final RegExp nativeRedirectionRegExp = new RegExp(r'^[a-zA-Z][a-zA-Z_$0-9]*$'); |
| 179 |
178 void handleSsaNative(SsaBuilder builder, Expression nativeBody) { | 180 void handleSsaNative(SsaBuilder builder, Expression nativeBody) { |
179 Compiler compiler = builder.compiler; | 181 Compiler compiler = builder.compiler; |
180 FunctionElement element = builder.work.element; | 182 FunctionElement element = builder.work.element; |
181 element.setNative(); | 183 element.setNative(); |
182 NativeEmitter nativeEmitter = builder.emitter.nativeEmitter; | 184 NativeEmitter nativeEmitter = builder.emitter.nativeEmitter; |
183 // If what we're compiling is a getter named 'typeName' and the native | 185 // If what we're compiling is a getter named 'typeName' and the native |
184 // class is named 'DOMType', we generate a call to the typeNameOf | 186 // class is named 'DOMType', we generate a call to the typeNameOf |
185 // function attached on the isolate. | 187 // function attached on the isolate. |
186 // The DOM classes assume that their 'typeName' property, which is | 188 // The DOM classes assume that their 'typeName' property, which is |
187 // not a JS property on the DOM types, returns the type name. | 189 // not a JS property on the DOM types, returns the type name. |
(...skipping 16 matching lines...) Expand all Loading... |
204 Element helper = builder.interceptors.getClosureConverter(); | 206 Element helper = builder.interceptors.getClosureConverter(); |
205 builder.pushInvokeHelper2(helper, local, arity); | 207 builder.pushInvokeHelper2(helper, local, arity); |
206 HInstruction closure = builder.pop(); | 208 HInstruction closure = builder.pop(); |
207 return closure; | 209 return closure; |
208 } | 210 } |
209 | 211 |
210 // Check which pattern this native method follows: | 212 // Check which pattern this native method follows: |
211 // 1) foo() native; hasBody = false, isRedirecting = false | 213 // 1) foo() native; hasBody = false, isRedirecting = false |
212 // 2) foo() native "bar"; hasBody = false, isRedirecting = true | 214 // 2) foo() native "bar"; hasBody = false, isRedirecting = true |
213 // 3) foo() native "return 42"; hasBody = true, isRedirecting = false | 215 // 3) foo() native "return 42"; hasBody = true, isRedirecting = false |
214 RegExp nativeRedirectionRegExp = const RegExp(r'^[a-zA-Z][a-zA-Z_$0-9]*$'); | |
215 bool hasBody = false; | 216 bool hasBody = false; |
216 bool isRedirecting = false; | 217 bool isRedirecting = false; |
217 String nativeMethodName = element.name.slowToString(); | 218 String nativeMethodName = element.name.slowToString(); |
218 if (nativeBody != null) { | 219 if (nativeBody != null) { |
219 LiteralString jsCode = nativeBody.asLiteralString(); | 220 LiteralString jsCode = nativeBody.asLiteralString(); |
220 String str = jsCode.dartString.slowToString(); | 221 String str = jsCode.dartString.slowToString(); |
221 if (nativeRedirectionRegExp.hasMatch(str)) { | 222 if (nativeRedirectionRegExp.hasMatch(str)) { |
222 nativeMethodName = str; | 223 nativeMethodName = str; |
223 isRedirecting = true; | 224 isRedirecting = true; |
224 nativeEmitter.addRedirectingMethod(element, nativeMethodName); | 225 nativeEmitter.addRedirectingMethod(element, nativeMethodName); |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 String parameters) { | 332 String parameters) { |
332 buffer.add(" if (Object.getPrototypeOf(this).hasOwnProperty"); | 333 buffer.add(" if (Object.getPrototypeOf(this).hasOwnProperty"); |
333 buffer.add("('$methodName')) {\n"); | 334 buffer.add("('$methodName')) {\n"); |
334 buffer.add(" $code"); | 335 buffer.add(" $code"); |
335 buffer.add(" } else {\n"); | 336 buffer.add(" } else {\n"); |
336 buffer.add(" return Object.prototype.$methodName.call(this"); | 337 buffer.add(" return Object.prototype.$methodName.call(this"); |
337 buffer.add(parameters == '' ? '' : ', $parameters'); | 338 buffer.add(parameters == '' ? '' : ', $parameters'); |
338 buffer.add(");\n"); | 339 buffer.add(");\n"); |
339 buffer.add(" }\n"); | 340 buffer.add(" }\n"); |
340 } | 341 } |
OLD | NEW |