[llvm-commits] CVS: llvm/lib/Target/PowerPC/Makefile

Misha Brukman brukman at cs.uiuc.edu
Wed Oct 13 23:05:06 PDT 2004



Changes in directory llvm/lib/Target/PowerPC:

Makefile updated: 1.12 -> 1.13
---
Log message:

* Make a PPC32-specific code emitter because we have separate classes for 32-
  and 64-bit code emitters that cannot share code unless we use virtual
  functions
* Identify components being built by tablegen with more detail by assigning them
  to PowerPC, PPC32, or PPC64 more specifically; also avoids seeing 'building
  PowerPC XYZ' messages twice, where one is for PPC32 and one for PPC64


---
Diffs of the changes:  (+6 -6)

Index: llvm/lib/Target/PowerPC/Makefile
diff -u llvm/lib/Target/PowerPC/Makefile:1.12 llvm/lib/Target/PowerPC/Makefile:1.13
--- llvm/lib/Target/PowerPC/Makefile:1.12	Sat Sep  4 21:42:44 2004
+++ llvm/lib/Target/PowerPC/Makefile	Thu Oct 14 01:04:56 2004
@@ -14,14 +14,14 @@
 
 # Make sure that tblgen is run, first thing.
 $(SourceDepend): PowerPCGenInstrNames.inc PowerPCGenRegisterNames.inc \
-                 PowerPCGenCodeEmitter.inc PowerPCGenAsmWriter.inc \
+                 PowerPCGenAsmWriter.inc  PPC32GenCodeEmitter.inc \
  PPC32GenRegisterInfo.h.inc PPC32GenRegisterInfo.inc PPC32GenInstrInfo.inc \
  PPC64GenRegisterInfo.h.inc PPC64GenRegisterInfo.inc PPC64GenInstrInfo.inc
 
 TDFILES = $(wildcard $(SourceDir)/*.td) $(SourceDir)/../Target.td
 
 %GenRegisterNames.inc:: PPC32.td $(TDFILES) $(TBLGEN)
-	@echo "Building PowerPC register names with tblgen"
+	@echo "Building $(TARGET) register names with tblgen"
 	$(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-register-enums -o $@
 
 %GenRegisterInfo.h.inc:: %.td $(TDFILES) $(TBLGEN)
@@ -37,14 +37,14 @@
 	$(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-enums -o $@
 
 %GenInstrInfo.inc:: %.td $(TDFILES) $(TBLGEN)
-	@echo "Building $(TARGET) instruction information with tblgen"
+	@echo "Building `basename $<` instruction information with tblgen"
 	$(VERB) $(TBLGEN) -I $(BUILD_SRC_DIR) $< -gen-instr-desc -o $@
 
-$(TARGET)GenCodeEmitter.inc:: PPC32.td $(TDFILES) $(TBLGEN)
-	@echo "Building $(TARGET) code emitter"
+%GenCodeEmitter.inc:: %.td $(TDFILES) $(TBLGEN)
+	@echo "Building `basename $<` code emitter with tblgen"
 	$(VERB) $(TBLGEN) -I $(SourceDir) $< -gen-emitter -o $@
 
-$(TARGET)GenAsmWriter.inc:: PowerPC.td $(TDFILES) $(TBLGEN)
+$(TARGET)GenAsmWriter.inc:: $(TARGET).td $(TDFILES) $(TBLGEN)
 	@echo "Building $(TARGET).td assembly writer with tblgen"
 	$(VERB) $(TBLGEN) -I $(SourceDir) $< -gen-asm-writer -o $@
 






More information about the llvm-commits mailing list