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

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

Issue 609843002: Refactor FrameAndConstantPoolScope and ConstantPoolUnavailableScope to be architecture independent (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Eliminate unreachable paths. 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
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/arm64/macro-assembler-arm64.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_ARM64_MACRO_ASSEMBLER_ARM64_H_ 5 #ifndef V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
6 #define V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ 6 #define V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "src/bailout-reason.h" 10 #include "src/bailout-reason.h"
(...skipping 1609 matching lines...) Expand 10 before | Expand all | Expand 10 after
1620 Register scratch0, 1620 Register scratch0,
1621 Register scratch1, 1621 Register scratch1,
1622 Register scratch2, 1622 Register scratch2,
1623 Register scratch3); 1623 Register scratch3);
1624 1624
1625 // --------------------------------------------------------------------------- 1625 // ---------------------------------------------------------------------------
1626 // Frames. 1626 // Frames.
1627 1627
1628 // Activation support. 1628 // Activation support.
1629 void EnterFrame(StackFrame::Type type); 1629 void EnterFrame(StackFrame::Type type);
1630 void EnterFrame(StackFrame::Type type, bool load_constant_pool_pointer_reg);
1630 void LeaveFrame(StackFrame::Type type); 1631 void LeaveFrame(StackFrame::Type type);
1631 1632
1632 // Returns map with validated enum cache in object register. 1633 // Returns map with validated enum cache in object register.
1633 void CheckEnumCache(Register object, 1634 void CheckEnumCache(Register object,
1634 Register null_value, 1635 Register null_value,
1635 Register scratch0, 1636 Register scratch0,
1636 Register scratch1, 1637 Register scratch1,
1637 Register scratch2, 1638 Register scratch2,
1638 Register scratch3, 1639 Register scratch3,
1639 Label* call_runtime); 1640 Label* call_runtime);
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
2329 #error "Unsupported option" 2330 #error "Unsupported option"
2330 #define CODE_COVERAGE_STRINGIFY(x) #x 2331 #define CODE_COVERAGE_STRINGIFY(x) #x
2331 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) 2332 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
2332 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 2333 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
2333 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 2334 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
2334 #else 2335 #else
2335 #define ACCESS_MASM(masm) masm-> 2336 #define ACCESS_MASM(masm) masm->
2336 #endif 2337 #endif
2337 2338
2338 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ 2339 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/arm64/macro-assembler-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698