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

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

Issue 14146005: Track representations of fields (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add test for tracking fields Created 7 years, 7 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 SaveFPRegsMode save_fp, 161 SaveFPRegsMode save_fp,
162 RememberedSetFinalAction and_then); 162 RememberedSetFinalAction and_then);
163 163
164 void CheckPageFlag(Register object, 164 void CheckPageFlag(Register object,
165 Register scratch, 165 Register scratch,
166 int mask, 166 int mask,
167 Condition cc, 167 Condition cc,
168 Label* condition_met, 168 Label* condition_met,
169 Label::Distance condition_met_distance = Label::kFar); 169 Label::Distance condition_met_distance = Label::kFar);
170 170
171 void CheckMapDeprecated(Handle<Map> map,
172 Register scratch,
173 Label* if_deprecated);
174
171 // Check if object is in new space. Jumps if the object is not in new space. 175 // Check if object is in new space. Jumps if the object is not in new space.
172 // The register scratch can be object itself, but scratch will be clobbered. 176 // The register scratch can be object itself, but scratch will be clobbered.
173 void JumpIfNotInNewSpace(Register object, 177 void JumpIfNotInNewSpace(Register object,
174 Register scratch, 178 Register scratch,
175 Label* branch, 179 Label* branch,
176 Label::Distance distance = Label::kFar) { 180 Label::Distance distance = Label::kFar) {
177 InNewSpace(object, scratch, not_equal, branch, distance); 181 InNewSpace(object, scratch, not_equal, branch, distance);
178 } 182 }
179 183
180 // Check if object is in new space. Jumps if the object is in new space. 184 // Check if object is in new space. Jumps if the object is in new space.
(...skipping 1329 matching lines...) Expand 10 before | Expand all | Expand 10 after
1510 masm->popfq(); \ 1514 masm->popfq(); \
1511 } \ 1515 } \
1512 masm-> 1516 masm->
1513 #else 1517 #else
1514 #define ACCESS_MASM(masm) masm-> 1518 #define ACCESS_MASM(masm) masm->
1515 #endif 1519 #endif
1516 1520
1517 } } // namespace v8::internal 1521 } } // namespace v8::internal
1518 1522
1519 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1523 #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