diff options
| author | Ben Murdoch <benm@google.com> | 2012-04-11 10:23:59 +0100 |
|---|---|---|
| committer | Ben Murdoch <benm@google.com> | 2012-04-11 15:40:41 +0100 |
| commit | 5d4cdbf7a67d3662fa0bee4efdb7edd8daec9b0b (patch) | |
| tree | 7b717e53b80c4a64bf9b723aabcf7c909ae3c243 /src/frames-inl.h | |
| parent | c7cc028aaeedbbfa11c11d0b7b243b3d9e837ed9 (diff) | |
| download | android_external_v8-5d4cdbf7a67d3662fa0bee4efdb7edd8daec9b0b.tar.gz android_external_v8-5d4cdbf7a67d3662fa0bee4efdb7edd8daec9b0b.tar.bz2 android_external_v8-5d4cdbf7a67d3662fa0bee4efdb7edd8daec9b0b.zip | |
Merge V8 3.9 at 3.9.24.9
http://v8.googlecode.com/svn/branches/3.9@11260
Bug: 5688872
Change-Id: Iddd944e82189d92df3fc427dc5f0d3f1b2f0c6c8
Diffstat (limited to 'src/frames-inl.h')
| -rw-r--r-- | src/frames-inl.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/frames-inl.h b/src/frames-inl.h index af3ae3df..27a526ce 100644 --- a/src/frames-inl.h +++ b/src/frames-inl.h @@ -1,4 +1,4 @@ -// Copyright 2011 the V8 project authors. All rights reserved. +// Copyright 2012 the V8 project authors. All rights reserved. // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: @@ -77,18 +77,18 @@ inline StackHandler* StackHandler::FromAddress(Address address) { } -inline bool StackHandler::is_entry() const { - return kind() == ENTRY; +inline bool StackHandler::is_js_entry() const { + return kind() == JS_ENTRY; } -inline bool StackHandler::is_try_catch() const { - return kind() == TRY_CATCH; +inline bool StackHandler::is_catch() const { + return kind() == CATCH; } -inline bool StackHandler::is_try_finally() const { - return kind() == TRY_FINALLY; +inline bool StackHandler::is_finally() const { + return kind() == FINALLY; } @@ -191,7 +191,7 @@ inline bool StandardFrame::IsArgumentsAdaptorFrame(Address fp) { inline bool StandardFrame::IsConstructFrame(Address fp) { Object* marker = Memory::Object_at(fp + StandardFrameConstants::kMarkerOffset); - return marker == Smi::FromInt(CONSTRUCT); + return marker == Smi::FromInt(StackFrame::CONSTRUCT); } |
