| /external/llvm/lib/Transforms/IPO/ |
| InlineSimple.cpp | 1 //===- InlineSimple.cpp - Code to perform simple function inlining --------===// 34 SmallPtrSet<const Function*, 16> NeverInline; 50 void resetCachedCostInfo(Function *Caller) { 53 void growCachedCostInfo(Function* Caller, Function* Callee) { 65 "Function Integration/Inlining", false, false) 68 "Function Integration/Inlining", false, false) 114 if (const Function *F = dyn_cast<Function>(Elt))
|
| PartialInlining.cpp | 11 // that surrounds the body of the function. 40 Function* unswitchFunction(Function* F); 50 Function* PartialInliner::unswitchFunction(Function* F) { 51 // First, verify that this function is an unswitching candidate... 71 // Clone the function, so that we can hack away on it. 73 Function* duplicateFunction = CloneFunction(F, VMap, 114 for (Function::iterator FI = duplicateFunction->begin(), 125 Function* extractedFunction = ExtractCodeRegion(DT, toExtract) [all...] |
| InlineAlways.cpp | 36 SmallPtrSet<const Function*, 16> NeverInline; 50 void resetCachedCostInfo(Function *Caller) { 53 void growCachedCostInfo(Function* Caller, Function* Callee) {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Expressions/ |
| instanceof-001.js | 21 function InstanceOf( object_1, object_2, expect ) { 31 function Gen3(value) { 34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" ); 37 Gen3.__proto__.toString = new Function( "return \"(\"+this.name+\" object)\""); 39 function Gen2(value) { 46 function Gen1(value) { 53 function Gen0(value) { 61 function GenA(value) { 64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" ); 70 function GenB(value) [all...] |
| instanceof-003-n.js | 21 function InstanceOf( object_1, object_2, expect ) { 31 function Gen3(value) { 34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" ); 37 Gen3.__proto__.toString = new Function( "return \"(\"+this.name+\" object)\""); 39 function Gen2(value) { 46 function Gen1(value) { 53 function Gen0(value) { 61 function GenA(value) { 64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" ); 70 function GenB(value) [all...] |
| instanceof-004-n.js | 21 function InstanceOf( object_1, object_2, expect ) { 31 function Gen3(value) { 34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" ); 37 Gen3.__proto__.toString = new Function( "return \"(\"+this.name+\" object)\""); 39 function Gen2(value) { 46 function Gen1(value) { 53 function Gen0(value) { 61 function GenA(value) { 64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" ); 70 function GenB(value) [all...] |
| instanceof-005-n.js | 21 function InstanceOf( object_1, object_2, expect ) { 31 function Gen3(value) { 34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" ); 37 Gen3.__proto__.toString = new Function( "return \"(\"+this.name+\" object)\""); 39 function Gen2(value) { 46 function Gen1(value) { 53 function Gen0(value) { 61 function GenA(value) { 64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" ); 70 function GenB(value) [all...] |
| instanceof-006.js | 21 function InstanceOf( object_1, object_2, expect ) { 31 function Gen3(value) { 34 this.toString = new Function ( "return \"(Gen\"+this.generation+\" instance)\"" ); 37 Gen3.__proto__.toString = new Function( "return \"(\"+this.name+\" object)\""); 39 function Gen2(value) { 46 function Gen1(value) { 53 function Gen0(value) { 61 function GenA(value) { 64 this.toString = new Function ( "return \"(instance of Gen\"+this.generation+\")\"" ); 70 function GenB(value) [all...] |
| /frameworks/compile/libbcc/lib/CodeGen/ |
| CodeMemoryManager.h | 32 class Function; 67 typedef std::map<const llvm::Function*, 81 // | Function Memory ... -> <- ... Stub/GOT | 95 // of function code's memory usage 150 // When we start JITing a function, the JIT calls this method to allocate a 155 // need to emit the function, it passes 0 for the ActualSize. In either 159 virtual uint8_t *startFunctionBody(const llvm::Function *F, 162 // This method is called by the JIT to allocate space for a function stub 164 // function. For example, if foo calls bar, and if bar either needs to be 165 // lazily compiled or is a native function that exists too far away from th [all...] |
| /development/tools/glesv2debugger/src/com/android/glesv2debugger/ |
| BreakpointOption.java | 20 import com.android.glesv2debugger.DebuggerMessage.Message.Function; 45 Button[] buttonsBreak = new Button[Function.values().length]; 46 /** cache of buttonsBreak[Function.getNumber()].getSelection */ 47 boolean[] breakpoints = new boolean[Function.values().length]; 59 for (int i = 0; i < Function.values().length; i++) { 62 group.setText(Function.values()[i].toString()); 67 breakpoints[Function.values()[i].getNumber()] = btn.getSelection(); 68 buttonsBreak[Function.values()[i].getNumber()] = btn; 80 void setBreakpoint(final int contextId, final Function function, final boolean enabled) [all...] |
| /external/llvm/lib/Transforms/Hello/ |
| Hello.cpp | 17 #include "llvm/Function.h" 30 virtual bool runOnFunction(Function &F) { 48 virtual bool runOnFunction(Function &F) {
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
| 15.3.3.1-1.js | 24 ECMA Section: 15.3.3.1 Properties of the Function Constructor 25 Function.prototype 27 Description: The initial value of Function.prototype is the built-in 28 Function prototype object. 33 This test the value of Function.prototype. 42 var TITLE = "Function.prototype"; 47 testcases[tc++] = new TestCase( SECTION, "Function.prototype == Function.proto", true, Function.__proto__ == Function.prototype ) [all...] |
| /external/webkit/Source/WebCore/xml/ |
| XPathFunctions.h | 38 class Function : public Expression { 52 Function* createFunction(const String& name, const Vector<Expression*>& args = Vector<Expression*>());
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/ |
| BreakpointOption.java | 20 import com.android.ide.eclipse.gldebugger.DebuggerMessage.Message.Function; 45 Button[] buttonsBreak = new Button[Function.values().length]; 46 /** cache of buttonsBreak[Function.getNumber()].getSelection */ 47 boolean[] breakpoints = new boolean[Function.values().length]; 59 for (int i = 0; i < Function.values().length; i++) { 62 group.setText(Function.values()[i].toString()); 67 breakpoints[Function.values()[i].getNumber()] = btn.getSelection(); 68 buttonsBreak[Function.values()[i].getNumber()] = btn; 80 void setBreakpoint(final int contextId, final Function function, final boolean enabled) [all...] |
| /external/guava/src/com/google/common/base/ |
| Function.java | 26 * <code>Function<String,Integer></code> and transform integers in 32 * <code>Function<Float,Float></code>. 37 * @param <F> the type of the function input 38 * @param <T> the type of the function output 44 public interface Function<F, T> { 47 * Applies the function to an object of type {@code F}, resulting in an object 57 * Indicates whether some other object is equal to this {@code Function}. 59 * also a {@code Function} and, for every input object {@code o}, it returns
|
| /external/llvm/examples/HowToUseJIT/ |
| HowToUseJIT.cpp | 26 // function and return result to a driver, i.e. to a "host program". 32 // conflict of temporary function name with some real 33 // existing function name? 58 // Create some module to put our function into it. 61 // Create the add1 function entry and insert this entry into module M. The 62 // function will have a return type of "int" and take an argument of "int". 64 Function *Add1F = 65 cast<Function>(M->getOrInsertFunction("add1", Type::getInt32Ty(Context), 69 // Add a basic block to the function. As before, it automatically inserts 80 // Get pointers to the integer argument of the add1 function.. [all...] |
| /external/llvm/include/llvm/Analysis/ |
| ConstantsScanner.h | 39 inline constant_iterator(const Function *F) : InstI(inst_begin(F)), OpIdx(0) { 46 inline constant_iterator(const Function *F, bool) // end ctor 83 inline constant_iterator constant_begin(const Function *F) { 87 inline constant_iterator constant_end(const Function *F) {
|
| /external/llvm/include/llvm/CodeGen/ |
| MachineFunctionPass.h | 50 /// createPrinterPass - Get a machine function printer pass. 54 virtual bool runOnFunction(Function &F);
|
| /external/llvm/include/llvm/ |
| GVMaterializer.h | 25 class Function;
|
| ValueSymbolTable.h | 25 class Function; 36 friend class SymbolTableListTraits<Argument, Function>; 37 friend class SymbolTableListTraits<BasicBlock, Function>; 39 friend class SymbolTableListTraits<Function, Module>; 80 /// This function can be used from the debugger to display the
|
| /external/llvm/lib/Analysis/ |
| PostDominators.cpp | 34 bool PostDominatorTree::runOnFunction(Function &F) {
|
| /external/llvm/lib/Target/Blackfin/ |
| BlackfinIntrinsicInfo.h | 26 Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
|
| /external/llvm/lib/Target/MBlaze/ |
| MBlazeIntrinsicInfo.h | 27 Function *getDeclaration(Module *M, unsigned ID, Type **Tys = 0,
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/instanceof/ |
| regress-7635.js | 37 * Calls to AddTestCase here. AddTestCase is a function that is defined 54 function Foo() {} 60 AddTestCase( "function Foo() {}; theproto = {}; Foo.prototype = theproto; theproto instanceof Foo", 64 var f = new Function(); 66 AddTestCase( "var f = new Function(); f instanceof f", false, f instanceof f );
|
| /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Regress/ |
| function-004-n.js | 23 * File Name: function-004.js 43 o.call = Function.prototype.call; 47 "var o = {}; o.call = Function.prototype.call; o.call()",
|