| Index: src/full-codegen.h
|
| diff --git a/src/full-codegen.h b/src/full-codegen.h
|
| index 7d035279a995315bbdcd1b4b8666fb53218d23ef..6d2a529a144f5deb851737639f8205cc965e7ac9 100644
|
| --- a/src/full-codegen.h
|
| +++ b/src/full-codegen.h
|
| @@ -122,7 +122,7 @@ class FullCodeGenerator: public AstVisitor {
|
|
|
| // Platform-specific code size multiplier.
|
| #if V8_TARGET_ARCH_IA32
|
| - static const int kCodeSizeMultiplier = 100;
|
| + static const int kCodeSizeMultiplier = 120;
|
| #elif V8_TARGET_ARCH_X64
|
| static const int kCodeSizeMultiplier = 162;
|
| #elif V8_TARGET_ARCH_ARM
|
| @@ -485,9 +485,9 @@ class FullCodeGenerator: public AstVisitor {
|
| void EmitReturnSequence();
|
|
|
| // Platform-specific code sequences for calls
|
| - void EmitCallWithStub(Call* expr);
|
| - void EmitCallWithIC(Call* expr);
|
| - void EmitKeyedCallWithIC(Call* expr, Expression* key);
|
| + void EmitCall(Call* expr, CallIC::CallType = CallIC::FUNCTION);
|
| + void EmitCallWithLoadIC(Call* expr);
|
| + void EmitKeyedCallWithLoadIC(Call* expr, Expression* key);
|
|
|
| // Platform-specific code for inline runtime calls.
|
| InlineFunctionGenerator FindInlineFunctionGenerator(Runtime::FunctionId id);
|
|
|