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

Side by Side Diff: src/arm/macro-assembler-arm.h

Issue 7860035: Merge bleeding edge up to 9192 into the GC branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 9 years, 3 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/arm/lithium-codegen-arm.cc ('k') | src/arm/macro-assembler-arm.cc » ('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 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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 void AllocateTwoByteConsString(Register result, 618 void AllocateTwoByteConsString(Register result,
619 Register length, 619 Register length,
620 Register scratch1, 620 Register scratch1,
621 Register scratch2, 621 Register scratch2,
622 Label* gc_required); 622 Label* gc_required);
623 void AllocateAsciiConsString(Register result, 623 void AllocateAsciiConsString(Register result,
624 Register length, 624 Register length,
625 Register scratch1, 625 Register scratch1,
626 Register scratch2, 626 Register scratch2,
627 Label* gc_required); 627 Label* gc_required);
628 void AllocateTwoByteSlicedString(Register result,
629 Register length,
630 Register scratch1,
631 Register scratch2,
632 Label* gc_required);
633 void AllocateAsciiSlicedString(Register result,
634 Register length,
635 Register scratch1,
636 Register scratch2,
637 Label* gc_required);
628 638
629 // Allocates a heap number or jumps to the gc_required label if the young 639 // Allocates a heap number or jumps to the gc_required label if the young
630 // space is full and a scavenge is needed. All registers are clobbered also 640 // space is full and a scavenge is needed. All registers are clobbered also
631 // when control continues at the gc_required label. 641 // when control continues at the gc_required label.
632 void AllocateHeapNumber(Register result, 642 void AllocateHeapNumber(Register result,
633 Register scratch1, 643 Register scratch1,
634 Register scratch2, 644 Register scratch2,
635 Register heap_number_map, 645 Register heap_number_map,
636 Label* gc_required); 646 Label* gc_required);
637 void AllocateHeapNumberWithValue(Register result, 647 void AllocateHeapNumberWithValue(Register result,
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
1243 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1253 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1244 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1254 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1245 #else 1255 #else
1246 #define ACCESS_MASM(masm) masm-> 1256 #define ACCESS_MASM(masm) masm->
1247 #endif 1257 #endif
1248 1258
1249 1259
1250 } } // namespace v8::internal 1260 } } // namespace v8::internal
1251 1261
1252 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1262 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/arm/macro-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698