/freebsd/contrib/llvm-project/compiler-rt/lib/xray/ |
H A D | xray_utils.cpp | 126 LogWriter *LW = reinterpret_cast<LogWriter *>(InternalAlloc(sizeof(LogWriter))); in Open() local 127 new (LW) LogWriter(Vmo); in Open() 128 return LW; in Open() 131 void LogWriter::Close(LogWriter *LW) { in Close() argument 132 LW->~LogWriter(); in Close() 133 InternalFree(LW); in Close() 189 LogWriter *LW = allocate<LogWriter>(); 190 new (LW) LogWriter(Fd); 191 return LW; 194 void LogWriter::Close(LogWriter *LW) { [all...] |
H A D | xray_basic_logging.cpp | 88 LogWriter* LW = LogWriter::Open(); in getLog() local 89 if (LW == nullptr) in getLog() 90 return LW; in getLog() 112 LW->WriteAll(reinterpret_cast<char *>(&Header), in getLog() 114 return LW; in getLog() 119 static LogWriter *LW = nullptr; in getGlobalLog() local 120 pthread_once(&OnceInit, +[] { LW = getLog(); }); in getGlobalLog() 121 return LW; in getGlobalLog() 161 LogWriter *LW = getGlobalLog(); in InMemoryRawLog() local 162 if (LW == nullptr) in InMemoryRawLog() [all …]
|
H A D | xray_profiling.cpp | 241 LogWriter *LW = LogWriter::Open(); in profilingFlush() local 242 if (LW == nullptr) { in profilingFlush() 249 LW->WriteAll(reinterpret_cast<const char *>(B.Data), in profilingFlush() 253 LogWriter::Close(LW); in profilingFlush()
|
H A D | xray_fdr_logging.cpp | 337 LogWriter *LW = LogWriter::Open(); in fdrLoggingFlush() local 338 if (LW == nullptr) { in fdrLoggingFlush() 346 LW->WriteAll(reinterpret_cast<char *>(&Header), in fdrLoggingFlush() 370 LW->WriteAll(reinterpret_cast<char *>(&ExtentsRecord), in fdrLoggingFlush() 373 LW->WriteAll(reinterpret_cast<char *>(B.Data), in fdrLoggingFlush()
|
/freebsd/contrib/kyua/utils/ |
H A D | stacktrace.cpp | 182 LW("The builtin path to GDB is bogus, which probably indicates a bug " in find_gdb() 247 LW(F("getrlimit should not have failed but got: %s") % in unlimit_core_size() 252 LW("getrlimit returned 0 for RLIMIT_CORE rlim_max; cannot raise " in unlimit_core_size() 261 LW(F("setrlimit should not have failed but got: %s") % in unlimit_core_size() 297 LW(F("Failed to open %s to append GDB's output") % in dump_stacktrace()
|
H A D | memory.cpp | 147 LW("Don't know how to query the physical memory"); in physical_memory()
|
H A D | sanity.cpp | 120 LW(F("Could not install crash handler for signal %s: %s") % in install_one_crash_handler()
|
/freebsd/contrib/kyua/utils/fs/ |
H A D | auto_cleaners.cpp | 67 LW(F("Failed to auto-cleanup directory '%s': %s") % _directory % in ~impl() 179 LW(F("Failed to auto-cleanup file '%s': %s") % _file % in ~impl()
|
/freebsd/contrib/kyua/cli/ |
H A D | config.cpp | 114 LW(F("Failed to load user-specific configuration file '%s': %s") % in load_config_file() 218 LW(F("Ignoring failure to load configuration because the requested " in load_config()
|
H A D | main_test.cpp | 291 LW("Mock warning message"); in ATF_TEST_CASE_BODY() 315 LW("Mock warning message"); in ATF_TEST_CASE_BODY() 339 LW("Mock warning message"); in ATF_TEST_CASE_BODY()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVExpandPseudoInsts.cpp | 374 BuildMI(MBB, MBBI, DL, TII->get(RISCV::LW), Lo) in expandRV32ZdinxLoad() 384 BuildMI(MBB, MBBI, DL, TII->get(RISCV::LW), Hi) in expandRV32ZdinxLoad() 391 BuildMI(MBB, MBBI, DL, TII->get(RISCV::LW), Hi) in expandRV32ZdinxLoad() 399 BuildMI(MBB, MBBI, DL, TII->get(RISCV::LW), Lo) in expandRV32ZdinxLoad() 557 unsigned SecondOpcode = STI->is64Bit() ? RISCV::LD : RISCV::LW; in expandLoadGlobalAddress() 565 unsigned SecondOpcode = STI->is64Bit() ? RISCV::LD : RISCV::LW; in expandLoadTLSIEAddress() 585 unsigned SecondOpcode = STI.is64Bit() ? RISCV::LD : RISCV::LW; in expandLoadTLSDescAddress()
|
H A D | RISCVMakeCompressible.cpp | 109 case RISCV::LW: in log2LdstWidth() 134 case RISCV::LW: in offsetMask() 191 case RISCV::LW: in isCompressibleLoad()
|
H A D | RISCVInstrInfoZalasr.td | 50 defm LW : LAQ_r_aq_rl<0b010, "lw">;
|
/freebsd/contrib/kyua/utils/signals/ |
H A D | timer.cpp | 445 LW("Auto-destroying still-programmed signals::timer object"); in ~timer() 456 LW("Expired timer never fired; the code never called unprogram()!"); in ~timer() 542 LW(F("Firing expired timer on destruction (was to fire on %s)") % in unprogram()
|
H A D | misc.cpp | 99 LW(e.what()); in reset_all()
|
H A D | programmer.cpp | 107 LW("Destroying still-programmed signals::programmer object"); in ~programmer()
|
/freebsd/contrib/kyua/store/ |
H A D | layout.cpp | 97 LW(F("Failed to open store dir %s: %s") % store_dir % e.what()); in find_latest() 240 LW("HOME not defined; creating store database in current " in query_store_dir()
|
/freebsd/contrib/kyua/utils/logging/ |
H A D | macros.hpp | 64 #define LW(message) utils::logging::log(utils::logging::level_warning, \ macro
|
H A D | macros_test.cpp | 98 LW("Warning message"); in ATF_TEST_CASE_BODY()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsInstructionSelector.cpp | 212 return Mips::LW; in selectLoadStoreOpCode() 384 MachineInstr *LW = in select() local 385 BuildMI(MBB, I, I.getDebugLoc(), TII.get(Mips::LW)) in select() 391 if (!constrainSelectedInstRegOperands(*LW, TII, TRI, RBI)) in select() 396 LW->getOperand(0).setReg(DestTmp); in select() 664 MachineInstr *LWGOT = BuildMI(MBB, I, I.getDebugLoc(), TII.get(Mips::LW)) in select() 720 MI = BuildMI(MBB, I, I.getDebugLoc(), TII.get(Mips::LW)) in select()
|
H A D | MicroMipsSizeReduction.cpp | 240 {RT_TwoInstr, OpCodes(Mips::LW, Mips::LWP_MM), ReduceXWtoXWP, 242 {RT_OneInstr, OpCodes(Mips::LW, Mips::LWSP_MM), ReduceXWtoXWSP, 355 !(MI->getOpcode() == Mips::LW || MI->getOpcode() == Mips::LW_MM || in CheckXWPInstr() 468 bool ReduceToLwp = (MI1->getOpcode() == Mips::LW) || in ReduceXWtoXWP()
|
/freebsd/contrib/kyua/utils/sqlite/ |
H A D | transaction.cpp | 76 LW(F("Error while rolling back a transaction: %s") % e.what()); in ~impl()
|
/freebsd/contrib/kyua/utils/process/ |
H A D | executor.cpp | 351 LW(F("Implicitly cleaning up exit_handle for exec_handle %s; " in ~impl() 576 LW("Implicitly cleaning up executor; ignoring errors!"); in ~impl() 601 LW(F("Failed to wait for PID %s") % pid); in cleanup()
|
H A D | isolation.cpp | 146 LW("Failed to reset one or more signals to their default behavior"); in isolate_child()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/ |
H A D | RISCVInstructions.h | 115 I_TYPE_INST(LW); 276 LUI, AUIPC, JAL, JALR, B, LB, LH, LW, LBU, LHU, SB, SH, SW, ADDI, SLTI,
|