Searched refs:signals (Results 1 – 14 of 14) sorted by relevance
/art/runtime/arch/arm/ |
D | fault_handler_arm.cc | 54 VLOG(signals) << "sp: " << std::hex << *out_sp; in GetMethodAndReturnPcAndSp() 78 VLOG(signals) << "pc: " << std::hex << static_cast<void*>(ptr); in GetMethodAndReturnPcAndSp() 115 VLOG(signals) << "Generating null pointer exception"; in Action() 139 VLOG(signals) << "checking suspend"; in Action() 142 VLOG(signals) << "inst2: " << std::hex << inst2 << " checkinst2: " << checkinst2; in Action() 154 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1; in Action() 162 VLOG(signals) << "suspend check match"; in Action() 170 VLOG(signals) << "arm lr: " << std::hex << sc->arm_lr; in Action() 171 VLOG(signals) << "arm pc: " << std::hex << sc->arm_pc; in Action() 177 VLOG(signals) << "removed suspend trigger invoking test suspend"; in Action() [all …]
|
/art/runtime/arch/arm64/ |
D | fault_handler_arm64.cc | 47 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp() 66 VLOG(signals) << "pc: " << std::hex in GetMethodAndReturnPcAndSp() 89 VLOG(signals) << "Generating null pointer exception"; in Action() 113 VLOG(signals) << "checking suspend"; in Action() 116 VLOG(signals) << "inst2: " << std::hex << inst2 << " checkinst2: " << checkinst2; in Action() 128 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1; in Action() 136 VLOG(signals) << "suspend check match"; in Action() 147 VLOG(signals) << "removed suspend trigger invoking test suspend"; in Action() 157 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action() 158 VLOG(signals) << "sigcontext: " << std::hex << sc; in Action() [all …]
|
/art/runtime/arch/mips64/ |
D | fault_handler_mips64.cc | 46 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp() 66 VLOG(signals) << "pc: " << std::hex in GetMethodAndReturnPcAndSp() 93 VLOG(signals) << "Generating null pointer exception"; in Action() 118 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action() 119 VLOG(signals) << "sigcontext: " << std::hex << sc; in Action() 122 VLOG(signals) << "sp: " << std::hex << sp; in Action() 125 VLOG(signals) << "fault_addr: " << std::hex << fault_addr; in Action() 126 VLOG(signals) << "checking for stack overflow, sp: " << std::hex << sp << in Action() 133 VLOG(signals) << "Not a stack overflow"; in Action() 137 VLOG(signals) << "Stack overflow found"; in Action()
|
/art/runtime/arch/mips/ |
D | fault_handler_mips.cc | 45 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp() 65 VLOG(signals) << "pc: " << std::hex in GetMethodAndReturnPcAndSp() 91 VLOG(signals) << "Generating null pointer exception"; in Action() 116 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action() 117 VLOG(signals) << "sigcontext: " << std::hex << sc; in Action() 120 VLOG(signals) << "sp: " << std::hex << sp; in Action() 123 VLOG(signals) << "fault_addr: " << std::hex << fault_addr; in Action() 124 VLOG(signals) << "checking for stack overflow, sp: " << std::hex << sp << in Action() 131 VLOG(signals) << "Not a stack overflow"; in Action() 135 VLOG(signals) << "Stack overflow found"; in Action()
|
/art/runtime/ |
D | fault_handler.cc | 39 VLOG(signals)<< "Caught unknown SIGSEGV in ART fault handler - chaining to next handler."; in art_sigsegv_fault() 186 VLOG(signals) << "Handling fault"; in HandleFault() 194 VLOG(signals) << "in generated code, looking for handler"; in HandleFault() 196 VLOG(signals) << "invoking Action on handler " << handler; in HandleFault() 245 VLOG(signals) << "Checking for generated code"; in IsInGeneratedCode() 248 VLOG(signals) << "no current thread"; in IsInGeneratedCode() 254 VLOG(signals) << "not runnable"; in IsInGeneratedCode() 261 VLOG(signals) << "no lock"; in IsInGeneratedCode() 274 VLOG(signals) << "potential method: " << method_obj; in IsInGeneratedCode() 279 VLOG(signals) << "no method"; in IsInGeneratedCode() [all …]
|
D | signal_catcher.cc | 211 int SignalCatcher::WaitForSignal(Thread* self, SignalSet& signals) { in WaitForSignal() argument 218 int signal_number = signals.Wait(); in WaitForSignal() 248 SignalSet signals; in Run() local 249 signals.Add(SIGQUIT); in Run() 250 signals.Add(SIGUSR1); in Run() 253 int signal_number = signal_catcher->WaitForSignal(self, signals); in Run()
|
D | signal_catcher.h | 65 int WaitForSignal(Thread* self, SignalSet& signals) REQUIRES(!lock_);
|
D | parsed_options_test.cc | 101 EXPECT_FALSE(VLOG_IS_ON(signals)); in TEST_F()
|
D | runtime.cc | 1758 SignalSet signals; in BlockSignals() local 1759 signals.Add(SIGPIPE); in BlockSignals() 1761 signals.Add(SIGQUIT); in BlockSignals() 1763 signals.Add(SIGUSR1); in BlockSignals() 1764 signals.Block(); in BlockSignals()
|
/art/runtime/arch/x86/ |
D | fault_handler_x86.cc | 249 VLOG(signals) << "Unhandled x86 instruction with opcode " << static_cast<int>(opcode); in GetInstructionSize() 273 VLOG(signals) << "x86 instruction length calculated as " << (pc - startpc); in GetInstructionSize() 285 VLOG(signals) << "sp: " << std::hex << *out_sp; in GetMethodAndReturnPcAndSp() 307 VLOG(signals) << HexDump(pc, 32, true, "PC "); in GetMethodAndReturnPcAndSp() 352 VLOG(signals) << "Generating null pointer exception"; in Action() 374 VLOG(signals) << "Checking for suspension point"; in Action() 390 VLOG(signals) << "Not a suspension point"; in Action() 408 VLOG(signals) << "suspend check match"; in Action() 425 VLOG(signals) << "removed suspend trigger invoking test suspend"; in Action() 428 VLOG(signals) << "Not a suspend check match, first instruction mismatch"; in Action() [all …]
|
/art/runtime/base/ |
D | logging.h | 50 bool signals; member
|
/art/cmdline/ |
D | cmdline_parser_test.cc | 256 log_verbosity.signals = true; in TEST_F()
|
D | cmdline_types.h | 644 log_verbosity.signals = true;
|
/art/runtime/openjdkjvmti/ |
D | OpenjdkJvmTi.cc | 1615 art::gLogVerbosity.signals = val; in SetVerboseFlag()
|