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

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

Issue 552186: ARM: Implement native substring copying. (Closed)
Patch Set: Changed order of tests to bail out earlier on short substrings. Created 10 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
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | src/arm/codegen-arm.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 p9 = 9, 243 p9 = 9,
244 p10 = 10, 244 p10 = 10,
245 p11 = 11, 245 p11 = 11,
246 p12 = 12, 246 p12 = 12,
247 p13 = 13, 247 p13 = 13,
248 p14 = 14, 248 p14 = 14,
249 p15 = 15 249 p15 = 15
250 }; 250 };
251 251
252 252
253 // Condition field in instructions 253 // Condition field in instructions.
254 enum Condition { 254 enum Condition {
255 eq = 0 << 28, // Z set equal. 255 eq = 0 << 28, // Z set equal.
256 ne = 1 << 28, // Z clear not equal. 256 ne = 1 << 28, // Z clear not equal.
257 nz = 1 << 28, // Z clear not zero. 257 nz = 1 << 28, // Z clear not zero.
258 cs = 2 << 28, // C set carry set. 258 cs = 2 << 28, // C set carry set.
259 hs = 2 << 28, // C set unsigned higher or same. 259 hs = 2 << 28, // C set unsigned higher or same.
260 cc = 3 << 28, // C clear carry clear. 260 cc = 3 << 28, // C clear carry clear.
261 lo = 3 << 28, // C clear unsigned lower. 261 lo = 3 << 28, // C clear unsigned lower.
262 mi = 4 << 28, // N set negative. 262 mi = 4 << 28, // N set negative.
263 pl = 5 << 28, // N clear positive or zero. 263 pl = 5 << 28, // N clear positive or zero.
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
1024 void RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data = 0); 1024 void RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data = 0);
1025 1025
1026 friend class RegExpMacroAssemblerARM; 1026 friend class RegExpMacroAssemblerARM;
1027 friend class RelocInfo; 1027 friend class RelocInfo;
1028 friend class CodePatcher; 1028 friend class CodePatcher;
1029 }; 1029 };
1030 1030
1031 } } // namespace v8::internal 1031 } } // namespace v8::internal
1032 1032
1033 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1033 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | src/arm/codegen-arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698