Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(339)

Side by Side Diff: src/a64/macro-assembler-a64.cc

Issue 142693005: A64: Synchronize with r16918. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/a64/lithium-codegen-a64.cc ('k') | src/api.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/a64/lithium-codegen-a64.cc ('k') | src/api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698