Searched refs:LOG_DISASM (Results 1 - 10 of 10) sorted by relevance
/third_party/vixl/src/aarch64/ |
H A D | simulator-constants-aarch64.h | 124 LOG_DISASM = 1 << 0, // Log disassembly. enumerator 133 LOG_ALL = LOG_DISASM | LOG_STATE | LOG_WRITE | LOG_BRANCH 147 // LOG_DISASM is not supported for Log.
|
H A D | debugger-aarch64.cc | 395 sim_->SetTraceParameters(sim_->GetTraceParameters() | LOG_DISASM); in Action() 399 sim_->SetTraceParameters(sim_->GetTraceParameters() & ~LOG_DISASM); in Action()
|
H A D | simulator-aarch64.cc | 897 bool disasm_before = trace_parameters_ & LOG_DISASM; in Simulator() 899 bool disasm_after = trace_parameters_ & LOG_DISASM; in Simulator() 14470 // We don't support a one-shot LOG_DISASM. in Simulator() 14471 VIXL_ASSERT((parameters & LOG_DISASM) == 0); in Simulator()
|
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | instructions-arm64.h | 540 // __ debug("trace disasm", 1, TRACE_ENABLE | LOG_DISASM); 552 LOG_DISASM = 1 << 1, // Use only with TRACE. Disassemble the code. enumerator 560 LOG_ALL = LOG_DISASM | LOG_STATE | LOG_WRITE,
|
/third_party/vixl/test/aarch64/ |
H A D | test-assembler-aarch64.h | 145 if (Test::trace_sim()) trace_parameters |= LOG_DISASM; \
|
H A D | test-simulator-aarch64.cc | 87 __ Trace(LOG_DISASM, TRACE_ENABLE); \
|
H A D | test-trace-aarch64.cc | 3133 TEST(disasm) { TraceTestHelper(false, LOG_DISASM, REF("log-disasm")); } 3148 TraceTestHelper(true, LOG_DISASM, REF("log-disasm-colour"));
|
/third_party/vixl/test/aarch64/examples/ |
H A D | test-examples.cc | 173 if (Test::trace_sim()) trace_parameters |= LOG_DISASM; \
|
/third_party/node/deps/v8/src/execution/arm64/ |
H A D | simulator-arm64.h | 1370 if (new_parameters & LOG_DISASM) { in set_log_parameters() 1375 if (new_parameters & LOG_DISASM) { in set_log_parameters()
|
H A D | simulator-arm64.cc | 3546 set_log_parameters(log_parameters() | LOG_DISASM); 3550 set_log_parameters(log_parameters() & ~LOG_DISASM); 3813 set_log_parameters(log_parameters_ | LOG_DISASM); 3866 // We don't support a one-shot LOG_DISASM. 3867 DCHECK_EQ(parameters & LOG_DISASM, 0);
|
Completed in 44 milliseconds