| OLD | NEW | 
|---|
| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 97  *              bool direct_call) | 97  *              bool direct_call) | 
| 98  */ | 98  */ | 
| 99 | 99 | 
| 100 #define __ ACCESS_MASM(masm_) | 100 #define __ ACCESS_MASM(masm_) | 
| 101 | 101 | 
| 102 RegExpMacroAssemblerIA32::RegExpMacroAssemblerIA32( | 102 RegExpMacroAssemblerIA32::RegExpMacroAssemblerIA32( | 
| 103     Mode mode, | 103     Mode mode, | 
| 104     int registers_to_save, | 104     int registers_to_save, | 
| 105     Zone* zone) | 105     Zone* zone) | 
| 106     : NativeRegExpMacroAssembler(zone), | 106     : NativeRegExpMacroAssembler(zone), | 
| 107       masm_(new MacroAssembler(Isolate::Current(), NULL, kRegExpCodeSize)), | 107       masm_(new MacroAssembler(zone->isolate(), NULL, kRegExpCodeSize)), | 
| 108       mode_(mode), | 108       mode_(mode), | 
| 109       num_registers_(registers_to_save), | 109       num_registers_(registers_to_save), | 
| 110       num_saved_registers_(registers_to_save), | 110       num_saved_registers_(registers_to_save), | 
| 111       entry_label_(), | 111       entry_label_(), | 
| 112       start_label_(), | 112       start_label_(), | 
| 113       success_label_(), | 113       success_label_(), | 
| 114       backtrack_label_(), | 114       backtrack_label_(), | 
| 115       exit_label_() { | 115       exit_label_() { | 
| 116   ASSERT_EQ(0, registers_to_save % 2); | 116   ASSERT_EQ(0, registers_to_save % 2); | 
| 117   __ jmp(&entry_label_);   // We'll write the entry code later. | 117   __ jmp(&entry_label_);   // We'll write the entry code later. | 
| (...skipping 1203 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1321 } | 1321 } | 
| 1322 | 1322 | 
| 1323 | 1323 | 
| 1324 #undef __ | 1324 #undef __ | 
| 1325 | 1325 | 
| 1326 #endif  // V8_INTERPRETED_REGEXP | 1326 #endif  // V8_INTERPRETED_REGEXP | 
| 1327 | 1327 | 
| 1328 }}  // namespace v8::internal | 1328 }}  // namespace v8::internal | 
| 1329 | 1329 | 
| 1330 #endif  // V8_TARGET_ARCH_IA32 | 1330 #endif  // V8_TARGET_ARCH_IA32 | 
| OLD | NEW | 
|---|