| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al); | 109 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al); |
| 110 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al); | 110 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al); |
| 111 static int CallSize(Register target, Condition cond = al); | 111 static int CallSize(Register target, Condition cond = al); |
| 112 void Call(Register target, Condition cond = al); | 112 void Call(Register target, Condition cond = al); |
| 113 static int CallSize(Address target, | 113 static int CallSize(Address target, |
| 114 RelocInfo::Mode rmode, | 114 RelocInfo::Mode rmode, |
| 115 Condition cond = al); | 115 Condition cond = al); |
| 116 void Call(Address target, RelocInfo::Mode rmode, Condition cond = al); | 116 void Call(Address target, RelocInfo::Mode rmode, Condition cond = al); |
| 117 static int CallSize(Handle<Code> code, | 117 static int CallSize(Handle<Code> code, |
| 118 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, | 118 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, |
| 119 unsigned ast_id = kNoASTId, | 119 TypeFeedbackId ast_id = TypeFeedbackId::None(), |
| 120 Condition cond = al); | 120 Condition cond = al); |
| 121 void Call(Handle<Code> code, | 121 void Call(Handle<Code> code, |
| 122 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, | 122 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, |
| 123 unsigned ast_id = kNoASTId, | 123 TypeFeedbackId ast_id = TypeFeedbackId::None(), |
| 124 Condition cond = al); | 124 Condition cond = al); |
| 125 void Ret(Condition cond = al); | 125 void Ret(Condition cond = al); |
| 126 | 126 |
| 127 // Emit code to discard a non-negative number of pointer-sized elements | 127 // Emit code to discard a non-negative number of pointer-sized elements |
| 128 // from the stack, clobbering only the sp register. | 128 // from the stack, clobbering only the sp register. |
| 129 void Drop(int count, Condition cond = al); | 129 void Drop(int count, Condition cond = al); |
| 130 | 130 |
| 131 void Ret(int drop, Condition cond = al); | 131 void Ret(int drop, Condition cond = al); |
| 132 | 132 |
| 133 // Swap two registers. If the scratch register is omitted then a slightly | 133 // Swap two registers. If the scratch register is omitted then a slightly |
| (...skipping 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1388 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1388 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
| 1389 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1389 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
| 1390 #else | 1390 #else |
| 1391 #define ACCESS_MASM(masm) masm-> | 1391 #define ACCESS_MASM(masm) masm-> |
| 1392 #endif | 1392 #endif |
| 1393 | 1393 |
| 1394 | 1394 |
| 1395 } } // namespace v8::internal | 1395 } } // namespace v8::internal |
| 1396 | 1396 |
| 1397 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1397 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |