Home
last modified time | relevance | path

Searched refs:NValue (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp311 uint64_t NValue = 0; in darwinPrintSymbol() local
347 NValue = STE_64.n_value; in darwinPrintSymbol()
353 NValue = S.Address; in darwinPrintSymbol()
365 NValue = STE.n_value; in darwinPrintSymbol()
371 NValue = S.Address; in darwinPrintSymbol()
378 outs() << format(printFormat, NValue) << ' ' in darwinPrintSymbol()
383 outs() << format(printFormat, NValue) << ' '; in darwinPrintSymbol()
407 if (NValue != 0) { in darwinPrintSymbol()
537 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) || in darwinPrintSymbol()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp1713 uint64_t NValue = 0; in checkSymbolTable() local
1724 NValue = STE_64.n_value; in checkSymbolTable()
1731 NValue = STE.n_value; in checkSymbolTable()
1740 if (NValue >= S.strsize) in checkSymbolTable()
1741 return malformedError("bad n_value: " + Twine((int)NValue) + " past " in checkSymbolTable()
1746 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) || in checkSymbolTable()
1812 uint64_t NValue = getNValue(Symb); in getIndirectName() local
1813 if (NValue >= StringTable.size()) in getIndirectName()
1815 const char *Start = &StringTable.data()[NValue]; in getIndirectName()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp368 auto *NValue = Rem->getOperand(0); in simplifyIVRemainder() local
373 bool UsedAsNumerator = IVOperand == NValue; in simplifyIVRemainder()
377 const SCEV *N = SE->getSCEV(NValue); in simplifyIVRemainder()