Lines Matching refs:Opcode

101 int PPCTTIImpl::getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,  in getIntImmCost()  argument
104 return BaseT::getIntImmCost(Opcode, Idx, Imm, Ty); in getIntImmCost()
115 switch (Opcode) { in getIntImmCost()
261 unsigned Opcode, Type *Ty, TTI::OperandValueKind Op1Info, in getArithmeticInstrCost() argument
264 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode"); in getArithmeticInstrCost()
267 return BaseT::getArithmeticInstrCost(Opcode, Ty, Op1Info, Op2Info, in getArithmeticInstrCost()
284 int PPCTTIImpl::getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src) { in getCastInstrCost() argument
285 assert(TLI->InstructionOpcodeToISD(Opcode) && "Invalid opcode"); in getCastInstrCost()
287 return BaseT::getCastInstrCost(Opcode, Dst, Src); in getCastInstrCost()
290 int PPCTTIImpl::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) { in getCmpSelInstrCost() argument
291 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy); in getCmpSelInstrCost()
294 int PPCTTIImpl::getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index) { in getVectorInstrCost() argument
297 int ISD = TLI->InstructionOpcodeToISD(Opcode); in getVectorInstrCost()
305 return BaseT::getVectorInstrCost(Opcode, Val, Index); in getVectorInstrCost()
311 return BaseT::getVectorInstrCost(Opcode, Val, Index); in getVectorInstrCost()
328 return LHSPenalty + BaseT::getVectorInstrCost(Opcode, Val, Index); in getVectorInstrCost()
330 return BaseT::getVectorInstrCost(Opcode, Val, Index); in getVectorInstrCost()
333 int PPCTTIImpl::getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, in getMemoryOpCost() argument
337 assert((Opcode == Instruction::Load || Opcode == Instruction::Store) && in getMemoryOpCost()
340 int Cost = BaseT::getMemoryOpCost(Opcode, Src, Alignment, AddressSpace); in getMemoryOpCost()
362 if (Opcode == Instruction::Load && in getMemoryOpCost()
383 if (Src->isVectorTy() && Opcode == Instruction::Store) in getMemoryOpCost()
390 int PPCTTIImpl::getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy, in getInterleavedMemoryOpCost() argument
402 int Cost = getMemoryOpCost(Opcode, VecTy, Alignment, AddressSpace); in getInterleavedMemoryOpCost()