search for: ppcpredic

Displaying 5 results from an estimated 5 matches for "ppcpredic".

2011 Dec 02
4
[LLVMdev] LLVM-3.0 fails to build on linux ppc32
...l use "namespace PPC". To avoid symbol clash, +// undefine PPC here. PPC may be predefined on some hosts. +#undef PPC + // Defines symbolic names for PowerPC registers. This defines a mapping from // register name to register number. // --- llvm-3.0.src/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h 2011-07-26 02:24:13.000000000 +0200 +++ llvm-3.0.src/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h 2011-12-02 02:05:22.000000000 +0100 @@ -14,6 +14,10 @@ #ifndef LLVM_TARGET_POWERPC_PPCPREDICATES_H #define LLVM_TARGET_POWERPC_PPCPREDICATES_H +// Generated files will use &qu...
2011 Dec 02
0
[LLVMdev] LLVM-3.0 fails to build on linux ppc32
...avoid symbol clash, > +// undefine PPC here. PPC may be predefined on some hosts. > +#undef PPC > + > // Defines symbolic names for PowerPC registers. This defines a mapping from > // register name to register number. > // > --- llvm-3.0.src/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h > 2011-07-26 02:24:13.000000000 +0200 > +++ llvm-3.0.src/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h > 2011-12-02 02:05:22.000000000 +0100 > @@ -14,6 +14,10 @@ > #ifndef LLVM_TARGET_POWERPC_PPCPREDICATES_H > #define LLVM_TARGET_POWERPC_PPCPREDICATES_H &gt...
2011 Dec 02
1
[LLVMdev] LLVM-3.0 fails to build on linux ppc32
...undefine PPC here. PPC may be predefined on some hosts. > > +#undef PPC > > + > > // Defines symbolic names for PowerPC registers. This defines a mapping from > > // register name to register number. > > // > > --- llvm-3.0.src/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h > > 2011-07-26 02:24:13.000000000 +0200 > > +++ llvm-3.0.src/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h > > 2011-12-02 02:05:22.000000000 +0100 > > @@ -14,6 +14,10 @@ > > #ifndef LLVM_TARGET_POWERPC_PPCPREDICATES_H > > #define LLVM_TARG...
2008 Apr 16
0
[LLVMdev] Being able to know the jitted code-size before emitting
...gt; Index: lib/Target/PowerPC/PPCBranchSelector.cpp > =================================================================== > --- lib/Target/PowerPC/PPCBranchSelector.cpp (revision 49716) > +++ lib/Target/PowerPC/PPCBranchSelector.cpp (working copy) > @@ -22,7 +22,6 @@ > #include "PPCPredicates.h" > #include "llvm/CodeGen/MachineFunctionPass.h" > #include "llvm/Target/TargetMachine.h" > -#include "llvm/Target/TargetAsmInfo.h" > #include "llvm/ADT/Statistic.h" > #include "llvm/Support/Compiler.h" > #include "...
2008 Apr 15
4
[LLVMdev] Being able to know the jitted code-size before emitting
OK, here's a new patch that adds the infrastructure and the implementation for X86, ARM and PPC of GetInstSize and GetFunctionSize. Both functions are virtual functions defined in TargetInstrInfo.h. For X86, I moved some commodity functions from X86CodeEmitter to X86InstrInfo. What do you think? Nicolas Evan Cheng wrote: > > I think both of these belong to TargetInstrInfo. And