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

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

Issue 1439693002: [runtime] Support Proxy setPrototypeOf trap (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2015-11-09_new_Proxy_1417063011
Patch Set: merging with master Created 5 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
« no previous file with comments | « no previous file | 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 636 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 // JavaScript invokes 647 // JavaScript invokes
648 648
649 // Invoke the JavaScript function code by either calling or jumping. 649 // Invoke the JavaScript function code by either calling or jumping.
650 void InvokeFunctionCode(Register function, Register new_target, 650 void InvokeFunctionCode(Register function, Register new_target,
651 const ParameterCount& expected, 651 const ParameterCount& expected,
652 const ParameterCount& actual, InvokeFlag flag, 652 const ParameterCount& actual, InvokeFlag flag,
653 const CallWrapper& call_wrapper); 653 const CallWrapper& call_wrapper);
654 654
655 // Invoke the JavaScript function in the given register. Changes the 655 // Invoke the JavaScript function in the given register. Changes the
656 // current context to the context in the function before invoking. 656 // current context to the context in the function before invoking.
657 void InvokeFunction(Register function, 657 void InvokeFunction(Register function, Register new_target,
658 Register new_target, 658 const ParameterCount& actual, InvokeFlag flag,
659 const ParameterCount& actual,
660 InvokeFlag flag,
661 const CallWrapper& call_wrapper); 659 const CallWrapper& call_wrapper);
662 660
663 void InvokeFunction(Register function, 661 void InvokeFunction(Register function,
664 const ParameterCount& expected, 662 const ParameterCount& expected,
665 const ParameterCount& actual, 663 const ParameterCount& actual,
666 InvokeFlag flag, 664 InvokeFlag flag,
667 const CallWrapper& call_wrapper); 665 const CallWrapper& call_wrapper);
668 666
669 void InvokeFunction(Handle<JSFunction> function, 667 void InvokeFunction(Handle<JSFunction> function,
670 const ParameterCount& expected, 668 const ParameterCount& expected,
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
1550 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1548 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1551 #else 1549 #else
1552 #define ACCESS_MASM(masm) masm-> 1550 #define ACCESS_MASM(masm) masm->
1553 #endif 1551 #endif
1554 1552
1555 1553
1556 } // namespace internal 1554 } // namespace internal
1557 } // namespace v8 1555 } // namespace v8
1558 1556
1559 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1557 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/macro-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698