| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 981 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 992 Cmp(scratch1, Operand(new_space_start)); | 992 Cmp(scratch1, Operand(new_space_start)); |
| 993 B(lt, &no_memento_available); | 993 B(lt, &no_memento_available); |
| 994 | 994 |
| 995 Mov(scratch2, Operand(new_space_allocation_top)); | 995 Mov(scratch2, Operand(new_space_allocation_top)); |
| 996 Ldr(scratch2, MemOperand(scratch2)); | 996 Ldr(scratch2, MemOperand(scratch2)); |
| 997 Cmp(scratch1, scratch2); | 997 Cmp(scratch1, scratch2); |
| 998 B(gt, &no_memento_available); | 998 B(gt, &no_memento_available); |
| 999 | 999 |
| 1000 Ldr(scratch1, MemOperand(scratch1, -AllocationMemento::kSize)); | 1000 Ldr(scratch1, MemOperand(scratch1, -AllocationMemento::kSize)); |
| 1001 Cmp(scratch1, | 1001 Cmp(scratch1, |
| 1002 Operand(Handle<Map>(isolate()->heap()->allocation_memento_map()))); | 1002 Operand(isolate()->factory()->allocation_memento_map())); |
| 1003 | 1003 |
| 1004 Bind(&no_memento_available); | 1004 Bind(&no_memento_available); |
| 1005 } | 1005 } |
| 1006 | 1006 |
| 1007 | 1007 |
| 1008 void MacroAssembler::JumpToHandlerEntry(Register exception, | 1008 void MacroAssembler::JumpToHandlerEntry(Register exception, |
| 1009 Register object, | 1009 Register object, |
| 1010 Register state, | 1010 Register state, |
| 1011 Register scratch1, | 1011 Register scratch1, |
| 1012 Register scratch2) { | 1012 Register scratch2) { |
| (...skipping 3700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4713 } | 4713 } |
| 4714 } | 4714 } |
| 4715 | 4715 |
| 4716 | 4716 |
| 4717 #undef __ | 4717 #undef __ |
| 4718 | 4718 |
| 4719 | 4719 |
| 4720 } } // namespace v8::internal | 4720 } } // namespace v8::internal |
| 4721 | 4721 |
| 4722 #endif // V8_TARGET_ARCH_A64 | 4722 #endif // V8_TARGET_ARCH_A64 |
| OLD | NEW |