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

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

Issue 1552473002: Revert of [runtime] Introduce dedicated JSBoundFunction to represent bound functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@FunctionConstructor
Patch Set: Created 4 years, 12 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/arm/code-stubs-arm.cc ('k') | src/arm/macro-assembler-arm.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_ 5 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_
6 #define V8_ARM_MACRO_ASSEMBLER_ARM_H_ 6 #define V8_ARM_MACRO_ASSEMBLER_ARM_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/bailout-reason.h" 9 #include "src/bailout-reason.h"
10 #include "src/frames.h" 10 #include "src/frames.h"
(...skipping 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after
1284 1284
1285 // Abort execution if argument is not a string, enabled via --debug-code. 1285 // Abort execution if argument is not a string, enabled via --debug-code.
1286 void AssertString(Register object); 1286 void AssertString(Register object);
1287 1287
1288 // Abort execution if argument is not a name, enabled via --debug-code. 1288 // Abort execution if argument is not a name, enabled via --debug-code.
1289 void AssertName(Register object); 1289 void AssertName(Register object);
1290 1290
1291 // Abort execution if argument is not a JSFunction, enabled via --debug-code. 1291 // Abort execution if argument is not a JSFunction, enabled via --debug-code.
1292 void AssertFunction(Register object); 1292 void AssertFunction(Register object);
1293 1293
1294 // Abort execution if argument is not a JSBoundFunction,
1295 // enabled via --debug-code.
1296 void AssertBoundFunction(Register object);
1297
1298 // Abort execution if argument is not undefined or an AllocationSite, enabled 1294 // Abort execution if argument is not undefined or an AllocationSite, enabled
1299 // via --debug-code. 1295 // via --debug-code.
1300 void AssertUndefinedOrAllocationSite(Register object, Register scratch); 1296 void AssertUndefinedOrAllocationSite(Register object, Register scratch);
1301 1297
1302 // Abort execution if reg is not the root value with the given index, 1298 // Abort execution if reg is not the root value with the given index,
1303 // enabled via --debug-code. 1299 // enabled via --debug-code.
1304 void AssertIsRoot(Register reg, Heap::RootListIndex index); 1300 void AssertIsRoot(Register reg, Heap::RootListIndex index);
1305 1301
1306 // --------------------------------------------------------------------------- 1302 // ---------------------------------------------------------------------------
1307 // HeapNumber utilities 1303 // HeapNumber utilities
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1542 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1538 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1543 #else 1539 #else
1544 #define ACCESS_MASM(masm) masm-> 1540 #define ACCESS_MASM(masm) masm->
1545 #endif 1541 #endif
1546 1542
1547 1543
1548 } // namespace internal 1544 } // namespace internal
1549 } // namespace v8 1545 } // namespace v8
1550 1546
1551 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1547 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/arm/macro-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698