Searched refs:Function (Results 126 - 150 of 750) sorted by relevance

1234567891011>>

/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp33 static Function* createAdd1(Module *M) {
37 Function *Add1F =
38 cast<Function>(M->getOrInsertFunction("add1",
65 static Function *CreateFibFunction(Module *M) {
68 Function *FibF =
69 cast<Function>(M->getOrInsertFunction("fib",
117 Function* F;
245 Function* add1F = createAdd1( M );
246 Function* fibF = CreateFibFunction( M );
/external/llvm/lib/Analysis/
H A DDbgInfoPrinter.cpp20 #include "llvm/Function.h"
48 virtual bool runOnFunction(Function &F);
79 static Value *findDbgSubprogramDeclare(Function *V) {
103 const Function *F = NULL;
109 for (Function::const_iterator FI = F->begin(), FE = F->end(); FI != FE; ++FI)
136 } else if (Function *F = dyn_cast<Function>(const_cast<Value*>(V))){
181 if (isa<Function>(V))
194 bool PrintDbgInfo::runOnFunction(Function &F) {
200 for (Function
[all...]
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h17 #include "llvm/Function.h"
71 Function *CurFunction;// The currently executing function
94 std::vector<Function*> AtExitHandlers;
115 virtual GenericValue runFunction(Function *F,
127 virtual void *recompileAndRelinkFunction(Function *F) {
133 void freeMachineCodeForFunction(Function *F) { }
137 void callFunction(Function *F, const std::vector<GenericValue> &ArgVals);
186 GenericValue callExternalFunction(Function *F,
190 void addAtExitHandler(Function *F) {
208 void *getPointerToFunction(Function *
[all...]
/external/llvm/lib/Transforms/IPO/
H A DPruneEH.cpp21 #include "llvm/Function.h"
46 bool SimplifyFunction(Function *F);
74 if (Function *F = (*I)->getFunction())
87 Function *F = (*I)->getFunction();
103 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
118 } else if (Function *Callee = CI->getCalledFunction()) {
147 Function *F = (*I)->getFunction();
160 if (Function *F = (*I)->getFunction())
171 bool PruneEH::SimplifyFunction(Function *F) {
173 for (Function
[all...]
H A DDeadArgumentElimination.cpp54 RetOrArg(const Function *F, unsigned Idx, bool IsArg) : F(F), Idx(Idx),
56 const Function *F;
89 RetOrArg CreateRet(const Function *F, unsigned Idx) {
93 RetOrArg CreateArg(const Function *F, unsigned Idx) {
115 typedef std::set<const Function*> LiveFuncSet;
144 void SurveyFunction(const Function &F);
148 void MarkLive(const Function &F);
150 bool RemoveDeadStuffFromFunction(Function *F);
151 bool DeleteDeadVarargs(Function &Fn);
152 bool RemoveDeadArgumentsFromCallers(Function
[all...]
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp64 static bool isNonGhostDeclaration(const Function *F) {
84 struct CallSiteValueMapConfig : public NoRAUWValueMapConfig<Function*> {
86 static void onDelete(JITResolverState *JRS, Function *F);
91 typedef ValueMap<Function*, void*, NoRAUWValueMapConfig<Function*> >
93 typedef std::map<void*, AssertingVH<Function> > CallSiteToFunctionMapTy;
94 typedef ValueMap<Function *, SmallPtrSet<void*, 1>,
135 std::pair<void *, Function *> LookupFunctionFromCallSite(
150 void AddCallSite(const MutexGuard &locked, void *CallSite, Function *F) {
160 void EraseAllCallSitesForPrelocked(Function *
[all...]
/external/chromium/testing/gmock/include/gmock/internal/
H A Dgmock-generated-internal-utils.h138 // Template struct Function<F>, where F must be a function type, contains
152 struct Function;
155 struct Function<R()> { struct in namespace:testing::internal
164 struct Function<R(A1)> struct in namespace:testing::internal
165 : Function<R()> {
174 struct Function<R(A1, A2)> struct in namespace:testing::internal
175 : Function<R(A1)> {
184 struct Function<R(A1, A2, A3)> struct in namespace:testing::internal
185 : Function<R(A1, A2)> {
194 struct Function< struct in namespace:testing::internal
205 struct Function<R(A1, A2, A3, A4, A5)> struct in namespace:testing::internal
216 struct Function<R(A1, A2, A3, A4, A5, A6)> struct in namespace:testing::internal
227 struct Function<R(A1, A2, A3, A4, A5, A6, A7)> struct in namespace:testing::internal
238 struct Function<R(A1, A2, A3, A4, A5, A6, A7, A8)> struct in namespace:testing::internal
249 struct Function<R(A1, A2, A3, A4, A5, A6, A7, A8, A9)> struct in namespace:testing::internal
262 struct Function<R(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)> struct in namespace:testing::internal
[all...]
/external/guava/guava-tests/test/com/google/common/math/
H A DMathTesting.java31 import com.google.common.base.Function;
59 private static final Function<Integer, Long> TO_LONG = new Function<Integer, Long>() {
67 private static final Function<Long, BigInteger> TO_BIGINTEGER =
68 new Function<Long, BigInteger>() {
75 private static final Function<Integer, Integer> NEGATE_INT = new Function<Integer, Integer>() {
82 private static final Function<Long, Long> NEGATE_LONG = new Function<Long, Long>() {
89 private static final Function<BigIntege
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExpressionVisitor.java28 import org.apache.xpath.functions.Function;
62 public boolean visitFunction(ExpressionOwner owner, Function func)
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathVisitor.java25 import org.apache.xpath.functions.Function;
147 public boolean visitFunction(ExpressionOwner owner, Function func)
/external/guava/guava/src/com/google/common/base/
H A DEnums.java42 * Returns a {@link Function} that maps an {@link Enum} name to the associated
43 * {@code Enum} constant. The {@code Function} will return {@code null} if the
49 public static <T extends Enum<T>> Function<String, T> valueOfFunction(Class<T> enumClass) {
54 * {@link Function} that maps an {@link Enum} name to the associated
58 Function<String, T>, Serializable {
H A DFunctionalEquivalence.java41 private final Function<F, ? extends T> function;
45 Function<F, ? extends T> function, Equivalence<T> resultEquivalence) {
44 FunctionalEquivalence( Function<F, ? extends T> function, Equivalence<T> resultEquivalence) argument
/external/guava/guava/src/com/google/common/cache/
H A DCache.java21 import com.google.common.base.Function;
39 * extend {@link Function}.
51 public interface Cache<K, V> extends Function<K, V> {
176 * Discouraged. Provided to satisfy the {@code Function} interface; use {@link #get} or
H A DLoadingCache.java21 import com.google.common.base.Function;
38 * <p>When evaluated as a {@link Function}, a cache yields the same result as invoking
46 public interface LoadingCache<K, V> extends Cache<K, V>, Function<K, V> {
122 * Discouraged. Provided to satisfy the {@code Function} interface; use {@link #get} or
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DGenericMapMaker.java21 import com.google.common.base.Function;
96 Function<? super K, ? extends V> computingFunction);
/external/llvm/include/llvm/Analysis/
H A DBranchProbabilityInfo.h48 bool runOnFunction(Function &F);
129 Function *LastF;
H A DRegionPass.h23 #include "llvm/Function.h"
30 class Function;
96 bool runOnFunction(Function &F);
/external/llvm/include/llvm/CodeGen/
H A DGCStrategy.h139 GCFunctionInfo *insertFunctionInfo(const Function &F);
147 virtual bool performCustomLowering(Function &F);
H A DMachineModuleInfo.h71 const Function *Personality; // Personality function.
146 std::vector<const Function *> Personalities;
151 SmallPtrSet<const Function *, 32> UsedFunctions;
262 void takeDeletedSymbolsForFunction(const Function *F,
284 const Function *Personality);
291 const std::vector<const Function *>& getPersonalities() const {
298 bool isUsedFunction(const Function *F) {
391 const Function *getPersonality() const;
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.h157 std::vector<Function*> FunctionsWithBodies;
161 typedef std::vector<std::pair<Function*, Function*> > UpgradedIntrinsicMap;
175 DenseMap<Function*, uint64_t> DeferredFunctionInfo;
180 DenseMap<Function*, std::vector<BlockAddrRefTy> > BlockAddrFwdRefs;
280 bool ParseFunctionBody(Function *F);
290 bool FindFunctionInStream(Function *F,
291 DenseMap<Function*, uint64_t>::iterator DeferredFunctionInfoIterator);
/external/llvm/lib/Target/MBlaze/
H A DMBlazeIntrinsicInfo.cpp16 #include "llvm/Function.h"
103 Function *MBlazeIntrinsicInfo::getDeclaration(Module *M, unsigned IntrID,
108 return cast<Function>(M->getOrInsertFunction(getName(IntrID),
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h21 #include "llvm/Function.h"
197 const Function *F;
223 void printParamName(Function::const_arg_iterator I, int paramIndex,
226 void emitKernelFunctionDirectives(const Function& F,
230 void emitFunctionParamList(const Function *, raw_ostream &O);
242 void printReturnValStr(const Function *, raw_ostream &O);
265 std::map<const Function *, std::vector<GlobalVariable *> > localDecls;
284 void emitDeclaration(const Function *, raw_ostream &O);
287 void emitDemotedVars(const Function *, raw_ostream &);
H A DNVPTXSplitBBatBar.cpp14 #include "llvm/Function.h"
30 bool NVPTXSplitBBatBar::runOnFunction(Function &F) {
36 for (Function::iterator BI = F.begin(), BE = F.end(); BI != BE; ++BI) {
/external/llvm/lib/Transforms/Scalar/
H A DConstantProp.cpp43 bool runOnFunction(Function &F);
63 bool ConstantPropagation::runOnFunction(Function &F) {
/external/llvm/lib/Transforms/Utils/
H A DMem2Reg.cpp21 #include "llvm/Function.h"
37 virtual bool runOnFunction(Function &F);
57 bool PromotePass::runOnFunction(Function &F) {

Completed in 2978 milliseconds

1234567891011>>