OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_PPC_MACRO_ASSEMBLER_PPC_H_ | 5 #ifndef V8_PPC_MACRO_ASSEMBLER_PPC_H_ |
6 #define V8_PPC_MACRO_ASSEMBLER_PPC_H_ | 6 #define V8_PPC_MACRO_ASSEMBLER_PPC_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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 | 542 |
543 void InvokeFunction(Register function, const ParameterCount& expected, | 543 void InvokeFunction(Register function, const ParameterCount& expected, |
544 const ParameterCount& actual, InvokeFlag flag, | 544 const ParameterCount& actual, InvokeFlag flag, |
545 const CallWrapper& call_wrapper); | 545 const CallWrapper& call_wrapper); |
546 | 546 |
547 void InvokeFunction(Handle<JSFunction> function, | 547 void InvokeFunction(Handle<JSFunction> function, |
548 const ParameterCount& expected, | 548 const ParameterCount& expected, |
549 const ParameterCount& actual, InvokeFlag flag, | 549 const ParameterCount& actual, InvokeFlag flag, |
550 const CallWrapper& call_wrapper); | 550 const CallWrapper& call_wrapper); |
551 | 551 |
552 void IsObjectJSObjectType(Register heap_object, Register map, | |
553 Register scratch, Label* fail); | |
554 | |
555 void IsInstanceJSObjectType(Register map, Register scratch, Label* fail); | |
556 | |
557 void IsObjectJSStringType(Register object, Register scratch, Label* fail); | 552 void IsObjectJSStringType(Register object, Register scratch, Label* fail); |
558 | 553 |
559 void IsObjectNameType(Register object, Register scratch, Label* fail); | 554 void IsObjectNameType(Register object, Register scratch, Label* fail); |
560 | 555 |
561 // --------------------------------------------------------------------------- | 556 // --------------------------------------------------------------------------- |
562 // Debugger Support | 557 // Debugger Support |
563 | 558 |
564 void DebugBreak(); | 559 void DebugBreak(); |
565 | 560 |
566 // --------------------------------------------------------------------------- | 561 // --------------------------------------------------------------------------- |
(...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1554 #define ACCESS_MASM(masm) \ | 1549 #define ACCESS_MASM(masm) \ |
1555 masm->stop(__FILE_LINE__); \ | 1550 masm->stop(__FILE_LINE__); \ |
1556 masm-> | 1551 masm-> |
1557 #else | 1552 #else |
1558 #define ACCESS_MASM(masm) masm-> | 1553 #define ACCESS_MASM(masm) masm-> |
1559 #endif | 1554 #endif |
1560 } | 1555 } |
1561 } // namespace v8::internal | 1556 } // namespace v8::internal |
1562 | 1557 |
1563 #endif // V8_PPC_MACRO_ASSEMBLER_PPC_H_ | 1558 #endif // V8_PPC_MACRO_ASSEMBLER_PPC_H_ |
OLD | NEW |