Index: src/arm/macro-assembler-arm.h |
=================================================================== |
--- src/arm/macro-assembler-arm.h (revision 12285) |
+++ src/arm/macro-assembler-arm.h (working copy) |
@@ -110,14 +110,15 @@ |
void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al); |
static int CallSize(Register target, Condition cond = al); |
void Call(Register target, Condition cond = al); |
- static int CallSize(Address target, |
- RelocInfo::Mode rmode, |
- Condition cond = al); |
+ int CallSize(Address target, RelocInfo::Mode rmode, Condition cond = al); |
+ static int CallSizeNotPredictableSize(Address target, |
+ RelocInfo::Mode rmode, |
+ Condition cond = al); |
Yang
2012/08/10 09:57:11
"Size" occurs twice in this method name. Intention
Erik Corry
2012/08/10 12:24:18
Changed from PredictableSize to PredictableCodeSiz
|
void Call(Address target, RelocInfo::Mode rmode, Condition cond = al); |
- static int CallSize(Handle<Code> code, |
- RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, |
- TypeFeedbackId ast_id = TypeFeedbackId::None(), |
- Condition cond = al); |
+ int CallSize(Handle<Code> code, |
+ RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, |
+ TypeFeedbackId ast_id = TypeFeedbackId::None(), |
+ Condition cond = al); |
void Call(Handle<Code> code, |
RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, |
TypeFeedbackId ast_id = TypeFeedbackId::None(), |