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

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

Issue 11818021: Allocation Info Tracking, continued. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: A partial delta against Toon's previous review Created 7 years, 9 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/x64/lithium-x64.cc ('k') | src/x64/macro-assembler-x64.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 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after
1147 Label* no_map_match); 1147 Label* no_map_match);
1148 1148
1149 // Load the initial map for new Arrays from a JSFunction. 1149 // Load the initial map for new Arrays from a JSFunction.
1150 void LoadInitialArrayMap(Register function_in, 1150 void LoadInitialArrayMap(Register function_in,
1151 Register scratch, 1151 Register scratch,
1152 Register map_out, 1152 Register map_out,
1153 bool can_have_holes); 1153 bool can_have_holes);
1154 1154
1155 // Load the global function with the given index. 1155 // Load the global function with the given index.
1156 void LoadGlobalFunction(int index, Register function); 1156 void LoadGlobalFunction(int index, Register function);
1157 void LoadArrayFunction(Register function);
1157 1158
1158 // Load the initial map from the global function. The registers 1159 // Load the initial map from the global function. The registers
1159 // function and map can be the same. 1160 // function and map can be the same.
1160 void LoadGlobalFunctionInitialMap(Register function, Register map); 1161 void LoadGlobalFunctionInitialMap(Register function, Register map);
1161 1162
1162 // --------------------------------------------------------------------------- 1163 // ---------------------------------------------------------------------------
1163 // Runtime calls 1164 // Runtime calls
1164 1165
1165 // Call a code stub. 1166 // Call a code stub.
1166 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None()); 1167 void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None());
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
1493 masm->popfq(); \ 1494 masm->popfq(); \
1494 } \ 1495 } \
1495 masm-> 1496 masm->
1496 #else 1497 #else
1497 #define ACCESS_MASM(masm) masm-> 1498 #define ACCESS_MASM(masm) masm->
1498 #endif 1499 #endif
1499 1500
1500 } } // namespace v8::internal 1501 } } // namespace v8::internal
1501 1502
1502 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1503 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/x64/lithium-x64.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698