| /external/llvm/include/llvm/Target/ |
| TargetELFWriterInfo.h | 18 class 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 /// main function is found, all other globals are marked as internal. If no api 111 /// is supplied and AllButMain is not set, or no main function is found, nothing 120 /// Note that commandline options that are used with the above function are not 126 /// which are not used by the body of the function. 158 /// program into a function if it can. 163 /// program into a function if it can. This is used by bugpoint [all...] |
| /external/llvm/lib/Analysis/IPA/ |
| GlobalsModRef.cpp | 44 /// function in the program. Later, the entries for these functions are 45 /// removed if the function is found to call an external function (in which 50 /// function. 65 /// FunctionEffect - Capture whether or not this function reads or writes to 86 /// FunctionInfo - For each function, keep track of what globals are 88 std::map<const Function*, FunctionRecord> FunctionInfo; 120 /// getModRefBehavior - Return the behavior of the specified function if 122 /// case the most generic behavior of this function should be returned. 123 ModRefBehavior getModRefBehavior(const Function *F) [all...] |
| /external/llvm/lib/Analysis/ |
| LibCallSemantics.cpp | 18 #include "llvm/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/AsmPrinter/ |
| ARMException.cpp | 49 /// BeginFunction - Gather pre-function exception information. Assumes it's 50 /// being emitted immediately after the function entry point. 58 /// EndFunction - Gather and emit post-function exception information. 68 if (const Function * Personality =
|
| /external/llvm/lib/CodeGen/ |
| MachineFunctionAnalysis.cpp | 47 bool MachineFunctionAnalysis::runOnFunction(Function &F) {
|
| MachineFunctionPass.cpp | 14 #include "llvm/Function.h" 26 bool MachineFunctionPass::runOnFunction(Function &F) {
|
| /external/llvm/lib/ExecutionEngine/JIT/ |
| JITDebugRegisterer.cpp | 19 #include "llvm/Function.h" 36 // Debuggers puts a breakpoint in this function. 39 // We put information about the JITed function in this global, which the 67 std::string JITDebugRegisterer::MakeELF(const Function *F, DebugInfo &I) { 82 ELFSection &Text = EW.getTextSection(const_cast<Function *>(F)); 101 // Add this single function to the symbol table, so the debugger prints the 132 void JITDebugRegisterer::RegisterFunction(const Function *F, DebugInfo &I) { 200 void JITDebugRegisterer::UnregisterFunction(const Function *F) {
|
| /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/lib/Transforms/Utils/ |
| InlineFunction.cpp | 1 //===- InlineFunction.cpp - Code to perform function inlining -------------===// 10 // This file implements inlining of a function into a call site, resolving 286 /// introduced for calls within the inlined function. 401 Function *fn = dyn_cast<Function>(call->getCalledValue()); 436 // FIXME: New EH - rename this function when new EH is turned on. 498 /// invokes. This function analyze BB to see if there are any calls, and if so, 518 // We only need to check for function calls: inlined invoke 556 // Convert this function call into an invoke instruction. 601 /// in the body of the inlined function into invokes and turn unwin [all...] |
| /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/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))" );
|
| 10.1.4-5.js | 65 function test() { 90 function getTestCases() { 99 function MyObject() { 100 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
|
| 10.1.4-7.js | 65 function test() { 89 function getTestCases() { 98 function MyObject() { 99 this.eval = new Function( "x", "return(Math.pow(Number(x),2))" );
|
| 10.1.5-4.js | 52 'if ( Function == null ) { testcases[0].reason += " Function == null"; }' + 55 'if ( Number == null ) { testcases[0].reason += " Function == null";}' + 62 var NEW_FUNCTION = new Function( EVAL_STRING ); 73 function test() { 87 function getTestCases() {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
| 11.2.2-11.js | 74 var FUNCTION = new Function(); 77 "var FUNCTION = new Function(); f = new FUNCTION(); typeof f", 79 eval("var FUNCTION = new Function(); f = new FUNCTION(); typeof f") ); 82 "var FUNCTION = new Function('return this'); f = new FUNCTION(); typeof f" [all...] |