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

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

Issue 1306303005: Revert of [es5] Class of object is "Function" if object has [[Call]]. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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/lithium-codegen-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 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 const ParameterCount& actual, 655 const ParameterCount& actual,
656 InvokeFlag flag, 656 InvokeFlag flag,
657 const CallWrapper& call_wrapper); 657 const CallWrapper& call_wrapper);
658 658
659 void InvokeFunction(Handle<JSFunction> function, 659 void InvokeFunction(Handle<JSFunction> function,
660 const ParameterCount& expected, 660 const ParameterCount& expected,
661 const ParameterCount& actual, 661 const ParameterCount& actual,
662 InvokeFlag flag, 662 InvokeFlag flag,
663 const CallWrapper& call_wrapper); 663 const CallWrapper& call_wrapper);
664 664
665 void IsObjectJSObjectType(Register heap_object,
666 Register map,
667 Register scratch,
668 Label* fail);
669
670 void IsInstanceJSObjectType(Register map,
671 Register scratch,
672 Label* fail);
673
665 void IsObjectJSStringType(Register object, 674 void IsObjectJSStringType(Register object,
666 Register scratch, 675 Register scratch,
667 Label* fail); 676 Label* fail);
668 677
669 void IsObjectNameType(Register object, 678 void IsObjectNameType(Register object,
670 Register scratch, 679 Register scratch,
671 Label* fail); 680 Label* fail);
672 681
673 // --------------------------------------------------------------------------- 682 // ---------------------------------------------------------------------------
674 // Debugger Support 683 // Debugger Support
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after
1546 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1555 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1547 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1556 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1548 #else 1557 #else
1549 #define ACCESS_MASM(masm) masm-> 1558 #define ACCESS_MASM(masm) masm->
1550 #endif 1559 #endif
1551 1560
1552 1561
1553 } } // namespace v8::internal 1562 } } // namespace v8::internal
1554 1563
1555 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1564 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/arm/macro-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698