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

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

Issue 181453002: Reset trunk to 3.24.35.4 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/mips/lithium-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 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 853 matching lines...) Expand 10 before | Expand all | Expand 10 after
864 // transitioned_kind from the native context if the map in register 864 // transitioned_kind from the native context if the map in register
865 // map_in_out is the cached Array map in the native context of 865 // map_in_out is the cached Array map in the native context of
866 // expected_kind. 866 // expected_kind.
867 void LoadTransitionedArrayMapConditional( 867 void LoadTransitionedArrayMapConditional(
868 ElementsKind expected_kind, 868 ElementsKind expected_kind,
869 ElementsKind transitioned_kind, 869 ElementsKind transitioned_kind,
870 Register map_in_out, 870 Register map_in_out,
871 Register scratch, 871 Register scratch,
872 Label* no_map_match); 872 Label* no_map_match);
873 873
874 // Load the initial map for new Arrays from a JSFunction.
875 void LoadInitialArrayMap(Register function_in,
876 Register scratch,
877 Register map_out,
878 bool can_have_holes);
879
874 void LoadGlobalFunction(int index, Register function); 880 void LoadGlobalFunction(int index, Register function);
875 void LoadArrayFunction(Register function); 881 void LoadArrayFunction(Register function);
876 882
877 // Load the initial map from the global function. The registers 883 // Load the initial map from the global function. The registers
878 // function and map can be the same, function is then overwritten. 884 // function and map can be the same, function is then overwritten.
879 void LoadGlobalFunctionInitialMap(Register function, 885 void LoadGlobalFunctionInitialMap(Register function,
880 Register map, 886 Register map,
881 Register scratch); 887 Register scratch);
882 888
883 void InitializeRootRegister() { 889 void InitializeRootRegister() {
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
1666 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) 1672 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
1667 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1673 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1668 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1674 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1669 #else 1675 #else
1670 #define ACCESS_MASM(masm) masm-> 1676 #define ACCESS_MASM(masm) masm->
1671 #endif 1677 #endif
1672 1678
1673 } } // namespace v8::internal 1679 } } // namespace v8::internal
1674 1680
1675 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1681 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/lithium-mips.cc ('k') | src/mips/macro-assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698