| OLD | NEW |
| 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_IA32_MACRO_ASSEMBLER_IA32_H_ | 5 #ifndef V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
| 6 #define V8_IA32_MACRO_ASSEMBLER_IA32_H_ | 6 #define V8_IA32_MACRO_ASSEMBLER_IA32_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 917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 928 void EmitSeqStringSetCharCheck(Register string, | 928 void EmitSeqStringSetCharCheck(Register string, |
| 929 Register index, | 929 Register index, |
| 930 Register value, | 930 Register value, |
| 931 uint32_t encoding_mask); | 931 uint32_t encoding_mask); |
| 932 | 932 |
| 933 static int SafepointRegisterStackIndex(Register reg) { | 933 static int SafepointRegisterStackIndex(Register reg) { |
| 934 return SafepointRegisterStackIndex(reg.code()); | 934 return SafepointRegisterStackIndex(reg.code()); |
| 935 } | 935 } |
| 936 | 936 |
| 937 // Activation support. | 937 // Activation support. |
| 938 void EnterFrame(StackFrame::Type type); | 938 void EnterFrame(StackFrame::Type type, bool load_constant_pool = false); |
| 939 void LeaveFrame(StackFrame::Type type); | 939 void LeaveFrame(StackFrame::Type type); |
| 940 | 940 |
| 941 // Expects object in eax and returns map with validated enum cache | 941 // Expects object in eax and returns map with validated enum cache |
| 942 // in eax. Assumes that any other register can be used as a scratch. | 942 // in eax. Assumes that any other register can be used as a scratch. |
| 943 void CheckEnumCache(Label* call_runtime); | 943 void CheckEnumCache(Label* call_runtime); |
| 944 | 944 |
| 945 // AllocationMemento support. Arrays may have an associated | 945 // AllocationMemento support. Arrays may have an associated |
| 946 // AllocationMemento object that can be checked for in order to pretransition | 946 // AllocationMemento object that can be checked for in order to pretransition |
| 947 // to another type. | 947 // to another type. |
| 948 // On entry, receiver_reg should point to the array object. | 948 // On entry, receiver_reg should point to the array object. |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1104 } \ | 1104 } \ |
| 1105 masm-> | 1105 masm-> |
| 1106 #else | 1106 #else |
| 1107 #define ACCESS_MASM(masm) masm-> | 1107 #define ACCESS_MASM(masm) masm-> |
| 1108 #endif | 1108 #endif |
| 1109 | 1109 |
| 1110 | 1110 |
| 1111 } } // namespace v8::internal | 1111 } } // namespace v8::internal |
| 1112 | 1112 |
| 1113 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ | 1113 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ |
| OLD | NEW |