Lines Matching defs:deopts
45 std::vector<ARKDeopt>& deopts) const
47 ParseArkDeopt(callsiteHead, stackmapAddr, deopts);
52 std::vector<ARKDeopt>& deopts) const
67 GetArkDeopt(stackmapAddr, *found, deopts);
74 std::vector<ARKDeopt> deopts;
75 GetArkDeopt(callSiteAddr, stackmapAddr, deopts);
76 if (deopts.empty()) {
83 auto it = std::lower_bound(deopts.begin(), deopts.end(), target,
87 if (it == deopts.end() || (it->id > id)) {
100 std::vector<ARKDeopt> deopts;
101 GetArkDeopt(callSiteAddr, stackmapAddr, deopts);
102 if (deopts.empty()) {
112 auto it = std::lower_bound(deopts.begin(), deopts.end(), target,
116 if (it == deopts.end() || (it->id > target.id)) {
227 std::vector<ARKDeopt> &deopts) const
261 deopts.emplace_back(deopt);
274 std::vector<ARKDeopt> deopts;
282 ParseArkDeopt(callsiteHead, ptr, deopts);