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

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

Issue 7835025: MIPS: port Generated code for substring slices in x64 and arm. (Closed)
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
« no previous file with comments | « src/mips/code-stubs-mips.cc ('k') | src/mips/macro-assembler-mips.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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 void AllocateTwoByteConsString(Register result, 355 void AllocateTwoByteConsString(Register result,
356 Register length, 356 Register length,
357 Register scratch1, 357 Register scratch1,
358 Register scratch2, 358 Register scratch2,
359 Label* gc_required); 359 Label* gc_required);
360 void AllocateAsciiConsString(Register result, 360 void AllocateAsciiConsString(Register result,
361 Register length, 361 Register length,
362 Register scratch1, 362 Register scratch1,
363 Register scratch2, 363 Register scratch2,
364 Label* gc_required); 364 Label* gc_required);
365 void AllocateTwoByteSlicedString(Register result,
366 Register length,
367 Register scratch1,
368 Register scratch2,
369 Label* gc_required);
370 void AllocateAsciiSlicedString(Register result,
371 Register length,
372 Register scratch1,
373 Register scratch2,
374 Label* gc_required);
365 375
366 // Allocates a heap number or jumps to the gc_required label if the young 376 // Allocates a heap number or jumps to the gc_required label if the young
367 // space is full and a scavenge is needed. All registers are clobbered also 377 // space is full and a scavenge is needed. All registers are clobbered also
368 // when control continues at the gc_required label. 378 // when control continues at the gc_required label.
369 void AllocateHeapNumber(Register result, 379 void AllocateHeapNumber(Register result,
370 Register scratch1, 380 Register scratch1,
371 Register scratch2, 381 Register scratch2,
372 Register heap_number_map, 382 Register heap_number_map,
373 Label* gc_required); 383 Label* gc_required);
374 void AllocateHeapNumberWithValue(Register result, 384 void AllocateHeapNumberWithValue(Register result,
(...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after
1216 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) 1226 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
1217 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1227 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1218 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1228 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1219 #else 1229 #else
1220 #define ACCESS_MASM(masm) masm-> 1230 #define ACCESS_MASM(masm) masm->
1221 #endif 1231 #endif
1222 1232
1223 } } // namespace v8::internal 1233 } } // namespace v8::internal
1224 1234
1225 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1235 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/code-stubs-mips.cc ('k') | src/mips/macro-assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698