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

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

Issue 1311123004: PPC: Remove obsolete functionality from the MacroAssemblers. (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 | « no previous file | src/ppc/macro-assembler-ppc.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 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
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/ppc/macro-assembler-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698