| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 4274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4285 masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(); | 4285 masm->isolate()->builtins()->ArgumentsAdaptorTrampoline(); |
| 4286 __ jmp(adaptor, RelocInfo::CODE_TARGET); | 4286 __ jmp(adaptor, RelocInfo::CODE_TARGET); |
| 4287 } | 4287 } |
| 4288 | 4288 |
| 4289 | 4289 |
| 4290 bool CEntryStub::NeedsImmovableCode() { | 4290 bool CEntryStub::NeedsImmovableCode() { |
| 4291 return false; | 4291 return false; |
| 4292 } | 4292 } |
| 4293 | 4293 |
| 4294 | 4294 |
| 4295 bool CEntryStub::CompilingCallsToThisStubIsGCSafe() { |
| 4296 return !save_doubles_ && result_size_ == 1; |
| 4297 } |
| 4298 |
| 4299 |
| 4300 void CodeStub::GenerateStubsAheadOfTime() { |
| 4301 } |
| 4302 |
| 4303 |
| 4295 void CEntryStub::GenerateThrowTOS(MacroAssembler* masm) { | 4304 void CEntryStub::GenerateThrowTOS(MacroAssembler* masm) { |
| 4296 __ Throw(eax); | 4305 __ Throw(eax); |
| 4297 } | 4306 } |
| 4298 | 4307 |
| 4299 | 4308 |
| 4300 void CEntryStub::GenerateCore(MacroAssembler* masm, | 4309 void CEntryStub::GenerateCore(MacroAssembler* masm, |
| 4301 Label* throw_normal_exception, | 4310 Label* throw_normal_exception, |
| 4302 Label* throw_termination_exception, | 4311 Label* throw_termination_exception, |
| 4303 Label* throw_out_of_memory_exception, | 4312 Label* throw_out_of_memory_exception, |
| 4304 bool do_gc, | 4313 bool do_gc, |
| (...skipping 2213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6518 __ Drop(1); | 6527 __ Drop(1); |
| 6519 __ ret(2 * kPointerSize); | 6528 __ ret(2 * kPointerSize); |
| 6520 } | 6529 } |
| 6521 | 6530 |
| 6522 | 6531 |
| 6523 #undef __ | 6532 #undef __ |
| 6524 | 6533 |
| 6525 } } // namespace v8::internal | 6534 } } // namespace v8::internal |
| 6526 | 6535 |
| 6527 #endif // V8_TARGET_ARCH_IA32 | 6536 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |