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

  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 136 int getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy = nullptr) const;
140 /// The contract for this function is the same as \c getOperationCost except
148 /// The contract for this is the same as \c getOperationCost except that it
183 /// lowered. It has two primary advantages over the \c getOperationCost and
551 virtual int getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) = 0;
651 int getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) override {
652 return Impl.getOperationCost(Opcode, Ty, OpTy);
    [all...]
TargetTransformInfoImpl.h 47 unsigned getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) {
498 return static_cast<T *>(this)->getOperationCost(
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 49 int TargetTransformInfo::getOperationCost(unsigned Opcode, Type *Ty,
51 int Cost = TTIImpl->getOperationCost(Opcode, Ty, OpTy);
  /external/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 200 unsigned getOperationCost(unsigned Opcode, Type *Ty, Type *OpTy) {
216 return BaseT::getOperationCost(Opcode, Ty, OpTy);

Completed in 51 milliseconds