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

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

Issue 1307943013: [es5] Class of object is "Function" if object has [[Call]]. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address Jakobs comments. 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
674 void IsObjectJSStringType(Register object, 665 void IsObjectJSStringType(Register object,
675 Register scratch, 666 Register scratch,
676 Label* fail); 667 Label* fail);
677 668
678 void IsObjectNameType(Register object, 669 void IsObjectNameType(Register object,
679 Register scratch, 670 Register scratch,
680 Label* fail); 671 Label* fail);
681 672
682 // --------------------------------------------------------------------------- 673 // ---------------------------------------------------------------------------
683 // Debugger Support 674 // Debugger Support
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after
1555 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1546 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1556 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1547 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1557 #else 1548 #else
1558 #define ACCESS_MASM(masm) masm-> 1549 #define ACCESS_MASM(masm) masm->
1559 #endif 1550 #endif
1560 1551
1561 1552
1562 } } // namespace v8::internal 1553 } } // namespace v8::internal
1563 1554
1564 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1555 #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