Searched refs:VMFramePtr (Results 1 – 2 of 2) sorted by relevance
/third_party/mindspore/mindspore/ccsrc/vm/ |
D | vmimpl.h | 47 using VMFramePtr = std::shared_ptr<VMFrame>; variable 48 using VMFramePtrList = std::vector<VMFramePtr>; 171 ClosurePtr MakeClosure(const FuncGraphPtr &func_graph, const VMFramePtr &frame); 173 …BaseRef DispatchCall(const AnfNodePtr &node, const VMFramePtr &frame, const BaseRef &fn, const Vec… 175 BaseRef HandleNode(const AnfNodePtr &node, const VMFramePtr &frame);
|
D | vmimpl.cc | 37 explicit CallWrap(const VMFramePtr &vm_frame) : frame(vm_frame) {} in CallWrap() 38 VMFramePtr frame{nullptr}; 323 ClosurePtr VM::MakeClosure(const FuncGraphPtr &graph, const VMFramePtr &frame) { in MakeClosure() 335 BaseRef VM::DispatchCall(const AnfNodePtr &node, const VMFramePtr &frame, const BaseRef &fn, const … in DispatchCall() 388 BaseRef VM::HandleNode(const AnfNodePtr &node, const VMFramePtr &frame) { in HandleNode()
|