| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 // Jump, Call, and Ret pseudo instructions implementing inter-working. | 98 // Jump, Call, and Ret pseudo instructions implementing inter-working. |
| 99 void Jump(Register target, Condition cond = al); | 99 void Jump(Register target, Condition cond = al); |
| 100 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al); | 100 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al); |
| 101 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al); | 101 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al); |
| 102 static int CallSize(Register target, Condition cond = al); | 102 static int CallSize(Register target, Condition cond = al); |
| 103 void Call(Register target, Condition cond = al); | 103 void Call(Register target, Condition cond = al); |
| 104 int CallSize(Address target, RelocInfo::Mode rmode, Condition cond = al); | 104 int CallSize(Address target, RelocInfo::Mode rmode, Condition cond = al); |
| 105 int CallStubSize(CodeStub* stub, | 105 int CallStubSize(CodeStub* stub, |
| 106 TypeFeedbackId ast_id = TypeFeedbackId::None(), | 106 TypeFeedbackId ast_id = TypeFeedbackId::None(), |
| 107 Condition cond = al); | 107 Condition cond = al); |
| 108 static int CallSizeNotPredictableCodeSize(Address target, | 108 static int CallSizeNotPredictableCodeSize(Isolate* isolate, |
| 109 Address target, |
| 109 RelocInfo::Mode rmode, | 110 RelocInfo::Mode rmode, |
| 110 Condition cond = al); | 111 Condition cond = al); |
| 111 void Call(Address target, RelocInfo::Mode rmode, | 112 void Call(Address target, RelocInfo::Mode rmode, |
| 112 Condition cond = al, | 113 Condition cond = al, |
| 113 TargetAddressStorageMode mode = CAN_INLINE_TARGET_ADDRESS); | 114 TargetAddressStorageMode mode = CAN_INLINE_TARGET_ADDRESS); |
| 114 int CallSize(Handle<Code> code, | 115 int CallSize(Handle<Code> code, |
| 115 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, | 116 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, |
| 116 TypeFeedbackId ast_id = TypeFeedbackId::None(), | 117 TypeFeedbackId ast_id = TypeFeedbackId::None(), |
| 117 Condition cond = al); | 118 Condition cond = al); |
| 118 void Call(Handle<Code> code, | 119 void Call(Handle<Code> code, |
| (...skipping 1483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1602 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1603 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
| 1603 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1604 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
| 1604 #else | 1605 #else |
| 1605 #define ACCESS_MASM(masm) masm-> | 1606 #define ACCESS_MASM(masm) masm-> |
| 1606 #endif | 1607 #endif |
| 1607 | 1608 |
| 1608 | 1609 |
| 1609 } } // namespace v8::internal | 1610 } } // namespace v8::internal |
| 1610 | 1611 |
| 1611 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1612 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |