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 2007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2039 void Intrinsifier::OneByteString_equality(Assembler* assembler) { | 2040 void Intrinsifier::OneByteString_equality(Assembler* assembler) { |
2040 StringEquality(assembler, kOneByteStringCid); | 2041 StringEquality(assembler, kOneByteStringCid); |
2041 } | 2042 } |
2042 | 2043 |
2043 | 2044 |
2044 void Intrinsifier::TwoByteString_equality(Assembler* assembler) { | 2045 void Intrinsifier::TwoByteString_equality(Assembler* assembler) { |
2045 StringEquality(assembler, kTwoByteStringCid); | 2046 StringEquality(assembler, kTwoByteStringCid); |
2046 } | 2047 } |
2047 | 2048 |
2048 | 2049 |
| 2050 #ifndef USE_JSCRE |
| 2051 void Intrinsifier::JSRegExp_ExecuteMatch(Assembler* assembler) { |
| 2052 static const intptr_t kRegExpParamOffset = + 3 * kWordSize; |
| 2053 static const intptr_t kStringParamOffset = + 2 * kWordSize; |
| 2054 // const Smi& start_index is located at (+ 1 * kWordSize). |
| 2055 |
| 2056 // Register assignments are as follows: |
| 2057 // EAX: The appropriate specialized matcher function. |
| 2058 // EBX: The regexp object. |
| 2059 // EDI: Temp, Pointer to the function's code which we then tail-call. |
| 2060 |
| 2061 __ movl(EBX, Address(ESP, kRegExpParamOffset)); |
| 2062 __ movl(EDI, Address(ESP, kStringParamOffset)); |
| 2063 |
| 2064 |
| 2065 // Load the specialized function pointer into EAX. Leverage the fact the |
| 2066 // string CIDs as well as stored function pointers are in sequence. |
| 2067 |
| 2068 __ LoadClassId(EDI, EDI); |
| 2069 __ SubImmediate(EDI, Immediate(kOneByteStringCid)); |
| 2070 __ movl(EAX, FieldAddress(EBX, EDI, TIMES_4, |
| 2071 JSRegExp::function_offset(kOneByteStringCid))); |
| 2072 |
| 2073 // Registers have been set up for the lazy compile stub at this point. |
| 2074 // It expects the function in EAX, the argument descriptor in EDX, and |
| 2075 // IC-Data in ECX. Explicitly null out IC-Data to ensure its validity. |
| 2076 |
| 2077 static const intptr_t arg_count = RegExpMacroAssembler::kParamCount; |
| 2078 __ LoadObject(EDX, Array::Handle(ArgumentsDescriptor::New(arg_count))); |
| 2079 __ xorl(ECX, ECX); |
| 2080 |
| 2081 // Tail-call the function. |
| 2082 __ movl(EDI, FieldAddress(EAX, Function::instructions_offset())); |
| 2083 __ addl(EDI, Immediate(Instructions::HeaderSize() - kHeapObjectTag)); |
| 2084 __ jmp(EDI); |
| 2085 } |
| 2086 #endif |
| 2087 |
| 2088 |
2049 // On stack: user tag (+1), return-address (+0). | 2089 // On stack: user tag (+1), return-address (+0). |
2050 void Intrinsifier::UserTag_makeCurrent(Assembler* assembler) { | 2090 void Intrinsifier::UserTag_makeCurrent(Assembler* assembler) { |
2051 Isolate* isolate = Isolate::Current(); | 2091 Isolate* isolate = Isolate::Current(); |
2052 const Address current_tag_addr = | 2092 const Address current_tag_addr = |
2053 Address::Absolute(reinterpret_cast<uword>(isolate) + | 2093 Address::Absolute(reinterpret_cast<uword>(isolate) + |
2054 Isolate::current_tag_offset()); | 2094 Isolate::current_tag_offset()); |
2055 const Address user_tag_addr = | 2095 const Address user_tag_addr = |
2056 Address::Absolute(reinterpret_cast<uword>(isolate) + | 2096 Address::Absolute(reinterpret_cast<uword>(isolate) + |
2057 Isolate::user_tag_offset()); | 2097 Isolate::user_tag_offset()); |
2058 // EAX: Current user tag. | 2098 // EAX: Current user tag. |
(...skipping 28 matching lines...) Expand all Loading... |
2087 Isolate::current_tag_offset()); | 2127 Isolate::current_tag_offset()); |
2088 // Set return value to Isolate::current_tag_. | 2128 // Set return value to Isolate::current_tag_. |
2089 __ movl(EAX, current_tag_addr); | 2129 __ movl(EAX, current_tag_addr); |
2090 __ ret(); | 2130 __ ret(); |
2091 } | 2131 } |
2092 | 2132 |
2093 #undef __ | 2133 #undef __ |
2094 } // namespace dart | 2134 } // namespace dart |
2095 | 2135 |
2096 #endif // defined TARGET_ARCH_IA32 | 2136 #endif // defined TARGET_ARCH_IA32 |
OLD | NEW |