| Index: src/ia32/macro-assembler-ia32.h
|
| diff --git a/src/ia32/macro-assembler-ia32.h b/src/ia32/macro-assembler-ia32.h
|
| index 5d6d43e54c2a171206ebdea44c4e5b1bdab65896..1d4bfa1026aabb5c5a546b5d2cd59d7e753fad09 100644
|
| --- a/src/ia32/macro-assembler-ia32.h
|
| +++ b/src/ia32/macro-assembler-ia32.h
|
| @@ -149,6 +149,9 @@ class MacroAssembler: public Assembler {
|
| // address must be pushed before calling this helper.
|
| void PushTryHandler(CodeLocation try_location, HandlerType type);
|
|
|
| + // Unlink the stack handler on top of the stack from the try handler chain.
|
| + void PopTryHandler();
|
| +
|
|
|
| // ---------------------------------------------------------------------------
|
| // Inline caching support
|
| @@ -333,6 +336,12 @@ class MacroAssembler: public Assembler {
|
|
|
| void Ret();
|
|
|
| + void Drop(int element_count);
|
| +
|
| + void Call(Label* target) { call(target); }
|
| +
|
| + void Move(Register target, Handle<Object> value);
|
| +
|
| struct Unresolved {
|
| int pc;
|
| uint32_t flags; // see Bootstrapper::FixupFlags decoders/encoders.
|
|
|