Searched refs:signals (Results 1 – 17 of 17) 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 | 47 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp() 67 VLOG(signals) << "pc: " << std::hex in GetMethodAndReturnPcAndSp() 94 VLOG(signals) << "Generating null pointer exception"; in Action() 119 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action() 120 VLOG(signals) << "sigcontext: " << std::hex << sc; in Action() 123 VLOG(signals) << "sp: " << std::hex << sp; in Action() 126 VLOG(signals) << "fault_addr: " << std::hex << fault_addr; in Action() 127 VLOG(signals) << "checking for stack overflow, sp: " << std::hex << sp << in Action() 134 VLOG(signals) << "Not a stack overflow"; in Action() 138 VLOG(signals) << "Stack overflow found"; in Action()
|
/art/runtime/arch/mips/ |
D | fault_handler_mips.cc | 46 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp() 66 VLOG(signals) << "pc: " << std::hex in GetMethodAndReturnPcAndSp() 92 VLOG(signals) << "Generating null pointer exception"; in Action() 117 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc; in Action() 118 VLOG(signals) << "sigcontext: " << std::hex << sc; in Action() 121 VLOG(signals) << "sp: " << std::hex << sp; in Action() 124 VLOG(signals) << "fault_addr: " << std::hex << fault_addr; in Action() 125 VLOG(signals) << "checking for stack overflow, sp: " << std::hex << sp << in Action() 132 VLOG(signals) << "Not a stack overflow"; in Action() 136 VLOG(signals) << "Stack overflow found"; in Action()
|
/art/runtime/ |
D | fault_handler.cc | 43 VLOG(signals)<< "Caught unknown SIGSEGV in ART fault handler - chaining to next handler."; in art_sigsegv_fault() 210 if (VLOG_IS_ON(signals)) { in HandleFault() 211 PrintSignalInfo(VLOG_STREAM(signals) << "Handling fault:" << "\n", info); in HandleFault() 220 VLOG(signals) << "in generated code, looking for handler"; in HandleFault() 222 VLOG(signals) << "invoking Action on handler " << handler; in HandleFault() 271 VLOG(signals) << "Checking for generated code"; in IsInGeneratedCode() 274 VLOG(signals) << "no current thread"; in IsInGeneratedCode() 280 VLOG(signals) << "not runnable"; in IsInGeneratedCode() 287 VLOG(signals) << "no lock"; in IsInGeneratedCode() 300 VLOG(signals) << "potential method: " << method_obj; in IsInGeneratedCode() [all …]
|
D | signal_catcher.cc | 150 int SignalCatcher::WaitForSignal(Thread* self, SignalSet& signals) { in WaitForSignal() argument 157 int signal_number = signals.Wait(); in WaitForSignal() 187 SignalSet signals; in Run() local 188 signals.Add(SIGQUIT); in Run() 189 signals.Add(SIGUSR1); in Run() 192 int signal_number = signal_catcher->WaitForSignal(self, signals); in Run()
|
D | signal_catcher.h | 51 int WaitForSignal(Thread* self, SignalSet& signals) REQUIRES(!lock_);
|
D | parsed_options_test.cc | 104 EXPECT_FALSE(VLOG_IS_ON(signals)); in TEST_F()
|
D | runtime.cc | 2025 SignalSet signals; in BlockSignals() local 2026 signals.Add(SIGPIPE); in BlockSignals() 2028 signals.Add(SIGQUIT); in BlockSignals() 2030 signals.Add(SIGUSR1); in BlockSignals() 2031 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/libartbase/base/ |
D | logging.h | 47 bool signals; member
|
/art/tools/timeout_dumper/ |
D | timeout_dumper.cc | 662 timeout_signal::SignalSet signals; in SetupAndWait() local 663 signals.Add(timeout_signal::GetTimeoutSignal()); in SetupAndWait() 664 signals.Block(); in SetupAndWait() 669 signals.Block(); in SetupAndWait() 670 int sig = signals.Wait(); in SetupAndWait()
|
/art/openjdkjvmti/ |
D | ti_class_definition.cc | 52 VLOG(signals) << "Initializing de-quickened memory for dex file of " << name_; in InitializeMemory() 102 VLOG(signals) << "Lazy dex file for " << name_ << " was never touched but the dex_data_ is " in IsModified()
|
D | transform.cc | 138 VLOG(signals) << "Lazy initialization of dex file for transformation of " << res->GetName() in Action()
|
D | OpenjdkJvmTi.cc | 1422 art::gLogVerbosity.signals = val; in SetVerboseFlag()
|
/art/cmdline/ |
D | cmdline_parser_test.cc | 272 log_verbosity.signals = true; in TEST_F()
|
D | cmdline_types.h | 583 log_verbosity.signals = true;
|