OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1152 void Call(Label* target); | 1152 void Call(Label* target); |
1153 void Call(Address target, RelocInfo::Mode rmode); | 1153 void Call(Address target, RelocInfo::Mode rmode); |
1154 void Call(Handle<Code> code, | 1154 void Call(Handle<Code> code, |
1155 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, | 1155 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, |
1156 TypeFeedbackId ast_id = TypeFeedbackId::None()); | 1156 TypeFeedbackId ast_id = TypeFeedbackId::None()); |
1157 | 1157 |
1158 // For every Call variant, there is a matching CallSize function that returns | 1158 // For every Call variant, there is a matching CallSize function that returns |
1159 // the size (in bytes) of the call sequence. | 1159 // the size (in bytes) of the call sequence. |
1160 static int CallSize(Register target); | 1160 static int CallSize(Register target); |
1161 static int CallSize(Label* target); | 1161 static int CallSize(Label* target); |
1162 static int CallSize(Address target, RelocInfo::Mode rmode); | 1162 int CallSize(Address target, RelocInfo::Mode rmode); |
1163 static int CallSize(Handle<Code> code, | 1163 int CallSize(Handle<Code> code, |
1164 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, | 1164 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, |
1165 TypeFeedbackId ast_id = TypeFeedbackId::None()); | 1165 TypeFeedbackId ast_id = TypeFeedbackId::None()); |
1166 | 1166 |
1167 // Registers used through the invocation chain are hard-coded. | 1167 // Registers used through the invocation chain are hard-coded. |
1168 // We force passing the parameters to ensure the contracts are correctly | 1168 // We force passing the parameters to ensure the contracts are correctly |
1169 // honoured by the caller. | 1169 // honoured by the caller. |
1170 // 'function' must be x1. | 1170 // 'function' must be x1. |
1171 // 'actual' must use an immediate or x0. | 1171 // 'actual' must use an immediate or x0. |
1172 // 'expected' must use an immediate or x2. | 1172 // 'expected' must use an immediate or x2. |
1173 // 'call_kind' must be x5. | 1173 // 'call_kind' must be x5. |
1174 void InvokePrologue(const ParameterCount& expected, | 1174 void InvokePrologue(const ParameterCount& expected, |
1175 const ParameterCount& actual, | 1175 const ParameterCount& actual, |
(...skipping 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2294 #error "Unsupported option" | 2294 #error "Unsupported option" |
2295 #define CODE_COVERAGE_STRINGIFY(x) #x | 2295 #define CODE_COVERAGE_STRINGIFY(x) #x |
2296 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) | 2296 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) |
2297 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 2297 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
2298 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 2298 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
2299 #else | 2299 #else |
2300 #define ACCESS_MASM(masm) masm-> | 2300 #define ACCESS_MASM(masm) masm-> |
2301 #endif | 2301 #endif |
2302 | 2302 |
2303 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ | 2303 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ |
OLD | NEW |