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

<<11121314151617181920>>

  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 70 bool runOnFunction(Function &F);
78 bool setupEntryBlockAndCallSites(Function &F);
79 Value *setupFunctionContext(Function &F, ArrayRef<LandingPadInst*> LPads);
80 void lowerIncomingArguments(Function &F);
81 void lowerAcrossUnwindEdges(Function &F, ArrayRef<InvokeInst*> Invokes);
88 bool insertSjLjEHSupport(Function &F);
101 // Build the function context structure.
139 /// function context
241 /// FIXME: Move this function to a common utility file (Local.cpp?) so
261 Function *F = Invokes.back()->getParent()->getParent()
    [all...]
MachineModuleInfo.cpp 60 Function *Fn; // The containing function of the BasicBlock.
70 /// DeletedAddrLabelsNeedingEmission - This is a per-function list of symbols
73 /// function body.
74 DenseMap<AssertingVH<Function>, std::vector<MCSymbol*> >
93 void takeDeletedSymbolsForFunction(Function *F,
147 takeDeletedSymbolsForFunction(Function *F, std::vector<MCSymbol*> &Result) {
148 DenseMap<AssertingVH<Function>, std::vector<MCSymbol*> >::iterator I =
151 // If there are no entries for the function, just return.
163 // queue it up for later emission when the function is output
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
MessageData.java 20 import com.android.glesv2debugger.DebuggerMessage.Message.Function;
41 final Function function = msg.getFunction(); local
42 if (function != Message.Function.ACK && msg.getType() != Type.BeforeCall)
44 builder.append(columns[0] = function.name());
64 switch (function) {
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 442 // If a declaration acquires a function type through a type
445 // function declarator to have function type, the program is
683 // If the enumeration is within a function or method, record the enum
    [all...]
  /external/guava/src/com/google/common/base/
Suppliers.java 40 * Returns a new supplier which is the composition of the provided function
43 * {@code function} to that value. Note that the resulting supplier will not
44 * call {@code first} or invoke {@code function} until it is called.
47 Function<? super F, T> function, Supplier<F> first) {
48 Preconditions.checkNotNull(function);
50 return new SupplierComposition<F, T>(function, first);
55 final Function<? super F, ? extends T> function; field in class:Suppliers.SupplierComposition
58 SupplierComposition(Function<? super F, ? extends T> function
    [all...]
  /external/llvm/include/llvm/Analysis/
PathNumbering.h 207 // Represents the Ball Larus DAG for a given Function. Can calculate
212 // Initializes a BallLarusDag from the CFG of a given function. Must
215 BallLarusDag(Function &F)
238 // Returns the function for the DAG.
239 Function& getFunction();
283 // The function represented by this DAG.
284 Function& _function;
  /external/llvm/include/llvm/
PassAnalysisSupport.h 34 // Pass infrastructure through the getAnalysisUsage virtual function.
96 /// setPreservesCFG - This function should be called by the pass, iff they do
99 /// 1. Add or remove basic blocks from the function
102 /// This function annotates the AnalysisUsage info object to say that analyses
141 // Find pass that is implementing PI. Initialize pass for Function F.
142 Pass *findImplPass(Pass *P, AnalysisID PI, Function &F);
169 /// getAnalysisIfAvailable<AnalysisType>() - Subclasses use this function to
193 /// getAnalysis<AnalysisType>() - This function is used by subclasses to get
195 /// getAnalysisUsage function.
222 /// getAnalysis<AnalysisType>() - This function is used by subclasses to ge
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 42 virtual bool runOnFunction(Function &F);
95 bool Sinking::runOnFunction(Function &F) {
106 for (Function::iterator I = F.begin(), E = F.end();
SCCP.cpp 174 /// value out of a function, it will have an entry in this map, indicating
175 /// what the known return value for the function is.
176 DenseMap<Function*, LatticeVal> TrackedRetVals;
180 DenseMap<std::pair<Function*, unsigned>, LatticeVal> TrackedMultipleRetVals;
182 /// MRVFunctionsTracked - Each function in TrackedMultipleRetVals is
184 SmallPtrSet<Function*, 16> MRVFunctionsTracked;
189 SmallPtrSet<Function*, 16> TrackingIncomingArguments;
240 /// and out of the specified function (which cannot have its address taken),
242 void AddTrackedFunction(Function *F) {
253 void AddArgumentTrackedFunction(Function *F)
    [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 1 //===-- DifferenceEngine.cpp - Structural function/module comparison ------===//
18 #include "llvm/Function.h"
116 /// A function-scope difference engine.
459 void diff(Function *L, Function *R) {
464 for (Function::arg_iterator
631 void DifferenceEngine::diff(Function *L, Function *R) {
642 log("left function is declaration, right function is definition")
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.4-2.js 40 Note that the charAt function is intentionally generic;
58 function getTestCases() {
114 function test() {
131 function MyObject( value ) {
133 this.valueOf = new Function( "return this.value;" );
134 this.toString = new Function( "return this.value +''" );
137 function MyOtherObject(value) {
139 this.valueOf = new Function( "return this.value;" );
  /frameworks/compile/libbcc/lib/CodeGen/
CodeMemoryManager.cpp 123 // When we start JITing a function, the JIT calls this method to allocate a
128 // need to emit the function, it passes 0 for the ActualSize. In either
132 uint8_t *CodeMemoryManager::startFunctionBody(const llvm::Function *F,
145 // function. At this point we know the size of the JIT compiled function.
148 // function. This method should mark the space allocated and remember where
150 void CodeMemoryManager::endFunctionBody(const llvm::Function *F,
155 "Mismatched function start/end!");
163 // Record there's a function in our memory start from @FunctionStart
165 "Function already emitted!")
    [all...]
  /external/guava/src/com/google/common/collect/
Lists.java 21 import com.google.common.base.Function;
311 * Returns a list that applies {@code function} to each element of {@code
321 * <p>The function is applied lazily, invoked when needed. This is necessary
322 * for the returned list to be a view, but it means that the function will be
324 * {@link List#hashCode}. For this to perform well, {@code function} should be
331 * {@code function} are serializable. The returned list is threadsafe if the
332 * supplied list and function are.
335 List<F> fromList, Function<? super F, ? extends T> function) {
337 ? new TransformingRandomAccessList<F, T>(fromList, function)
349 final Function<? super F, ? extends T> function; field in class:Lists.TransformingSequentialList
    [all...]
  /external/llvm/examples/BrainF/
BrainF.cpp 55 //Function prototypes
59 Function *memset_func = Intrinsic::getDeclaration(module, Intrinsic::memset,
63 getchar_func = cast<Function>(module->
67 putchar_func = cast<Function>(module->
72 //Function header
75 brainf_func = cast<Function>(module->
119 //Function footer
148 Function *puts_func = cast<Function>(module->
  /external/v8/src/
d8-debug.cc 65 // Get the toJSONProtocol function on the event and get the JSON format.
67 Local<Function> to_json_fun =
68 Function::Cast(*event_data->Get(to_json_fun_name));
91 Local<Function> fun = Function::Cast(*exec_state->Get(fun_name));
127 Handle<Function> fun;
136 fun = Handle<Function>::Cast(cmd_processor->Get(fun_name));
  /external/chromium/testing/gmock/include/gmock/
gmock-spec-builders.h 88 // Implements a mock function.
100 // Base class for function mockers.
103 // Protects the mock object registry (in class Mock), all function
107 // mock function Foo() is called, it needs to consult its expectations
109 // call a mock function (either Foo() or a different one) at the same
112 // expectation gets picked. Therefore, we sequence all mock function
120 // type-agnostic part of the function mocker interface. Its pure
127 // Verifies that all expectations on this mock function have been
133 // Clears the ON_CALL()s set on this mock function.
164 // Returns the expectation that matches the given function argument
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 16 (* variant for function calls. *)
19 (* proto - This type represents the "prototype" for a function, which captures
21 * function takes). *)
24 (* func - This type represents a function definition itself. *)
25 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 16 (* variant for function calls. *)
19 (* proto - This type represents the "prototype" for a function, which captures
21 * function takes). *)
24 (* func - This type represents a function definition itself. *)
25 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 16 (* variant for function calls. *)
19 (* proto - This type represents the "prototype" for a function, which captures
21 * function takes). *)
24 (* func - This type represents a function definition itself. *)
25 type func = Function of proto * expr
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 28 class Function;
67 /// incorporated function. Their reverse mapping is stored in ValueMap.
70 /// When a function is incorporated, this is the size of the Values list
74 /// When a function is incorporated, this is the size of the MDValues list
105 /// function-local constants.
124 /// getGlobalBasicBlockID - This returns the function-specific ID for the
129 /// incorporateFunction/purgeFunction - If you'd like to deal with a function,
132 void incorporateFunction(const Function &F);
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCFIException.cpp 67 const std::vector<const Function*> &Personalities = MMI->getPersonalities();
85 /// BeginFunction - Gather pre-function exception information. Assumes it's
86 /// being emitted immediately after the function entry point.
104 const Function *Per = MMI->getPersonalities()[MMI->getPersonalityIndex()];
137 /// EndFunction - Gather and emit post-function exception information.
  /external/llvm/lib/Transforms/Utils/
DemoteRegToStack.cpp 10 // This file provide the function DemoteRegToStack(). This function takes a
13 // AllocaInst inserted. After this function is called on an instruction, we are
20 #include "llvm/Function.h"
26 /// DemoteRegToStack - This function takes a virtual register computed by an
45 Function *F = I.getParent()->getParent();
108 /// DemotePHIToStack - This function takes a virtual register computed by a phi
123 Function *F = P->getParent()->getParent();
UnifyFunctionExitNodes.cpp 20 #include "llvm/Function.h"
28 "Unify function exit nodes", false, false)
46 // If there are no return stmts in the Function, a null pointer is returned.
48 bool UnifyFunctionExitNodes::runOnFunction(Function &F) {
49 // Loop over all of the blocks in a function, tracking all of the blocks that
55 for(Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
107 // Otherwise, we need to insert a new basic block into the function, add a PHI
108 // nodes (if the function returns values), and convert all of the return
118 // If the function doesn't return void... add a PHI node to the block...
  /external/llvm/lib/VMCore/
Android.mk 14 Function.cpp \
Module.cpp 37 template class llvm::SymbolTableListTraits<Function, Module>;
134 // getOrInsertFunction - Look up the specified function in the module symbol
135 // table. If it does not exist, add a prototype for the function and return
142 // See if we have a definition for the specified function already.
146 Function *New = Function::Create(Ty, GlobalVariable::ExternalLinkage, Name);
153 // Okay, the function exists. Does it have externally visible linkage?
155 // Clear the function's name.
163 // If the function exists but has the wrong type, return a bitcast to the
168 // Otherwise, we just found the existing function or a prototype
    [all...]

Completed in 474 milliseconds

<<11121314151617181920>>