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

  /external/llvm/include/llvm/Analysis/
InlineCost.h 1 //===- InlineCost.h - Cost analysis for inliner -----------------*- C++ -*-===//
51 class InlineCost {
64 InlineCost(int Cost, int Threshold) : Cost(Cost), Threshold(Threshold) {}
67 static InlineCost get(int Cost, int Threshold) {
70 return InlineCost(Cost, Threshold);
72 static InlineCost getAlways() {
73 return InlineCost(AlwaysInlineCost, 0);
75 static InlineCost getNever() {
76 return InlineCost(NeverInlineCost, 0);
89 /// It is an error to call this on an "always" or "never" InlineCost
    [all...]
  /external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h 25 class InlineCost;
67 virtual InlineCost getInlineCost(CallSite CS) = 0;
  /external/llvm/lib/Transforms/IPO/
InlineAlways.cpp 20 #include "llvm/Analysis/InlineCost.h"
54 InlineCost getInlineCost(CallSite CS) override;
95 InlineCost AlwaysInliner::getInlineCost(CallSite CS) {
104 return InlineCost::getAlways();
106 return InlineCost::getNever();
InlineSimple.cpp 18 #include "llvm/Analysis/InlineCost.h"
54 InlineCost getInlineCost(CallSite CS) override {
Inliner.cpp 22 #include "llvm/Analysis/InlineCost.h"
299 InlineCost IC = getInlineCost(CS);
364 InlineCost IC2 = getInlineCost(CS2);
  /external/llvm/lib/Analysis/IPA/
Android.mk 9 InlineCost.cpp
InlineCost.cpp 1 //===- InlineCost.cpp - Cost analysis for inliner -------------------------===//
14 #include "llvm/Analysis/InlineCost.h"
    [all...]

Completed in 112 milliseconds