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

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

Issue 9190001: Backport @10366 to 3.6 Base URL: http://v8.googlecode.com/svn/branches/3.6/
Patch Set: '' Created 8 years, 11 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
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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 // --------------------------------------------------------------------------- 434 // ---------------------------------------------------------------------------
435 // Inline caching support 435 // Inline caching support
436 436
437 // Generate code for checking access rights - used for security checks 437 // Generate code for checking access rights - used for security checks
438 // on access to global objects across environments. The holder register 438 // on access to global objects across environments. The holder register
439 // is left untouched, whereas both scratch registers are clobbered. 439 // is left untouched, whereas both scratch registers are clobbered.
440 void CheckAccessGlobalProxy(Register holder_reg, 440 void CheckAccessGlobalProxy(Register holder_reg,
441 Register scratch, 441 Register scratch,
442 Label* miss); 442 Label* miss);
443 443
444 void GetNumberHash(Register t0, Register scratch);
444 445
445 void LoadFromNumberDictionary(Label* miss, 446 void LoadFromNumberDictionary(Label* miss,
446 Register elements, 447 Register elements,
447 Register key, 448 Register key,
448 Register result, 449 Register result,
449 Register t0, 450 Register t0,
450 Register t1, 451 Register t1,
451 Register t2); 452 Register t2);
452 453
453 454
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after
1151 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1152 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1152 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1153 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1153 #else 1154 #else
1154 #define ACCESS_MASM(masm) masm-> 1155 #define ACCESS_MASM(masm) masm->
1155 #endif 1156 #endif
1156 1157
1157 1158
1158 } } // namespace v8::internal 1159 } } // namespace v8::internal
1159 1160
1160 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1161 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698