HomeSort by relevance Sort by last modified time
    Searched refs:getIntImmCost (Results 1 - 14 of 14) sorted by null

  /external/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.h 45 int getIntImmCost(const APInt &Imm, Type *Ty);
47 int getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty);
48 int getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
SystemZTargetTransformInfo.cpp 34 int SystemZTTIImpl::getIntImmCost(const APInt &Imm, Type *Ty) {
66 int SystemZTTIImpl::getIntImmCost(unsigned Opcode, unsigned Idx,
181 return SystemZTTIImpl::getIntImmCost(Imm, Ty);
184 int SystemZTTIImpl::getIntImmCost(Intrinsic::ID IID, unsigned Idx,
230 return SystemZTTIImpl::getIntImmCost(Imm, Ty);
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.h 65 using BaseT::getIntImmCost;
66 int getIntImmCost(int64_t Val);
67 int getIntImmCost(const APInt &Imm, Type *Ty);
68 int getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty);
69 int getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
AArch64TargetTransformInfo.cpp 26 int AArch64TTIImpl::getIntImmCost(int64_t Val) {
40 int AArch64TTIImpl::getIntImmCost(const APInt &Imm, Type *Ty) {
58 Cost += getIntImmCost(Val);
64 int AArch64TTIImpl::getIntImmCost(unsigned Opcode, unsigned Idx,
122 int Cost = AArch64TTIImpl::getIntImmCost(Imm, Ty);
127 return AArch64TTIImpl::getIntImmCost(Imm, Ty);
130 int AArch64TTIImpl::getIntImmCost(Intrinsic::ID IID, unsigned Idx,
151 int Cost = AArch64TTIImpl::getIntImmCost(Imm, Ty);
167 return AArch64TTIImpl::getIntImmCost(Imm, Ty);
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.h 54 using BaseT::getIntImmCost;
55 int getIntImmCost(const APInt &Imm, Type *Ty);
57 int getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty);
58 int getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
PPCTargetTransformInfo.cpp 38 int PPCTTIImpl::getIntImmCost(const APInt &Imm, Type *Ty) {
40 return BaseT::getIntImmCost(Imm, Ty);
67 int PPCTTIImpl::getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
70 return BaseT::getIntImmCost(IID, Idx, Imm, Ty);
98 return PPCTTIImpl::getIntImmCost(Imm, Ty);
101 int PPCTTIImpl::getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,
104 return BaseT::getIntImmCost(Opcode, Idx, Imm, Ty);
181 return PPCTTIImpl::getIntImmCost(Imm, Ty);
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.h 84 int getIntImmCost(int64_t);
86 int getIntImmCost(const APInt &Imm, Type *Ty);
88 int getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty);
89 int getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
X86TargetTransformInfo.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 377 int getIntImmCost(const APInt &Imm, Type *Ty) const;
382 int getIntImmCost(unsigned Opc, unsigned Idx, const APInt &Imm,
384 int getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
591 virtual int getIntImmCost(const APInt &Imm, Type *Ty) = 0;
592 virtual int getIntImmCost(unsigned Opc, unsigned Idx, const APInt &Imm,
594 virtual int getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
    [all...]
TargetTransformInfoImpl.h 254 unsigned getIntImmCost(const APInt &Imm, Type *Ty) { return TTI::TCC_Basic; }
256 unsigned getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,
261 unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
  /external/llvm/lib/Target/ARM/
ARMTargetTransformInfo.h 60 using BaseT::getIntImmCost;
61 int getIntImmCost(const APInt &Imm, Type *Ty);
ARMTargetTransformInfo.cpp 18 int ARMTTIImpl::getIntImmCost(const APInt &Imm, Type *Ty) {
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 190 int TargetTransformInfo::getIntImmCost(const APInt &Imm, Type *Ty) const {
191 int Cost = TTIImpl->getIntImmCost(Imm, Ty);
196 int TargetTransformInfo::getIntImmCost(unsigned Opcode, unsigned Idx,
198 int Cost = TTIImpl->getIntImmCost(Opcode, Idx, Imm, Ty);
203 int TargetTransformInfo::getIntImmCost(Intrinsic::ID IID, unsigned Idx,
205 int Cost = TTIImpl->getIntImmCost(IID, Idx, Imm, Ty);
  /external/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp 18 // the default implementation of getIntImmCost will always return TCC_Free.
283 Cost = TTI->getIntImmCost(IntrInst->getIntrinsicID(), Idx,
286 Cost = TTI->getIntImmCost(Inst->getOpcode(), Idx, ConstInt->getValue(),

Completed in 291 milliseconds