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

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

Issue 9148006: [objects] seed NumberDictionary (only ia32 now) Base URL: gh:v8/v8@master
Patch Set: fixed linter issues, use pseudo-random function in test 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
« no previous file with comments | « src/frames.cc ('k') | src/ia32/macro-assembler-ia32.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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 // Inline caching support 491 // Inline caching support
492 492
493 // Generate code for checking access rights - used for security checks 493 // Generate code for checking access rights - used for security checks
494 // on access to global objects across environments. The holder register 494 // on access to global objects across environments. The holder register
495 // is left untouched, but the scratch register is clobbered. 495 // is left untouched, but the scratch register is clobbered.
496 void CheckAccessGlobalProxy(Register holder_reg, 496 void CheckAccessGlobalProxy(Register holder_reg,
497 Register scratch, 497 Register scratch,
498 Label* miss); 498 Label* miss);
499 499
500 500
501 void GetNumberHash(Register r0, Register scratch);
502
503
501 void LoadFromNumberDictionary(Label* miss, 504 void LoadFromNumberDictionary(Label* miss,
502 Register elements, 505 Register elements,
503 Register key, 506 Register key,
504 Register r0, 507 Register r0,
505 Register r1, 508 Register r1,
506 Register r2, 509 Register r2,
507 Register result); 510 Register result);
508 511
509 512
510 // --------------------------------------------------------------------------- 513 // ---------------------------------------------------------------------------
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
948 } \ 951 } \
949 masm-> 952 masm->
950 #else 953 #else
951 #define ACCESS_MASM(masm) masm-> 954 #define ACCESS_MASM(masm) masm->
952 #endif 955 #endif
953 956
954 957
955 } } // namespace v8::internal 958 } } // namespace v8::internal
956 959
957 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ 960 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/frames.cc ('k') | src/ia32/macro-assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698