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

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

Issue 1364373003: Full code shouldn't embed the type feedback vector. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Ports. Created 5 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
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/arm64/assembler-arm64.h" 10 #include "src/arm64/assembler-arm64.h"
(...skipping 1573 matching lines...) Expand 10 before | Expand all | Expand 10 after
1584 Register key, 1584 Register key,
1585 Register result, 1585 Register result,
1586 Register scratch0, 1586 Register scratch0,
1587 Register scratch1, 1587 Register scratch1,
1588 Register scratch2, 1588 Register scratch2,
1589 Register scratch3); 1589 Register scratch3);
1590 1590
1591 // --------------------------------------------------------------------------- 1591 // ---------------------------------------------------------------------------
1592 // Frames. 1592 // Frames.
1593 1593
1594 // Load the type feedback vector from a JavaScript frame.
1595 void EmitLoadTypeFeedbackVector(Register vector);
1596
1594 // Activation support. 1597 // Activation support.
1595 void EnterFrame(StackFrame::Type type); 1598 void EnterFrame(StackFrame::Type type);
1596 void EnterFrame(StackFrame::Type type, bool load_constant_pool_pointer_reg); 1599 void EnterFrame(StackFrame::Type type, bool load_constant_pool_pointer_reg);
1597 void LeaveFrame(StackFrame::Type type); 1600 void LeaveFrame(StackFrame::Type type);
1598 1601
1599 // Returns map with validated enum cache in object register. 1602 // Returns map with validated enum cache in object register.
1600 void CheckEnumCache(Register object, 1603 void CheckEnumCache(Register object,
1601 Register null_value, 1604 Register null_value,
1602 Register scratch0, 1605 Register scratch0,
1603 Register scratch1, 1606 Register scratch1,
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
2281 #error "Unsupported option" 2284 #error "Unsupported option"
2282 #define CODE_COVERAGE_STRINGIFY(x) #x 2285 #define CODE_COVERAGE_STRINGIFY(x) #x
2283 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) 2286 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
2284 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 2287 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
2285 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 2288 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
2286 #else 2289 #else
2287 #define ACCESS_MASM(masm) masm-> 2290 #define ACCESS_MASM(masm) masm->
2288 #endif 2291 #endif
2289 2292
2290 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ 2293 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698