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

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

Issue 8111006: Allow new-space JSFunction objects as constant-function properties. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: rebased Created 9 years 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 159
160 // Load an object from the root table. 160 // Load an object from the root table.
161 void LoadRoot(Register destination, 161 void LoadRoot(Register destination,
162 Heap::RootListIndex index, 162 Heap::RootListIndex index,
163 Condition cond = al); 163 Condition cond = al);
164 // Store an object to the root table. 164 // Store an object to the root table.
165 void StoreRoot(Register source, 165 void StoreRoot(Register source,
166 Heap::RootListIndex index, 166 Heap::RootListIndex index,
167 Condition cond = al); 167 Condition cond = al);
168 168
169 void LoadHeapObject(Register dst, Handle<HeapObject> object);
170
169 // --------------------------------------------------------------------------- 171 // ---------------------------------------------------------------------------
170 // GC Support 172 // GC Support
171 173
172 void IncrementalMarkingRecordWriteHelper(Register object, 174 void IncrementalMarkingRecordWriteHelper(Register object,
173 Register value, 175 Register value,
174 Register address); 176 Register address);
175 177
176 enum RememberedSetFinalAction { 178 enum RememberedSetFinalAction {
177 kReturnAtEnd, 179 kReturnAtEnd,
178 kFallThroughAtEnd 180 kFallThroughAtEnd
(...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1316 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1318 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1317 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1319 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1318 #else 1320 #else
1319 #define ACCESS_MASM(masm) masm-> 1321 #define ACCESS_MASM(masm) masm->
1320 #endif 1322 #endif
1321 1323
1322 1324
1323 } } // namespace v8::internal 1325 } } // namespace v8::internal
1324 1326
1325 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1327 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698