Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 17 Oct 2009 21:52:31 +0000 (UTC)
From:      Roman Divacky <rdivacky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r198191 - in projects/clangbsd/usr.bin/clang/lib: libclanganalysis libclangast libllvmarmcodegen libllvmcodegen libllvmselectiondag
Message-ID:  <200910172152.n9HLqVAZ051844@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rdivacky
Date: Sat Oct 17 21:52:31 2009
New Revision: 198191
URL: http://svn.freebsd.org/changeset/base/198191

Log:
  Add some more files to the build - clang-cc links now.

Modified:
  projects/clangbsd/usr.bin/clang/lib/libclanganalysis/Makefile
  projects/clangbsd/usr.bin/clang/lib/libclangast/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmarmcodegen/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmcodegen/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmselectiondag/Makefile

Modified: projects/clangbsd/usr.bin/clang/lib/libclanganalysis/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libclanganalysis/Makefile	Sat Oct 17 21:09:15 2009	(r198190)
+++ projects/clangbsd/usr.bin/clang/lib/libclanganalysis/Makefile	Sat Oct 17 21:52:31 2009	(r198191)
@@ -3,15 +3,16 @@
 LIB=	clanganalysis
 
 SRCDIR=	tools/clang/lib/Analysis
-SRCS=	BasicConstraintManager.cpp BasicObjCFoundationChecks.cpp \
-	BasicStore.cpp BasicValueFactory.cpp BugReporter.cpp \
-	CFRefCount.cpp CheckDeadStores.cpp CheckNSError.cpp \
+SRCS=	AnalysisContext.cpp AnalysisManager.cpp BasicConstraintManager.cpp \
+	BasicObjCFoundationChecks.cpp BasicStore.cpp BasicValueFactory.cpp \
+	BugReporter.cpp BugReporterVisitors.cpp CFG.cpp CFRefCount.cpp \
+	CallGraph.cpp CallInliner.cpp  CheckDeadStores.cpp CheckNSError.cpp \
 	CheckObjCDealloc.cpp CheckObjCInstMethSignature.cpp \
-	CheckObjCUnusedIVars.cpp Environment.cpp ExplodedGraph.cpp \
-	GRBlockCounter.cpp GRCoreEngine.cpp GRExprEngine.cpp \
+	CheckObjCUnusedIVars.cpp CheckSecuritySyntaxOnly.cpp Environment.cpp \
+	ExplodedGraph.cpp GRBlockCounter.cpp GRCoreEngine.cpp GRExprEngine.cpp \
 	GRExprEngineInternalChecks.cpp GRState.cpp LiveVariables.cpp \
 	MemRegion.cpp PathDiagnostic.cpp RangeConstraintManager.cpp \
-	RegionStore.cpp SVals.cpp SimpleConstraintManager.cpp \
+	RegionStore.cpp SVals.cpp SValuator.cpp SimpleConstraintManager.cpp \
 	SimpleSValuator.cpp Store.cpp SymbolManager.cpp \
 	UninitializedValues.cpp ValueManager.cpp
 

Modified: projects/clangbsd/usr.bin/clang/lib/libclangast/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libclangast/Makefile	Sat Oct 17 21:09:15 2009	(r198190)
+++ projects/clangbsd/usr.bin/clang/lib/libclangast/Makefile	Sat Oct 17 21:52:31 2009	(r198191)
@@ -3,13 +3,13 @@
 LIB=	clangast
 
 SRCDIR=	tools/clang/lib/AST
-SRCS=	APValue.cpp ASTConsumer.cpp ASTContext.cpp Decl.cpp \
-	DeclBase.cpp DeclCXX.cpp DeclGroup.cpp DeclObjC.cpp \
+SRCS=	APValue.cpp ASTConsumer.cpp ASTContext.cpp CXXInheritance.cpp \
+	Decl.cpp DeclBase.cpp DeclCXX.cpp DeclGroup.cpp DeclObjC.cpp \
 	DeclPrinter.cpp DeclTemplate.cpp DeclarationName.cpp Expr.cpp \
 	ExprCXX.cpp ExprConstant.cpp InheritViz.cpp \
-	NestedNameSpecifier.cpp ParentMap.cpp Stmt.cpp StmtDumper.cpp \
-	StmtIterator.cpp StmtPrinter.cpp StmtViz.cpp TemplateName.cpp \
-	Type.cpp
+	NestedNameSpecifier.cpp ParentMap.cpp RecordLayoutBuilder.cpp \
+	Stmt.cpp StmtDumper.cpp StmtIterator.cpp StmtPrinter.cpp \
+	StmtProfile.cpp StmtViz.cpp TemplateName.cpp Type.cpp TypeLoc.cpp
 
 TGHDRS=	DiagnosticASTKinds DiagnosticCommonKinds
 

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmarmcodegen/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmarmcodegen/Makefile	Sat Oct 17 21:09:15 2009	(r198190)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmarmcodegen/Makefile	Sat Oct 17 21:52:31 2009	(r198191)
@@ -7,10 +7,11 @@ SRCS=	ARMBaseInstrInfo.cpp ARMBaseRegist
 	ARMCodeEmitter.cpp ARMConstantIslandPass.cpp \
 	ARMConstantPoolValue.cpp ARMISelDAGToDAG.cpp \
 	ARMISelLowering.cpp ARMInstrInfo.cpp ARMJITInfo.cpp \
