2017-10-02 07:39:30 +00:00
|
|
|
// 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"
|
2018-08-01 10:03:27 +00:00
|
|
|
#include "src/v8memory.h"
|
2019-02-25 16:48:13 +00:00
|
|
|
#include "src/vector.h"
|
2017-10-02 07:39:30 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2018-01-12 17:46:03 +00:00
|
|
|
namespace wasm {
|
2017-10-02 07:39:30 +00:00
|
|
|
|
2018-08-21 15:01:31 +00:00
|
|
|
void TraceMemoryOperation(ExecutionTier tier, const MemoryTracingInfo* info,
|
2017-10-02 07:39:30 +00:00
|
|
|
int func_index, int position, uint8_t* mem_start) {
|
|
|
|
EmbeddedVector<char, 64> value;
|
2018-01-12 17:46:03 +00:00
|
|
|
auto mem_rep = static_cast<MachineRepresentation>(info->mem_rep);
|
|
|
|
switch (mem_rep) {
|
2018-04-13 22:28:05 +00:00
|
|
|
#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)); \
|
2017-10-02 07:39:30 +00:00
|
|
|
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, "???");
|
|
|
|
}
|
2018-07-19 09:03:20 +00:00
|
|
|
const char* eng = "?";
|
2018-08-21 15:01:31 +00:00
|
|
|
switch (tier) {
|
2019-04-03 15:37:47 +00:00
|
|
|
case ExecutionTier::kTurbofan:
|
2018-07-19 09:03:20 +00:00
|
|
|
eng = "turbofan";
|
2017-10-02 07:39:30 +00:00
|
|
|
break;
|
2019-04-03 15:37:47 +00:00
|
|
|
case ExecutionTier::kLiftoff:
|
2018-07-19 09:03:20 +00:00
|
|
|
eng = "liftoff";
|
2018-01-12 17:46:03 +00:00
|
|
|
break;
|
2018-08-21 15:01:31 +00:00
|
|
|
case ExecutionTier::kInterpreter:
|
2018-07-19 09:03:20 +00:00
|
|
|
eng = "interpreter";
|
2017-10-02 07:39:30 +00:00
|
|
|
break;
|
2019-04-03 15:37:47 +00:00
|
|
|
case ExecutionTier::kNone:
|
|
|
|
UNREACHABLE();
|
2017-10-02 07:39:30 +00:00
|
|
|
}
|
2018-07-19 09:03:20 +00:00
|
|
|
printf("%-11s func:%6d+0x%-6x%s %08x val: %s\n", eng, func_index, position,
|
|
|
|
info->is_store ? " store to" : "load from", info->address,
|
|
|
|
value.start());
|
2017-10-02 07:39:30 +00:00
|
|
|
}
|
|
|
|
|
2018-01-12 17:46:03 +00:00
|
|
|
} // namespace wasm
|
2017-10-02 07:39:30 +00:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|