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

  /external/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 116 unsigned getCallCost(FunctionType *FTy, int NumArgs) {
403 using BaseT::getCallCost;
405 unsigned getCallCost(const Function *F, int NumArgs) {
424 return static_cast<T *>(this)->getCallCost(F->getFunctionType(), NumArgs);
427 unsigned getCallCost(const Function *F, ArrayRef<const Value *> Arguments) {
431 return static_cast<T *>(this)->getCallCost(F, Arguments.size());
519 ->getCallCost(cast<FunctionType>(FTy), CS.arg_size());
523 return static_cast<T *>(this)->getCallCost(F, Arguments);
TargetTransformInfo.h 156 int getCallCost(FunctionType *FTy, int NumArgs = -1) const;
162 int getCallCost(const Function *F, int NumArgs = -1) const;
167 int getCallCost(const Function *F, ArrayRef<const Value *> Arguments) const;
179 /// Mirrors the \c getCallCost method but uses an intrinsic identifier.
185 /// Mirrors the \c getCallCost method but uses an intrinsic identifier.
635 virtual int getCallCost(FunctionType *FTy, int NumArgs) = 0;
636 virtual int getCallCost(const Function *F, int NumArgs) = 0;
637 virtual int getCallCost(const Function *F,
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
TargetTransformInfo.h 212 int getCallCost(FunctionType *FTy, int NumArgs = -1) const;
218 int getCallCost(const Function *F, int NumArgs = -1) const;
223 int getCallCost(const Function *F, ArrayRef<const Value *> Arguments) const;
235 /// Mirrors the \c getCallCost method but uses an intrinsic identifier.
241 /// Mirrors the \c getCallCost method but uses an intrinsic identifier.
    [all...]
TargetTransformInfoImpl.h 127 unsigned getCallCost(FunctionType *FTy, int NumArgs) {
666 using BaseT::getCallCost;
668 unsigned getCallCost(const Function *F, int NumArgs) {
687 return static_cast<T *>(this)->getCallCost(F->getFunctionType(), NumArgs);
690 unsigned getCallCost(const Function *F, ArrayRef<const Value *> Arguments) {
694 return static_cast<T *>(this)->getCallCost(F, Arguments.size());
797 ->getCallCost(cast<FunctionType>(FTy), CS.arg_size());
801 return static_cast<T *>(this)->getCallCost(F, Arguments);
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 57 int TargetTransformInfo::getCallCost(FunctionType *FTy, int NumArgs) const {
58 int Cost = TTIImpl->getCallCost(FTy, NumArgs);
63 int TargetTransformInfo::getCallCost(const Function *F,
65 int Cost = TTIImpl->getCallCost(F, Arguments);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
TargetTransformInfo.cpp 64 int TargetTransformInfo::getCallCost(FunctionType *FTy, int NumArgs) const {
65 int Cost = TTIImpl->getCallCost(FTy, NumArgs);
70 int TargetTransformInfo::getCallCost(const Function *F,
72 int Cost = TTIImpl->getCallCost(F, Arguments);
    [all...]

Completed in 51 milliseconds