diff options
Diffstat (limited to 'chromium/v8/src/runtime/runtime-interpreter.cc')
-rw-r--r-- | chromium/v8/src/runtime/runtime-interpreter.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/chromium/v8/src/runtime/runtime-interpreter.cc b/chromium/v8/src/runtime/runtime-interpreter.cc index ad843174153..48b4d2b6e76 100644 --- a/chromium/v8/src/runtime/runtime-interpreter.cc +++ b/chromium/v8/src/runtime/runtime-interpreter.cc @@ -4,19 +4,19 @@ #include <iomanip> -#include "src/arguments-inl.h" -#include "src/counters.h" -#include "src/frames-inl.h" +#include "src/execution/arguments-inl.h" +#include "src/execution/frames-inl.h" +#include "src/execution/isolate-inl.h" #include "src/interpreter/bytecode-array-iterator.h" #include "src/interpreter/bytecode-decoder.h" #include "src/interpreter/bytecode-flags.h" #include "src/interpreter/bytecode-register.h" #include "src/interpreter/bytecodes.h" #include "src/interpreter/interpreter.h" -#include "src/isolate-inl.h" -#include "src/ostreams.h" +#include "src/logging/counters.h" #include "src/runtime/runtime-utils.h" #include "src/snapshot/snapshot.h" +#include "src/utils/ostreams.h" namespace v8 { namespace internal { @@ -84,7 +84,7 @@ void PrintRegisters(Isolate* isolate, std::ostream& os, bool is_input, << interpreter::Register(reg_index).ToString( bytecode_iterator.bytecode_array()->parameter_count()) << kArrowDirection; - reg_object->ShortPrint(os); + reg_object.ShortPrint(os); os << " ]" << std::endl; } } @@ -173,13 +173,13 @@ RUNTIME_FUNCTION(Runtime_InterpreterTraceUpdateFeedback) { CONVERT_SMI_ARG_CHECKED(slot, 1); CONVERT_ARG_CHECKED(String, reason, 2); - int slot_count = function->feedback_vector()->metadata()->slot_count(); + int slot_count = function->feedback_vector().metadata().slot_count(); StdoutStream os; os << "[Feedback slot " << slot << "/" << slot_count << " in "; - function->shared()->ShortPrint(os); + function->shared().ShortPrint(os); os << " updated to "; - function->feedback_vector()->FeedbackSlotPrint(os, FeedbackSlot(slot)); + function->feedback_vector().FeedbackSlotPrint(os, FeedbackSlot(slot)); os << " - "; StringCharacterStream stream(reason); |