Skip to content

Commit 678480e

Browse files
committed
deps: backport 8dde6ac from upstream V8
Commit 9c9e2d7 changed the name of TypeFeedbackVector to FeedbackVector but that commit did not update gdbinit. This applies the changed to gdbinit from upstream V8. Original commit message: [gdbinit] Rename TypeFeedback* to Feedback*. BUG= Change-Id: I1e32fdcf9edda57f5de329c8b694620a5da4558b Reviewed-on: https://chromium-review.googlesource.com/442444 Reviewed-by: Michael Stanton <mvstanton@chromium.org> Commit-Queue: Igor Sheludko <ishell@chromium.org> Cr-Commit-Position: refs/heads/master@{nodejs#43185} PR-URL: nodejs#12060 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent a46c43d commit 678480e

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

deps/v8/src/objects-printer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1684,7 +1684,7 @@ extern void _v8_internal_Print_Code(void* object) {
16841684

16851685
extern void _v8_internal_Print_FeedbackVector(void* object) {
16861686
if (reinterpret_cast<i::Object*>(object)->IsSmi()) {
1687-
printf("Not a type feedback vector\n");
1687+
printf("Not a feedback vector\n");
16881688
} else {
16891689
reinterpret_cast<i::FeedbackVector*>(object)->Print();
16901690
}

deps/v8/tools/gdbinit

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ Print a v8 Code object from an internal code address
2929
Usage: jco pc
3030
end
3131

32-
# Print TypeFeedbackVector
32+
# Print FeedbackVector
3333
define jfv
34-
call _v8_internal_Print_TypeFeedbackVector((void*)($arg0))
34+
call _v8_internal_Print_FeedbackVector((void*)($arg0))
3535
end
3636
document jfv
37-
Print a v8 TypeFeedbackVector object
38-
Usage: jtv tagged_ptr
37+
Print a v8 FeedbackVector object
38+
Usage: jfv tagged_ptr
3939
end
4040

4141
# Print DescriptorArray.

0 commit comments

Comments
 (0)