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

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

Issue 17895002: The check for internalized strings relied on the fact that we had less (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: More comments Created 7 years, 5 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/ic-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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
1289 Register scratch1, 1289 Register scratch1,
1290 Register scratch2, 1290 Register scratch2,
1291 Label* failure); 1291 Label* failure);
1292 1292
1293 // Check if instance type is sequential ASCII string and jump to label if 1293 // Check if instance type is sequential ASCII string and jump to label if
1294 // it is not. 1294 // it is not.
1295 void JumpIfInstanceTypeIsNotSequentialAscii(Register type, 1295 void JumpIfInstanceTypeIsNotSequentialAscii(Register type,
1296 Register scratch, 1296 Register scratch,
1297 Label* failure); 1297 Label* failure);
1298 1298
1299 void JumpIfNotUniqueName(Register reg, Label* not_unique_name);
1299 1300
1300 // --------------------------------------------------------------------------- 1301 // ---------------------------------------------------------------------------
1301 // Patching helpers. 1302 // Patching helpers.
1302 1303
1303 // Get the location of a relocated constant (its address in the constant pool) 1304 // Get the location of a relocated constant (its address in the constant pool)
1304 // from its load site. 1305 // from its load site.
1305 void GetRelocatedValueLocation(Register ldr_location, 1306 void GetRelocatedValueLocation(Register ldr_location,
1306 Register result); 1307 Register result);
1307 1308
1308 1309
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
1449 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1450 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1450 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1451 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1451 #else 1452 #else
1452 #define ACCESS_MASM(masm) masm-> 1453 #define ACCESS_MASM(masm) masm->
1453 #endif 1454 #endif
1454 1455
1455 1456
1456 } } // namespace v8::internal 1457 } } // namespace v8::internal
1457 1458
1458 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1459 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/ic-arm.cc ('k') | src/arm/macro-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698