memory-tracing.cc 1.99 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
// Copyright 2017 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/wasm/memory-tracing.h"

#include "src/utils.h"

namespace v8 {
namespace internal {
11
namespace wasm {
12

13
void TraceMemoryOperation(ExecutionEngine engine, const MemoryTracingInfo* info,
14 15
                          int func_index, int position, uint8_t* mem_start) {
  EmbeddedVector<char, 64> value;
16 17
  auto mem_rep = static_cast<MachineRepresentation>(info->mem_rep);
  switch (mem_rep) {
18 19 20 21 22 23 24
#define TRACE_TYPE(rep, str, format, ctype1, ctype2)                     \
  case MachineRepresentation::rep:                                       \
    SNPrintF(value, str ":" format,                                      \
             ReadLittleEndianValue<ctype1>(                              \
                 reinterpret_cast<Address>(mem_start) + info->address),  \
             ReadLittleEndianValue<ctype2>(                              \
                 reinterpret_cast<Address>(mem_start) + info->address)); \
25 26 27 28 29 30 31 32 33 34 35 36 37
    break;
    TRACE_TYPE(kWord8, " i8", "%d / %02x", uint8_t, uint8_t)
    TRACE_TYPE(kWord16, "i16", "%d / %04x", uint16_t, uint16_t)
    TRACE_TYPE(kWord32, "i32", "%d / %08x", uint32_t, uint32_t)
    TRACE_TYPE(kWord64, "i64", "%" PRId64 " / %016" PRIx64, uint64_t, uint64_t)
    TRACE_TYPE(kFloat32, "f32", "%f / %08x", float, uint32_t)
    TRACE_TYPE(kFloat64, "f64", "%f / %016" PRIx64, double, uint64_t)
#undef TRACE_TYPE
    default:
      SNPrintF(value, "???");
  }
  char eng_c = '?';
  switch (engine) {
38 39
    case ExecutionEngine::kTurbofan:
      eng_c = 'T';
40
      break;
41 42 43 44
    case ExecutionEngine::kLiftoff:
      eng_c = 'L';
      break;
    case ExecutionEngine::kInterpreter:
45 46 47 48
      eng_c = 'I';
      break;
  }
  printf("%c %8d+0x%-6x %s @%08x %s\n", eng_c, func_index, position,
49
         info->is_store ? "store" : "load ", info->address, value.start());
50 51
}

52
}  // namespace wasm
53 54
}  // namespace internal
}  // namespace v8