HomeSort by relevance Sort by last modified time
    Searched refs:Function (Results 251 - 275 of 1083) sorted by null

<<11121314151617181920>>

  /external/llvm/include/llvm/Analysis/
LazyValueInfo.h 75 virtual bool runOnFunction(Function &F);
LibCallAliasAnalysis.h 51 virtual bool runOnFunction(Function &F) {
ProfileInfoLoader.h 26 class Function;
49 // getRawFunctionCounts - This method is used by consumers of function
  /external/llvm/include/llvm/Transforms/
IPO.h 24 class Function;
53 /// createConstantMergePass - This function returns a new pass that merges
63 /// createGlobalOptimizerPass - This function returns a new pass that optimizes
86 /// to inline direct function calls to small functions.
110 /// Note that commandline options that are used with the above function are not
118 /// which are not used by the body of the function.
150 /// program into a function if it can.
155 /// program into a function if it can. This is used by bugpoint.
164 /// createStripDeadPrototypesPass - This pass removes any function declarations
171 /// It also discovers function arguments that are not captured by the functio
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallPrinter.cpp 34 if (Function *Func = Node->getFunction())
GlobalsModRef.cpp 45 /// function in the program. Later, the entries for these functions are
46 /// removed if the function is found to call an external function (in which
51 /// function.
66 /// FunctionEffect - Capture whether or not this function reads or writes to
87 /// FunctionInfo - For each function, keep track of what globals are
89 std::map<const Function*, FunctionRecord> FunctionInfo;
121 /// getModRefBehavior - Return the behavior of the specified function if
123 /// case the most generic behavior of this function should be returned.
124 ModRefBehavior getModRefBehavior(const Function *F)
    [all...]
  /external/llvm/lib/Analysis/
LibCallSemantics.cpp 18 #include "llvm/IR/Function.h"
42 /// the specified function if we have it. If not, return null.
44 LibCallInfo::getFunctionInfo(const Function *F) const {
60 // Look up this function in the string map.
NoAliasAnalysis.cpp 49 virtual ModRefBehavior getModRefBehavior(const Function *F) {
  /external/llvm/lib/CodeGen/
GCMetadata.cpp 18 #include "llvm/IR/Function.h"
39 bool runOnFunction(Function &F);
50 GCFunctionInfo::GCFunctionInfo(const Function &F, GCStrategy &S)
90 GCFunctionInfo &GCModuleInfo::getFunctionInfo(const Function &F) {
142 bool Printer::runOnFunction(Function &F) {
MachineFunctionAnalysis.cpp 46 bool MachineFunctionAnalysis::runOnFunction(Function &F) {
MachineFunctionPass.cpp 14 #include "llvm/IR/Function.h"
26 bool MachineFunctionPass::runOnFunction(Function &F) {
SjLjEHPrepare.cpp 64 bool runOnFunction(Function &F);
72 bool setupEntryBlockAndCallSites(Function &F);
75 Value *setupFunctionContext(Function &F, ArrayRef<LandingPadInst*> LPads);
76 void lowerIncomingArguments(Function &F);
77 void lowerAcrossUnwindEdges(Function &F, ArrayRef<InvokeInst*> Invokes);
91 // Build the function context structure.
125 /// function context
153 /// instruction with those returned by the personality function.
184 /// setupFunctionContext - Allocate the function context on the stack and fill
187 setupFunctionContext(Function &F, ArrayRef<LandingPadInst*> LPads)
    [all...]
  /external/llvm/lib/Target/R600/
AMDILIntrinsicInfo.cpp 74 Function*
  /external/llvm/lib/Target/XCore/
XCoreMachineFunctionInfo.h 1 //===-- XCoreMachineFuctionInfo.h - XCore machine function info -*- C++ -*-===//
10 // This file declares XCore-specific per-machine-function information.
24 class Function;
  /external/llvm/lib/Transforms/IPO/
StripDeadPrototypes.cpp 1 //===-- StripDeadPrototypes.cpp - Remove unused function declarations ----===//
28 /// @brief Pass to remove unused function declarations.
42 "Strip Unused Function Prototypes", false, false)
47 // Erase dead function prototypes.
49 Function *F = I++;
50 // Function must be a prototype and unused.
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 37 cl::desc("Force function reduction to keep main"),
177 class ReduceCrashingFunctions : public ListReducer<Function*> {
185 virtual TestResult doTest(std::vector<Function*> &Prefix,
186 std::vector<Function*> &Kept,
195 bool TestFuncs(std::vector<Function*> &Prefix);
199 bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
211 std::set<Function*> Functions;
213 Function *CMF = cast<Function>(VMap[Funcs[i]]);
214 assert(CMF && "Function not in module?!")
    [all...]
  /external/v8/src/
lazy-instance.h 30 // useful for places you would normally use a function-level static, but you
168 template <typename Function, typename Storage>
169 static void Init(OnceType* once, Function function, Storage storage) {
170 CallOnce(once, function, storage);
177 template <typename Function, typename Storage>
178 static void Init(OnceType* once, Function function, Storage storage) {
180 function(storage);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.3.js 26 Array constructor is the Function prototype object.
42 function getTestCases() {
46 array[item++] = new TestCase( SECTION, "Array.__proto__", Function.prototype, Array.__proto__ );
50 function test() {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.3.1-5.js 39 // all tests must call a function that returns an array of TestCase objects.
42 function getTestCases() {
45 array[item++] = new TestCase( SECTION, "Function.prototype == Boolean.__proto__", true, Function.prototype == Boolean.__proto__ );
49 function test() {
15.6.3.js 27 the Function prototype object.
46 function getTestCases() {
50 array[item++] = new TestCase( SECTION, "Boolean.__proto__ == Function.prototype", true, Boolean.__proto__ == Function.prototype );
55 function test() {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.2-2-n.js 26 This function returns a string value. The contents of the string are
30 The toString function is not generic; it generates a runtime error if its
59 function MyObject( value ) {
61 this.valueOf = new Function( "return this.value" );
65 function test() {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
10.1.4-1.js 66 function test() {
89 function getTestCases() {
98 function MyObject() {
99 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
10.1.4-2.js 66 function test() {
91 function getTestCases() {
100 function MyObject() {
101 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
10.1.4-3.js 65 function test() {
87 function getTestCases() {
96 function MyObject() {
97 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
10.1.4-4.js 65 function test() {
90 function getTestCases() {
99 function MyObject() {
100 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );

Completed in 1285 milliseconds

<<11121314151617181920>>