Home
last modified time | relevance | path

Searched refs:signals (Results 1 – 12 of 12) sorted by relevance

/art/runtime/arch/arm/
Dfault_handler_arm.cc64 VLOG(signals) << "longjmp address: " << reinterpret_cast<void*>(sc->arm_pc); in HandleNestedSignal()
73 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp()
97 VLOG(signals) << "pc: " << std::hex << static_cast<void*>(ptr); in GetMethodAndReturnPcAndSp()
126 VLOG(signals) << "Generating null pointer exception"; in Action()
149 VLOG(signals) << "checking suspend"; in Action()
152 VLOG(signals) << "inst2: " << std::hex << inst2 << " checkinst2: " << checkinst2; in Action()
164 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1; in Action()
172 VLOG(signals) << "suspend check match"; in Action()
180 VLOG(signals) << "arm lr: " << std::hex << sc->arm_lr; in Action()
181 VLOG(signals) << "arm pc: " << std::hex << sc->arm_pc; in Action()
[all …]
/art/runtime/arch/arm64/
Dfault_handler_arm64.cc62 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp()
81 VLOG(signals) << "pc: " << std::hex in GetMethodAndReturnPcAndSp()
99 VLOG(signals) << "Generating null pointer exception"; in Action()
122 VLOG(signals) << "checking suspend"; in Action()
125 VLOG(signals) << "inst2: " << std::hex << inst2 << " checkinst2: " << checkinst2; in Action()
137 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1; in Action()
145 VLOG(signals) << "suspend check match"; in Action()
156 VLOG(signals) << "removed suspend trigger invoking test suspend"; in Action()
166 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action()
167 VLOG(signals) << "sigcontext: " << std::hex << sc; in Action()
[all …]
/art/runtime/arch/mips/
Dfault_handler_mips.cc48 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp()
68 VLOG(signals) << "pc: " << std::hex in GetMethodAndReturnPcAndSp()
86 VLOG(signals) << "Generating null pointer exception"; in Action()
111 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action()
112 VLOG(signals) << "sigcontext: " << std::hex << sc; in Action()
115 VLOG(signals) << "sp: " << std::hex << sp; in Action()
118 VLOG(signals) << "fault_addr: " << std::hex << fault_addr; in Action()
119 VLOG(signals) << "checking for stack overflow, sp: " << std::hex << sp << in Action()
126 VLOG(signals) << "Not a stack overflow"; in Action()
130 VLOG(signals) << "Stack overflow found"; in Action()
/art/runtime/arch/mips64/
Dfault_handler_mips64.cc48 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp()
68 VLOG(signals) << "pc: " << std::hex in GetMethodAndReturnPcAndSp()
86 VLOG(signals) << "Generating null pointer exception"; in Action()
111 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action()
112 VLOG(signals) << "sigcontext: " << std::hex << sc; in Action()
115 VLOG(signals) << "sp: " << std::hex << sp; in Action()
118 VLOG(signals) << "fault_addr: " << std::hex << fault_addr; in Action()
119 VLOG(signals) << "checking for stack overflow, sp: " << std::hex << sp << in Action()
126 VLOG(signals) << "Not a stack overflow"; in Action()
130 VLOG(signals) << "Stack overflow found"; in Action()
/art/runtime/
Dfault_handler.cc77 VLOG(signals)<< "Caught unknown SIGSEGV in ART fault handler - chaining to next handler."; in art_sigsegv_fault()
124 VLOG(signals) << "Failed to claim SEGV: " << strerror(errno); in Init()
153 VLOG(signals) << "Handling fault"; in HandleFault()
155 VLOG(signals) << "in generated code, looking for handler"; in HandleFault()
157 VLOG(signals) << "invoking Action on handler " << handler; in HandleFault()
303 VLOG(signals) << "Checking for generated code"; in IsInGeneratedCode()
306 VLOG(signals) << "no current thread"; in IsInGeneratedCode()
312 VLOG(signals) << "not runnable"; in IsInGeneratedCode()
319 VLOG(signals) << "no lock"; in IsInGeneratedCode()
332 VLOG(signals) << "potential method: " << method_obj; in IsInGeneratedCode()
[all …]
Dsignal_catcher.cc161 int SignalCatcher::WaitForSignal(Thread* self, SignalSet& signals) { in WaitForSignal() argument
168 int signal_number = signals.Wait(); in WaitForSignal()
198 SignalSet signals; in Run() local
199 signals.Add(SIGQUIT); in Run()
200 signals.Add(SIGUSR1); in Run()
203 int signal_number = signal_catcher->WaitForSignal(self, signals); in Run()
Dsignal_catcher.h50 int WaitForSignal(Thread* self, SignalSet& signals);
Druntime.cc1302 SignalSet signals; in BlockSignals() local
1303 signals.Add(SIGPIPE); in BlockSignals()
1305 signals.Add(SIGQUIT); in BlockSignals()
1307 signals.Add(SIGUSR1); in BlockSignals()
1308 signals.Block(); in BlockSignals()
/art/runtime/arch/x86/
Dfault_handler_x86.cc208 VLOG(signals) << "Unhandled x86 instruction with opcode " << static_cast<int>(opcode); in GetInstructionSize()
232 VLOG(signals) << "x86 instruction length calculated as " << (pc - startpc); in GetInstructionSize()
256 VLOG(signals) << "sp: " << std::hex << *out_sp; in GetMethodAndReturnPcAndSp()
278 VLOG(signals) << HexDump(pc, 32, true, "PC "); in GetMethodAndReturnPcAndSp()
318 VLOG(signals) << "Generating null pointer exception"; in Action()
344 VLOG(signals) << "Checking for suspension point"; in Action()
360 VLOG(signals) << "Not a suspension point"; in Action()
378 VLOG(signals) << "suspend check match"; in Action()
395 VLOG(signals) << "removed suspend trigger invoking test suspend"; in Action()
398 VLOG(signals) << "Not a suspend check match, first instruction mismatch"; in Action()
[all …]
/art/runtime/base/
Dlogging.h50 bool signals; member
/art/cmdline/
Dcmdline_parser_test.cc237 log_verbosity.signals = true; in TEST_F()
Dcmdline_types.h605 log_verbosity.signals = true;