Home
last modified time | relevance | path

Searched refs:LW (Results 1 – 25 of 108) sorted by relevance

12345

/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_utils.cpp126 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 Dxray_basic_logging.cpp88 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 Dxray_profiling.cpp241 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 Dxray_fdr_logging.cpp337 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 Dstacktrace.cpp182 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 Dmemory.cpp147 LW("Don't know how to query the physical memory"); in physical_memory()
H A Dsanity.cpp120 LW(F("Could not install crash handler for signal %s: %s") % in install_one_crash_handler()
/freebsd/contrib/kyua/utils/fs/
H A Dauto_cleaners.cpp67 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 Dconfig.cpp114 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 Dmain_test.cpp291 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 DRISCVExpandPseudoInsts.cpp374 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 DRISCVMakeCompressible.cpp109 case RISCV::LW: in log2LdstWidth()
134 case RISCV::LW: in offsetMask()
191 case RISCV::LW: in isCompressibleLoad()
H A DRISCVInstrInfoZalasr.td50 defm LW : LAQ_r_aq_rl<0b010, "lw">;
/freebsd/contrib/kyua/utils/signals/
H A Dtimer.cpp445 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 Dmisc.cpp99 LW(e.what()); in reset_all()
H A Dprogrammer.cpp107 LW("Destroying still-programmed signals::programmer object"); in ~programmer()
/freebsd/contrib/kyua/store/
H A Dlayout.cpp97 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 Dmacros.hpp64 #define LW(message) utils::logging::log(utils::logging::level_warning, \ macro
H A Dmacros_test.cpp98 LW("Warning message"); in ATF_TEST_CASE_BODY()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp212 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 DMicroMipsSizeReduction.cpp240 {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 Dtransaction.cpp76 LW(F("Error while rolling back a transaction: %s") % e.what()); in ~impl()
/freebsd/contrib/kyua/utils/process/
H A Dexecutor.cpp351 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 Disolation.cpp146 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 DRISCVInstructions.h115 I_TYPE_INST(LW);
276 LUI, AUIPC, JAL, JALR, B, LB, LH, LW, LBU, LHU, SB, SH, SW, ADDI, SLTI,

12345