Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp326 uint64_t NValue = 0; in darwinPrintSymbol() local
362 NValue = STE_64.n_value; in darwinPrintSymbol()
368 NValue = S.Address; in darwinPrintSymbol()
380 NValue = STE.n_value; in darwinPrintSymbol()
386 NValue = S.Address; in darwinPrintSymbol()
393 outs() << format(printFormat, NValue) << ' ' in darwinPrintSymbol()
398 outs() << format(printFormat, NValue) << ' '; in darwinPrintSymbol()
422 if (NValue != 0) { in darwinPrintSymbol()
552 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) || in darwinPrintSymbol()
/llvm-project-15.0.7/llvm/lib/Object/
H A DMachOObjectFile.cpp1701 uint64_t NValue = 0; in checkSymbolTable() local
1712 NValue = STE_64.n_value; in checkSymbolTable()
1719 NValue = STE.n_value; in checkSymbolTable()
1728 if (NValue >= S.strsize) in checkSymbolTable()
1729 return malformedError("bad n_value: " + Twine((int)NValue) + " past " in checkSymbolTable()
1734 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) || in checkSymbolTable()
1800 uint64_t NValue = getNValue(Symb); in getIndirectName() local
1801 if (NValue >= StringTable.size()) in getIndirectName()
1803 const char *Start = &StringTable.data()[NValue]; in getIndirectName()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp381 auto *NValue = Rem->getOperand(0); in simplifyIVRemainder() local
386 bool UsedAsNumerator = IVOperand == NValue; in simplifyIVRemainder()
390 const SCEV *N = SE->getSCEV(NValue); in simplifyIVRemainder()