# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:11 joerg Exp $ LIB= LLVMSelectionDAG .include .PATH: ${LLVM_SRCDIR}/lib/CodeGen/SelectionDAG SRCS+= DAGCombiner.cpp \ FastISel.cpp \ FunctionLoweringInfo.cpp \ InstrEmitter.cpp \ LegalizeDAG.cpp \ LegalizeFloatTypes.cpp \ LegalizeIntegerTypes.cpp \ LegalizeTypes.cpp \ LegalizeTypesGeneric.cpp \ LegalizeVectorOps.cpp \ LegalizeVectorTypes.cpp \ ResourcePriorityQueue.cpp \ ScheduleDAGFast.cpp \ ScheduleDAGRRList.cpp \ ScheduleDAGSDNodes.cpp \ ScheduleDAGVLIW.cpp \ SelectionDAG.cpp \ SelectionDAGAddressAnalysis.cpp \ SelectionDAGBuilder.cpp \ SelectionDAGDumper.cpp \ SelectionDAGISel.cpp \ SelectionDAGPrinter.cpp \ SelectionDAGTargetInfo.cpp \ StatepointLowering.cpp \ TargetLowering.cpp .if defined(HOSTLIB) .include .else .include .endif lockdoc-9.3-vfs'>lockdoc-9.3-vfs NetBSD fork for lockdoc analysismerlin@scholz.ruhr
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-23fsbtodb() -> FFS_FSBTODB(), EXT2_FSBTODB(), or MFS_FSBTODB()dholland
dbtofsb() -> FFS_DBTOFSB() or EXT2_DBTOFSB() (Christos already did the lfs ones a few days back)
2013-06-19Rename ambiguous macros:dholland
MAXDIRSIZE -> UFS_MAXDIRSIZE or LFS_MAXDIRSIZE NINDIR -> FFS_NINDIR, EXT2_NINDIR, LFS_NINDIR, or MFS_NINDIR INOPB -> FFS_INOPB, LFS_INOPB INOPF -> FFS_INOPF, LFS_INOPF blksize -> ffs_blksize, ext2_blksize, or lfs_blksize sblksize -> ffs_blksize These are not the only ambiguously defined filesystem macros, of course, there's a pile more. I may not have found all the ambiguous definitions of blksize(), too, as there are a lot of other things called 'blksize' in the system.
2013-01-22Stuff UFS_ in front of a few of ufs's symbols to reduce namespacedholland
pollution. Specifically: ROOTINO -> UFS_ROOTINO WINO -> UFS_WINO NXADDR -> UFS_NXADDR NDADDR -> UFS_NDADDR NIADDR -> UFS_NIADDR MAXSYMLINKLEN -> UFS_MAXSYMLINKLEN MAXSYMLINKLEN_UFS[12] -> UFS[12]_MAXSYMLINKLEN (for consistency) Sort out ext2fs's misuse of NDADDR and NIADDR; fortunately, these have the same values in ext2fs and ffs. No functional change intended.
2010-01-14Remove if defined(__RCSID) around __RCSID() macro.tsutsui
#include "nbtool_config.h" is enough for tools.
2010-01-07Add a sectorsize parameter member in struct ib_params and use ittsutsui
where sector size (disk block size) is required, instead of DEV_BSIZE constant which means device I/O block size. "Looks reasonable" from dholland@, and fixes tools installboot(8) on Cygwin where DEV_BSIZE != 512 as mentioned in PR toolchain/42555.
2009-10-19Remove closes 3 & 4 from my licence. Lots of thanks to Soren Jacobsenbouyer
for the booring work !
2008-10-12Try to improve warning messages when stage2 bootstrap is not foundapb
in the root of the file systrem in which the installation is being performed. Inspired by PR 39728 by der Mouse
2008-04-28Remove clause 3 and 4 from TNF licensesmartin
2008-02-02Add a findstage2 function (which returns block numbers wheretsutsui
the secondary boot is stored to embed them into the primary bootxx) for ext2fs. Currently disabled because there is no primary boot block which supports ext2fs, but it might help someone in some day.