search for: getintrinsicinfo

Displaying 3 results from an estimated 3 matches for "getintrinsicinfo".

2009 Apr 15
2
[LLVMdev] Error w/ Tablegen + Intrinsics
...} } However, when MACRO_FMA is called, Tmp0->getZExtValue() returns 102! The section of code where this is probably wrong is: CodeGenDAGPatterns.cpp:1238 unsigned IID = getDAGPatterns().getIntrinsicID(Operator)+1; Or here: CodeGenDAGPatterns.h:524 const CodeGenIntrinsic &getIntrinsicInfo(unsigned IID) const { assert(IID-1 < Intrinsics.size() && "Bad intrinsic ID!"); return Intrinsics[IID-1]; } These are the only locations where I can find that it is returning the IID off by 1. If someone can let me know what I need to do in order to fix...
2009 Apr 15
0
[LLVMdev] Error w/ Tablegen + Intrinsics
...n MACRO_FMA is called, Tmp0->getZExtValue() returns 102! > > The section of code where this is probably wrong is: > CodeGenDAGPatterns.cpp:1238 unsigned IID = > getDAGPatterns().getIntrinsicID(Operator)+1; > Or here: > CodeGenDAGPatterns.h:524 > const CodeGenIntrinsic &getIntrinsicInfo(unsigned IID) const { > assert(IID-1 < Intrinsics.size() && "Bad intrinsic ID!"); > return Intrinsics[IID-1]; > } > > These are the only locations where I can find that it is returning > the IID off by 1. > > > If someone can let me know w...
2012 Jul 16
3
[LLVMdev] RFC: LLVM incubation, or requirements for committing new backends
...Reloc::Model RM, CodeModel::Model CM, > + CodeGenOpt::Level OL); > + ~AMDGPUTargetMachine(); > + virtual const AMDILFrameLowering* getFrameLowering() const { > + return &FrameLowering; > + } > + virtual const AMDILIntrinsicInfo* getIntrinsicInfo() const { > + return &IntrinsicInfo; > + } > + virtual const AMDGPUInstrInfo *getInstrInfo() const {return InstrInfo;} > + virtual const AMDGPUSubtarget *getSubtargetImpl() const {return &Subtarget; } > + virtual const AMDGPURegisterInfo *getRegisterInfo() const {...