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

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

Issue 609843002: Refactor FrameAndConstantPoolScope and ConstantPoolUnavailableScope to be architecture independent (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Re-factoring to enable FrameAndConstantPoolScope and ConstantPoolUnavailableScope to be used by oth… Created 6 years, 2 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 | Annotate | Revision Log
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_MIPS_MACRO_ASSEMBLER_MIPS_H_ 5 #ifndef V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/mips/assembler-mips.h" 10 #include "src/mips/assembler-mips.h"
(...skipping 1536 matching lines...) Expand 10 before | Expand all | Expand 10 after
1547 template<typename Field> 1547 template<typename Field>
1548 void DecodeFieldToSmi(Register reg) { 1548 void DecodeFieldToSmi(Register reg) {
1549 DecodeField<Field>(reg, reg); 1549 DecodeField<Field>(reg, reg);
1550 } 1550 }
1551 1551
1552 // Generates function and stub prologue code. 1552 // Generates function and stub prologue code.
1553 void StubPrologue(); 1553 void StubPrologue();
1554 void Prologue(bool code_pre_aging); 1554 void Prologue(bool code_pre_aging);
1555 1555
1556 // Activation support. 1556 // Activation support.
1557 void EnterFrame(StackFrame::Type type); 1557 void EnterFrame(StackFrame::Type type,
1558 bool load_constant_pool_pointer_reg = false);
1558 void LeaveFrame(StackFrame::Type type); 1559 void LeaveFrame(StackFrame::Type type);
1559 1560
1560 // Patch the relocated value (lui/ori pair). 1561 // Patch the relocated value (lui/ori pair).
1561 void PatchRelocatedValue(Register li_location, 1562 void PatchRelocatedValue(Register li_location,
1562 Register scratch, 1563 Register scratch,
1563 Register new_value); 1564 Register new_value);
1564 // Get the relocatad value (loaded data) from the lui/ori pair. 1565 // Get the relocatad value (loaded data) from the lui/ori pair.
1565 void GetRelocatedValue(Register li_location, 1566 void GetRelocatedValue(Register li_location,
1566 Register value, 1567 Register value,
1567 Register scratch); 1568 Register scratch);
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
1710 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) 1711 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
1711 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1712 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1712 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1713 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1713 #else 1714 #else
1714 #define ACCESS_MASM(masm) masm-> 1715 #define ACCESS_MASM(masm) masm->
1715 #endif 1716 #endif
1716 1717
1717 } } // namespace v8::internal 1718 } } // namespace v8::internal
1718 1719
1719 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1720 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698