/external/swiftshader/src/OpenGL/compiler/ |
D | AnalyzeCallDepth.cpp | 47 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()
|
D | AnalyzeCallDepth.h | 50 TVector<FunctionNode*> callees; variable
|
/external/angle/src/compiler/translator/ |
D | CallDAG.cpp | 76 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()
|
D | CallDAG.h | 45 std::vector<int> callees; member
|
/external/mesa3d/src/compiler/glsl/ |
D | ir_function_detect_recursion.cpp | 148 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/ |
D | MachO_Thumb_Relocations.s | 36 # 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/ |
D | call_inliner.cc | 127 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()
|
D | call_graph_test.cc | 108 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()
|
D | call_graph.cc | 264 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/ |
D | simple-select.ll | 9 ; instruction, and attach !callees metadata to the call. Such metadata can 18 ; CHECK: call void %tmp0(), !callees ![[MD:[0-9]+]]
|
D | simple-memory.ll | 9 ; variable, and attach !callees metadata to the call. Such metadata can enable 17 ; CHECK: call void %tmp0(), !callees ![[MD:[0-9]+]]
|
D | simple-arguments.ll | 7 ; !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/ |
D | function-count-update.ll | 3 ; 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/ |
D | call_graph.cpp | 142 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/ |
D | call_graph.cpp | 142 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/ |
D | call_graph.cpp | 142 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/ |
D | callees-metadata.ll | 3 ; RUN: opt -module-summary %p/Inputs/callees-metadata.ll -o %t2.bc
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/ |
D | guarantee-all-funcs-one-use.mlir | 21 // Transitive callees.
|
/external/llvm-project/clang/include/clang/Analysis/ |
D | CallGraph.h | 183 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/ |
D | callees-metadata.ll | 9 %call = tail call i32 %0(i32 %x), !callees !0
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/ |
D | resource_device_inference.cc | 249 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/ |
D | FixedMetadataKinds.def | 37 LLVM_FIXED_MD_KIND(MD_callees, "callees", 23)
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | FixedMetadataKinds.def | 37 LLVM_FIXED_MD_KIND(MD_callees, "callees", 23)
|
/external/llvm-project/llvm/test/tools/llvm-profdata/ |
D | gcc-gcov-sample-profile.test | 7 inlined callees.
|
/external/llvm/test/tools/llvm-profdata/ |
D | inline-samples.test | 8 inlined callees.
|