Home
last modified time | relevance | path

Searched refs:callees (Results 1 – 25 of 62) sorted by relevance

123

/external/swiftshader/src/OpenGL/compiler/
DAnalyzeCallDepth.cpp47 for(size_t i = 0; i < callees.size(); i++) in addCallee()
49 if(callees[i] == callee) in addCallee()
55 callees.push_back(callee); in addCallee()
66 for(size_t i = 0; i < callees.size(); i++) in analyzeCallDepth()
69 switch(callees[i]->visit) in analyzeCallDepth()
75 calleeDepth = callees[i]->getLastDepth(); in analyzeCallDepth()
78 calleeDepth = callees[i]->analyzeCallDepth(analyzeCallDepth); in analyzeCallDepth()
81 UNREACHABLE(callees[i]->visit); in analyzeCallDepth()
DAnalyzeCallDepth.h50 TVector<FunctionNode*> callees; variable
/external/angle/src/compiler/translator/
DCallDAG.cpp76 record.callees.reserve(data.callees.size()); in fillDataStructures()
77 for (auto &callee : data.callees) in fillDataStructures()
79 record.callees.push_back(static_cast<int>(callee->index)); in fillDataStructures()
93 std::set<CreatorFunctionData *> callees; member
140 mCurrentFunction->callees.insert(&it->second); in visitAggregate()
206 for (auto callee : function->callees) in assignIndicesInternal()
DCallDAG.h45 std::vector<int> callees; member
/external/mesa3d/src/compiler/glsl/
Dir_function_detect_recursion.cpp148 exec_list callees; member in __anon7242f9480111::function
212 this->current->callees.push_tail(node); in visit_enter()
253 if (f->callers.is_empty() || f->callees.is_empty()) { in remove_unlinked_functions()
256 destroy_links(& n->func->callees, f); in remove_unlinked_functions()
259 while (!f->callees.is_empty()) { in remove_unlinked_functions()
260 struct call_node *n = (struct call_node *) f->callees.pop_head(); in remove_unlinked_functions()
/external/llvm-project/llvm/test/ExecutionEngine/RuntimeDyld/ARM/
DMachO_Thumb_Relocations.s36 # callees have the low bit set on their addresses.
42 # Check that arm callees do not have the low bit set on their addresses.
55 # callees have the low bit set on their addresses.
/external/tensorflow/tensorflow/compiler/xla/service/
Dcall_inliner.cc127 const auto& callees = call->called_computations(); in Inline() local
128 TF_RET_CHECK(callees.size() == 1); in Inline()
129 HloComputation* callee = callees[0]; in Inline()
Dcall_graph_test.cc108 EXPECT_TRUE(node.callees().empty()); in TEST_F()
155 EXPECT_EQ(1, entry_node.callees().size()); in TEST_F()
164 EXPECT_TRUE(map_node.callees().empty()); in TEST_F()
189 EXPECT_EQ(1, entry_node.callees().size()); in TEST_F()
197 EXPECT_TRUE(called_node.callees().empty()); in TEST_F()
287 EXPECT_TRUE(true_node.callees().empty()); in TEST_F()
293 EXPECT_TRUE(false_node.callees().empty()); in TEST_F()
Dcall_graph.cc264 for (const HloComputation* callee : node->callees()) { in SetNodeDepths()
329 for (const HloComputation* computation : node.callees()) { in VisitNodesInternal()
437 for (const HloComputation* callee : node.callees()) { in ToString()
/external/llvm-project/llvm/test/Transforms/CalledValuePropagation/
Dsimple-select.ll9 ; instruction, and attach !callees metadata to the call. Such metadata can
18 ; CHECK: call void %tmp0(), !callees ![[MD:[0-9]+]]
Dsimple-memory.ll9 ; variable, and attach !callees metadata to the call. Such metadata can enable
17 ; CHECK: call void %tmp0(), !callees ![[MD:[0-9]+]]
Dsimple-arguments.ll7 ; !callees metadata to the call. Such metadata can enable optimizations of this
17 ; CHECK: %tmp3 = call i1 %cmp(i64* %tmp1, i64* %tmp2), !callees ![[MD:[0-9]+]]
/external/llvm-project/llvm/test/Transforms/Inline/
Dfunction-count-update.ll3 ; This tests that the function count of two callees get correctly updated after
5 ; in the caller. The callees have the alwaysinline attribute and so they get
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/
Dcall_graph.cpp142 const auto& callees = call_graph_edges_[function_id]; in ComputeInterproceduralFunctionCallDepths() local
146 for (uint32_t callee : callees) { in ComputeInterproceduralFunctionCallDepths()
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dcall_graph.cpp142 const auto& callees = call_graph_edges_[function_id]; in ComputeInterproceduralFunctionCallDepths() local
146 for (uint32_t callee : callees) { in ComputeInterproceduralFunctionCallDepths()
/external/deqp-deps/SPIRV-Tools/source/fuzz/
Dcall_graph.cpp142 const auto& callees = call_graph_edges_[function_id]; in ComputeInterproceduralFunctionCallDepths() local
146 for (uint32_t callee : callees) { in ComputeInterproceduralFunctionCallDepths()
/external/llvm-project/llvm/test/ThinLTO/X86/
Dcallees-metadata.ll3 ; RUN: opt -module-summary %p/Inputs/callees-metadata.ll -o %t2.bc
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/
Dguarantee-all-funcs-one-use.mlir21 // Transitive callees.
/external/llvm-project/clang/include/clang/Analysis/
DCallGraph.h183 llvm::iterator_range<iterator> callees() { in callees() function
186 llvm::iterator_range<const_iterator> callees() const { in callees() function
/external/llvm-project/llvm/test/ThinLTO/X86/Inputs/
Dcallees-metadata.ll9 %call = tail call i32 %0(i32 %x), !callees !0
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dresource_device_inference.cc249 ArrayRef<FuncOp> callees, const PerFunctionResult& caller_res) { in runOnOperation() argument
250 for (FuncOp callee : callees) { in runOnOperation()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DFixedMetadataKinds.def37 LLVM_FIXED_MD_KIND(MD_callees, "callees", 23)
/external/llvm-project/llvm/include/llvm/IR/
DFixedMetadataKinds.def37 LLVM_FIXED_MD_KIND(MD_callees, "callees", 23)
/external/llvm-project/llvm/test/tools/llvm-profdata/
Dgcc-gcov-sample-profile.test7 inlined callees.
/external/llvm/test/tools/llvm-profdata/
Dinline-samples.test8 inlined callees.

123