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 19 #include "llvm/Analysis/InlineCost.h"
50 virtual InlineCost getInlineCost(CallSite CS);
89 InlineCost AlwaysInliner::getInlineCost(CallSite CS) {
99 return InlineCost::getAlways();
101 return InlineCost::getNever();
InlineSimple.cpp 17 #include "llvm/Analysis/InlineCost.h"
51 InlineCost getInlineCost(CallSite CS) {
Inliner.cpp 21 #include "llvm/Analysis/InlineCost.h"
263 InlineCost IC = getInlineCost(CS);
322 InlineCost IC2 = getInlineCost(CS2);
  /external/llvm/lib/Analysis/IPA/
Android.mk 10 InlineCost.cpp
InlineCost.cpp 1 //===- InlineCost.cpp - Cost analysis for inliner -------------------------===//
15 #include "llvm/Analysis/InlineCost.h"
    [all...]

Completed in 106 milliseconds