Skip to content

Commit 9cb62ef

Browse files
cjihrigtargos
authored andcommitted
src: remove V8_FT_ADAPTOR for V8 update
V8 has removed argument adapter frames. This commit removes them from the Node.js codebase as well.
1 parent 64d8fff commit 9cb62ef

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

src/v8abbr.h

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
#define V8_FT_OPTIMIZED V8DBG_FRAMETYPE_OPTIMIZEDFRAME
4242
#define V8_FT_INTERNAL V8DBG_FRAMETYPE_INTERNALFRAME
4343
#define V8_FT_CONSTRUCT V8DBG_FRAMETYPE_CONSTRUCTFRAME
44-
#define V8_FT_ADAPTOR V8DBG_FRAMETYPE_ARGUMENTSADAPTORFRAME
4544
#define V8_FT_STUB V8DBG_FRAMETYPE_STUBFRAME
4645

4746
/* Identification masks and tags */

src/v8ustack.d

-18
Original file line numberDiff line numberDiff line change
@@ -392,24 +392,6 @@ dtrace:helper:ustack:
392392
this->ii = 0;
393393
}
394394

395-
/*
396-
* Like V8, we first check if we've got an ArgumentsAdaptorFrame. We've got
397-
* nothing to add for such frames, so we bail out quickly.
398-
*/
399-
dtrace:helper:ustack:
400-
{
401-
this->ctx = COPYIN_PTR(this->fp + V8_OFF_FP_CONTEXT);
402-
}
403-
404-
dtrace:helper:ustack:
405-
/IS_SMI(this->ctx) && SMI_VALUE(this->ctx) == V8_FT_ADAPTOR/
406-
{
407-
this->done = 1;
408-
APPEND_CHR8('<','<',' ','a','d','a','p','t');
409-
APPEND_CHR8('o','r',' ','>','>','\0','\0','\0');
410-
stringof(this->buf);
411-
}
412-
413395
/*
414396
* Check for other common frame types for which we also have nothing to add.
415397
*/

0 commit comments

Comments
 (0)