HomeSort by relevance Sort by last modified time
    Searched refs:Function (Results 551 - 575 of 897) sorted by null

<<21222324252627282930>>

  /external/llvm/lib/CodeGen/
ELFWriter.h 195 ELFSection &getTextSection(const Function *F);
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 267 /// sections, one for function stubs, one for the functions themselves. We
268 /// have to do this because we may need to emit a function stub while in the
269 /// middle of emitting a function, and we don't know how large the function we
328 /// startFunctionBody - When a function starts, allocate a block of free
330 uint8_t *startFunctionBody(const Function *F, uintptr_t &ActualSize) {
353 DEBUG(dbgs() << "JIT: Allocating another slab of memory for function.");
401 /// endFunctionBody - The function F is now allocated, and takes the memory
403 void endFunctionBody(const Function *F, uint8_t *FunctionStart,
407 "Mismatched function start/end!")
    [all...]
  /external/llvm/lib/Linker/
LinkArchives.cpp 42 // This is needed for programs where the main function is defined in an
44 Function *Main = M->getFunction("main");
  /external/llvm/lib/MC/
MCStreamer.cpp 281 Frame.Function = LastSymbol;
283 // If the function is externally visible, we need to create a local
421 report_fatal_error("No open Win64 EH frame function!");
427 report_fatal_error("Starting a function before ending the previous one!");
430 Frame->Function = Symbol;
449 Frame->Function = CurFrame->Function;
  /external/llvm/lib/Transforms/IPO/
Internalize.cpp 11 // main function. If a main function is found, all other functions and all
48 /// If no api symbols were specified and a main function is defined,
49 /// assume the main function is the only API
115 Function *MainFunc = M.getFunction("main");
128 if (!I->isDeclaration() && // Function must be defined here
134 // Remove a callgraph edge from the external node to this function.
  /external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 45 #include "llvm/Function.h"
279 // function), however this code is loop-aware, where SimplifyCFG is
484 Function::iterator BBI = NewBB; --BBI;
498 Function::iterator BBI = SplitPreds[i];
637 Function *F = Header->getParent();
664 Function::iterator InsertPos = BackedgeBlocks.back(); ++InsertPos;
667 // Now that the block has been inserted into the function, create PHI nodes in
  /external/llvm/tools/bugpoint/
BugDriver.cpp 196 // function, if appropriate.
229 void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) {
  /external/llvm/tools/llvm-dis/
llvm-dis.cpp 67 void emitFunctionAnnot(const Function *F,
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_mastergain_gnu.s 2 @ Function: SynthMasterGain
46 .global SynthMasterGain @ allow other files to use this function
98 @ Return to calling function
101 LDMFD sp!,{r4-r6, lr} @ return to calling function
106 .endfunc @ end of function/procedure
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_mastergain_gnu.s 2 @ Function: SynthMasterGain
46 .global SynthMasterGain @ allow other files to use this function
98 @ Return to calling function
101 LDMFD sp!,{r4-r6, lr} @ return to calling function
106 .endfunc @ end of function/procedure
  /external/v8/samples/
process.cc 78 // Process function of the JavaScript script given as an argument.
89 // Process function. Returns true if this succeeded, otherwise false.
124 Persistent<Function> process_;
175 // Process function from the global object.
179 // If there is no Process function, or if it is not a function,
183 // It is a function; cast it to a Function
184 Handle<Function> process_fun = Handle<Function>::Cast(process_val)
    [all...]
  /external/v8/src/
api.h 174 static inline Local<Function> ToLocal(
226 OpenHandle(const Function* data);
271 MAKE_TO_LOCAL(ToLocal, JSFunction, Function)
311 MAKE_OPEN_HANDLE(Function, JSFunction)
  /external/v8/src/mips/
virtual-frame-mips.cc 113 void VirtualFrame::CallRuntime(const Runtime::Function* f, int arg_count) {
  /external/v8/test/cctest/
test-deoptimization.cc 102 v8::Local<v8::Function> fun =
103 v8::Local<v8::Function>::Cast(obj->Get(v8_str(property_name)));
114 // Test lazy deoptimization of a simple function.
119 "function h() { %DeoptimizeFunction(f); }"
120 "function g() { count++; h(); }"
121 "function f() { g(); };"
130 // Test lazy deoptimization of a simple function. Call the function after the
136 "function g() { count++; %DeoptimizeFunction(f); f(false); }"
137 "function f(x) { if (x) { g(); } else { return } };
    [all...]
  /external/v8/test/mjsunit/compiler/
expression-trees.js 33 function makeTrees(op, leaves) {
75 var or_fun = new Function("return " + or_trees[i]);
98 var and_fun = new Function("return " + and_trees[i]);
  /external/v8/test/mjsunit/
debug-liveedit-patch-positions.js 31 // Scenario: some function is being edited; the outer function has to have its
32 // positions patched. Accoring to a special markup of function text
38 "function F1() { return 5; }\n" +
39 "function ChooseAnimal(/*$*/ ) {\n" +
41 "/*$*/ var res/*$*/ =/*$*/ (function() { return 'Cat'; } )();\n" +
46 "function F2(x, y) { return x + y; }"
49 // Find all *$* markers in text of the function and read corresponding statement
51 function ReadMarkerPositions(func) {
62 function ReadPCMap(func, positions)
    [all...]
function-names.js 29 function TestFunctionNames(object, names) {
74 // Function.prototype functions.
77 TestFunctionNames(Function.prototype, functionPrototypeFunctions);
keyed-call-ic.js 33 function globalFunction1() {
37 function globalFunction2() {
44 function testGlobals() {
52 function F() {}
54 F.prototype.one = function() {return 'one'; }
55 F.prototype.two = function() {return 'two'; }
56 F.prototype.three = function() {return 'three'; }
61 function testKeyTransitions() {
111 // Function is a constant property
120 // Function is a fast propert
    [all...]
mirror-unresolved-function.js 31 function MirrorRefCache(json_refs) {
39 MirrorRefCache.prototype.lookup = function(handle) {
57 assertEquals('function', mirror.type());
59 assertEquals("Function", mirror.className());
70 assertEquals('function', fromJSON.type, 'Unexpected mirror type in JSON');
71 assertEquals('Function', fromJSON.className, 'Unexpected mirror class name in JSON');
72 assertEquals(mirror.constructorFunction().handle(), fromJSON.constructorFunction.ref, 'Unexpected constructor function handle in JSON');
73 assertEquals('undefined', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
object-literal.js 66 function makeSparseArray() {
81 function makeNonConstantArray() { return [ [ n ] ]; }
87 function makeNonConstantObject() { return { a: { b: n } }; }
94 function makeRegexpInArray() { return [ [ /a*/, {} ] ]; }
101 function makeRegexpInObject() { return { a: { b: /b*/, c: {} } }; }
123 "function",
143 function testKeywordProperty(keyword) {
172 // Function property, called.
174 function test_call() { this.was_called = true; was_called = true; }
180 // Function property, constructed
    [all...]
value-wrapper.js 34 function RunTests() {
51 function CallTypeOfThis(obj) {
63 function TestWithWith(obj) {
101 function TypeOfThis() { return typeof this; }
150 // According to ES3 15.3.4.3 the this value passed to Function.prototyle.apply
158 // According to ES3 15.3.4.3 the this value passed to Function.prototyle.call
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.4.3.js 32 Object "function" [native, implements [Call]]
78 testcases[testcases.length] = new TestCase( SECTION, "typeof(Number.prototype.toString)", "function", typeof(Number.prototype.toString) );
87 testcases[testcases.length] = new TestCase( SECTION, "typeof(new Function())", "function", typeof( new Function() ) );
88 testcases[testcases.length] = new TestCase( SECTION, "typeof(parseInt)", "function", typeof( parseInt ) );
89 testcases[testcases.length] = new TestCase( SECTION, "typeof(test)", "function", typeof( test ) );
90 testcases[testcases.length] = new TestCase( SECTION, "typeof(String.fromCharCode)", "function", typeof( String.fromCharCode ) );
97 function test() {
11.9.1.js 50 function test() {
63 function getTestCases() {
159 function MyObject( value ) {
161 this.valueOf = new Function( "return this.value" );
11.9.2.js 49 function test() {
62 function getTestCases() {
158 function MyObject( value ) {
160 this.valueOf = new Function( "return this.value" );
11.9.3.js 49 function test() {
62 function getTestCases() {
158 function MyObject( value ) {
160 this.valueOf = new Function( "return this.value" );

Completed in 1161 milliseconds

<<21222324252627282930>>