-	ARMLoadStoreOptimizer.cpp ARMMCAsmInfo.cpp ARMRegisterInfo.cpp  \
-	ARMSubtarget.cpp NEONPreAllocPass.cpp \
-	Thumb1InstrInfo.cpp Thumb1RegisterInfo.cpp Thumb2ITBlockPass.cpp \
-	Thumb2InstrInfo.cpp Thumb2RegisterInfo.cpp Thumb2SizeReduction.cpp
+	ARMLoadStoreOptimizer.cpp ARMLoadStoreOptimizer.cpp ARMMCAsmInfo.cpp \
+	ARMRegisterInfo.cpp ARMSubtarget.cpp ARMTargetMachine.cpp \
+	NEONPreAllocPass.cpp Thumb1InstrInfo.cpp Thumb1RegisterInfo.cpp \
+	Thumb2ITBlockPass.cpp Thumb2InstrInfo.cpp Thumb2RegisterInfo.cpp \
+	Thumb2SizeReduction.cpp
 
 TGHDRS=	ARMGenCallingConv ARMGenCodeEmitter ARMGenDAGISel \
 	ARMGenInstrInfo ARMGenInstrNames ARMGenRegisterInfo.h \

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmcodegen/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmcodegen/Makefile	Sat Oct 17 21:09:15 2009	(r198190)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmcodegen/Makefile	Sat Oct 17 21:52:31 2009	(r198191)
@@ -5,27 +5,27 @@ LIB=	llvmcodegen
 SRCDIR=	lib/CodeGen
 SRCS=	BranchFolding.cpp CodePlacementOpt.cpp \
 	DeadMachineInstructionElim.cpp DwarfEHPrepare.cpp \
-	ELFCodeEmitter.cpp ELFWriter.cpp GCMetadata.cpp \
-	GCMetadataPrinter.cpp GCStrategy.cpp IfConversion.cpp \
-	IntrinsicLowering.cpp LLVMTargetMachine.cpp \
+	ELFCodeEmitter.cpp ELFWriter.cpp ExactHazardRecognizer.cpp \
+	GCMetadata.cpp GCMetadataPrinter.cpp GCStrategy.cpp \
+	IfConversion.cpp IntrinsicLowering.cpp LLVMTargetMachine.cpp \
 	LatencyPriorityQueue.cpp LiveInterval.cpp \
 	LiveIntervalAnalysis.cpp LiveStackAnalysis.cpp \
-	LiveVariables.cpp LowerSubregs.cpp MachOWriter.cpp \
+	LiveVariables.cpp LowerSubregs.cpp MachOCodeEmitter.cpp MachOWriter.cpp \
 	MachineBasicBlock.cpp MachineDominators.cpp \
-	MachineFunction.cpp MachineInstr.cpp MachineLICM.cpp \
-	MachineLoopInfo.cpp MachineModuleInfo.cpp \
+	MachineFunction.cpp MachineFunctionAnalysis.cpp MachineFunctionPass.cpp \
+	MachineInstr.cpp MachineLICM.cpp \
+	MachineLoopInfo.cpp MachineModuleInfo.cpp MachineModuleInfoImpls.cpp \
 	MachinePassRegistry.cpp MachineRegisterInfo.cpp \
-	MachineSink.cpp MachineVerifier.cpp OcamlGC.cpp \
+	MachineSink.cpp MachineVerifier.cpp ObjectCodeEmitter.cpp OcamlGC.cpp \
 	PHIElimination.cpp Passes.cpp PostRASchedulerList.cpp \
 	PreAllocSplitting.cpp PrologEpilogInserter.cpp \
-	PseudoSourceValue.cpp \
-	RegAllocLinearScan.cpp RegAllocLocal.cpp RegAllocPBQP.cpp \
-	RegisterCoalescer.cpp \
+	PseudoSourceValue.cpp RegAllocLinearScan.cpp RegAllocLocal.cpp \
+	RegAllocPBQP.cpp RegisterCoalescer.cpp \
 	RegisterScavenging.cpp ScheduleDAG.cpp ScheduleDAGEmit.cpp \
 	ScheduleDAGInstrs.cpp ScheduleDAGPrinter.cpp \
 	ShrinkWrapping.cpp ShadowStackGC.cpp \
-	SimpleRegisterCoalescing.cpp Spiller.cpp StackProtector.cpp \
-	StackSlotColoring.cpp StrongPHIElimination.cpp \
+	SimpleRegisterCoalescing.cpp SjLjEHPrepare.cpp Spiller.cpp \
+	StackProtector.cpp StackSlotColoring.cpp StrongPHIElimination.cpp \
 	TargetInstrInfoImpl.cpp TwoAddressInstructionPass.cpp \
 	UnreachableBlockElim.cpp VirtRegMap.cpp VirtRegRewriter.cpp
 

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmselectiondag/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmselectiondag/Makefile	Sat Oct 17 21:09:15 2009	(r198190)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmselectiondag/Makefile	Sat Oct 17 21:52:31 2009	(r198191)
@@ -4,12 +4,13 @@ LIB=	llvmselectiondag
 
 SRCDIR=	lib/CodeGen/SelectionDAG
 SRCS=	CallingConvLower.cpp DAGCombiner.cpp FastISel.cpp \
-	LegalizeDAG.cpp LegalizeFloatTypes.cpp \
+	InstrEmitter.cpp LegalizeDAG.cpp LegalizeFloatTypes.cpp \
 	LegalizeIntegerTypes.cpp LegalizeTypes.cpp \
 	LegalizeTypesGeneric.cpp LegalizeVectorOps.cpp \
 	LegalizeVectorTypes.cpp ScheduleDAGFast.cpp \
 	ScheduleDAGList.cpp ScheduleDAGRRList.cpp \
-	ScheduleDAGSDNodes.cpp TargetLowering.cpp
+	ScheduleDAGSDNodes.cpp SelectionDAG.cpp SelectionDAGBuild.cpp \
+	SelectionDAGISel.cpp SelectionDAGPrinter.cpp TargetLowering.cpp
 
 TGHDRS=	Intrinsics
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200910172152.n9HLqVAZ051844>