OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // The intrinsic code below is executed before a method has built its frame. | 5 // The intrinsic code below is executed before a method has built its frame. |
6 // The return address is on the stack and the arguments below it. | 6 // The return address is on the stack and the arguments below it. |
7 // Registers EDX (arguments descriptor) and ECX (function) must be preserved. | 7 // Registers EDX (arguments descriptor) and ECX (function) must be preserved. |
8 // Each intrinsification method returns true if the corresponding | 8 // Each intrinsification method returns true if the corresponding |
9 // Dart method was intrinsified. | 9 // Dart method was intrinsified. |
10 | 10 |
11 #include "vm/globals.h" // Needed here to get TARGET_ARCH_IA32. | 11 #include "vm/globals.h" // Needed here to get TARGET_ARCH_IA32. |
12 #if defined(TARGET_ARCH_IA32) | 12 #if defined(TARGET_ARCH_IA32) |
13 | 13 |
14 #include "vm/intrinsifier.h" | 14 #include "vm/intrinsifier.h" |
15 | 15 |
16 #include "vm/assembler.h" | 16 #include "vm/assembler.h" |
| 17 #include "vm/dart_entry.h" |
17 #include "vm/flow_graph_compiler.h" | 18 #include "vm/flow_graph_compiler.h" |
18 #include "vm/object.h" | 19 #include "vm/object.h" |
19 #include "vm/object_store.h" | 20 #include "vm/object_store.h" |
20 #include "vm/os.h" | 21 #include "vm/os.h" |
21 #include "vm/stub_code.h" | 22 #include "vm/regexp_assembler.h" |
22 #include "vm/symbols.h" | 23 #include "vm/symbols.h" |
23 | 24 |
24 namespace dart { | 25 namespace dart { |
25 | 26 |
26 DECLARE_FLAG(bool, enable_type_checks); | 27 DECLARE_FLAG(bool, enable_type_checks); |
27 | 28 |
28 | 29 |
29 #define __ assembler-> | 30 #define __ assembler-> |
30 | 31 |
31 | 32 |
(...skipping 2013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2045 void Intrinsifier::OneByteString_equality(Assembler* assembler) { | 2046 void Intrinsifier::OneByteString_equality(Assembler* assembler) { |
2046 StringEquality(assembler, kOneByteStringCid); | 2047 StringEquality(assembler, kOneByteStringCid); |
2047 } | 2048 } |
2048 | 2049 |
2049 | 2050 |
2050 void Intrinsifier::TwoByteString_equality(Assembler* assembler) { | 2051 void Intrinsifier::TwoByteString_equality(Assembler* assembler) { |
2051 StringEquality(assembler, kTwoByteStringCid); | 2052 StringEquality(assembler, kTwoByteStringCid); |
2052 } | 2053 } |
2053 | 2054 |
2054 | 2055 |
| 2056 void Intrinsifier::JSRegExp_ExecuteMatch(Assembler* assembler) { |
| 2057 static const intptr_t kRegExpParamOffset = + 3 * kWordSize; |
| 2058 static const intptr_t kStringParamOffset = + 2 * kWordSize; |
| 2059 // const Smi& start_index is located at (+ 1 * kWordSize). |
| 2060 |
| 2061 // Register assignments are as follows: |
| 2062 // EAX: The appropriate specialized matcher function. |
| 2063 // EBX: The regexp object. |
| 2064 // EDI: Temp, Pointer to the function's code which we then tail-call. |
| 2065 |
| 2066 __ movl(EBX, Address(ESP, kRegExpParamOffset)); |
| 2067 __ movl(EDI, Address(ESP, kStringParamOffset)); |
| 2068 |
| 2069 |
| 2070 // Load the specialized function pointer into EAX. Leverage the fact the |
| 2071 // string CIDs as well as stored function pointers are in sequence. |
| 2072 |
| 2073 __ LoadClassId(EDI, EDI); |
| 2074 __ SubImmediate(EDI, Immediate(kOneByteStringCid)); |
| 2075 __ movl(EAX, FieldAddress(EBX, EDI, TIMES_4, |
| 2076 JSRegExp::function_offset(kOneByteStringCid))); |
| 2077 |
| 2078 // Registers have been set up for the lazy compile stub at this point. |
| 2079 // It expects the function in EAX, the argument descriptor in EDX, and |
| 2080 // IC-Data in ECX. Explicitly null out IC-Data to ensure its validity. |
| 2081 |
| 2082 static const intptr_t arg_count = RegExpMacroAssembler::kParamCount; |
| 2083 __ LoadObject(EDX, Array::Handle(ArgumentsDescriptor::New(arg_count))); |
| 2084 __ xorl(ECX, ECX); |
| 2085 |
| 2086 // Tail-call the function. |
| 2087 __ movl(EDI, FieldAddress(EAX, Function::instructions_offset())); |
| 2088 __ addl(EDI, Immediate(Instructions::HeaderSize() - kHeapObjectTag)); |
| 2089 __ jmp(EDI); |
| 2090 } |
| 2091 |
| 2092 |
2055 // On stack: user tag (+1), return-address (+0). | 2093 // On stack: user tag (+1), return-address (+0). |
2056 void Intrinsifier::UserTag_makeCurrent(Assembler* assembler) { | 2094 void Intrinsifier::UserTag_makeCurrent(Assembler* assembler) { |
2057 Isolate* isolate = Isolate::Current(); | 2095 Isolate* isolate = Isolate::Current(); |
2058 const Address current_tag_addr = | 2096 const Address current_tag_addr = |
2059 Address::Absolute(reinterpret_cast<uword>(isolate) + | 2097 Address::Absolute(reinterpret_cast<uword>(isolate) + |
2060 Isolate::current_tag_offset()); | 2098 Isolate::current_tag_offset()); |
2061 const Address user_tag_addr = | 2099 const Address user_tag_addr = |
2062 Address::Absolute(reinterpret_cast<uword>(isolate) + | 2100 Address::Absolute(reinterpret_cast<uword>(isolate) + |
2063 Isolate::user_tag_offset()); | 2101 Isolate::user_tag_offset()); |
2064 // EAX: Current user tag. | 2102 // EAX: Current user tag. |
(...skipping 28 matching lines...) Expand all Loading... |
2093 Isolate::current_tag_offset()); | 2131 Isolate::current_tag_offset()); |
2094 // Set return value to Isolate::current_tag_. | 2132 // Set return value to Isolate::current_tag_. |
2095 __ movl(EAX, current_tag_addr); | 2133 __ movl(EAX, current_tag_addr); |
2096 __ ret(); | 2134 __ ret(); |
2097 } | 2135 } |
2098 | 2136 |
2099 #undef __ | 2137 #undef __ |
2100 } // namespace dart | 2138 } // namespace dart |
2101 | 2139 |
2102 #endif // defined TARGET_ARCH_IA32 | 2140 #endif // defined TARGET_ARCH_IA32 |
OLD | NEW |