Displaying 3 results from an estimated 3 matches for "genasmwrit".
Did you mean:
genasmwriter
2018 Dec 06
3
New to LLVM. Need help generating assembly
...amount;
>> let isReMaterializable = 1;
>> let mayLoad = 0;
>> let mayStore = 0;
>> let Defs = [SP];
>> let Uses = [SP];
>> }
>
> What does the MCInst dump of this instruction look like? Have you looked
> at YourTargetGenAsmWriter.inc to see which print methods are being called
> for this instruction?
>
> -Tom
It's also worth checking the output of the compiler with the -print-after-all option to see if your instruction is present in the last IR dump. It's possible that another instruction is being selec...
2008 Jan 03
2
[LLVMdev] Building LLVM on Windows
...GenInstrInfo.inc.tmp): \
$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
$(Echo) "Building $(<F) instruction information with tblgen"
- $(Verb) $(TableGen) -gen-instr-desc -o $@ $<
+ $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
$(Echo) "Building $(<F) assembly writer with tblgen"
- $(Verb) $(TableGen) -gen-asm-writer -o $@ $<
+ $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc....
2005 May 19
3
[LLVMdev] [Cygwin] llvm 'make install' build errors
Reid,
I think it is the first time it is run that the errors occcur !?
Not sure but that would seem logical.
Aaron