HomeSort by relevance Sort by last modified time
    Searched refs:method_headers (Results 1 - 4 of 4) sorted by null

  /art/runtime/
cha.cc 59 const std::unordered_set<OatQuickMethodHeader*>& method_headers) {
61 // contains one of those in method_headers.
68 [&method_headers](MethodAndMethodHeaderPair& dependent) {
69 return method_headers.find(dependent.second) != method_headers.end();
189 const std::unordered_set<OatQuickMethodHeader*>& method_headers)
191 method_headers_(method_headers) {
251 explicit CHACheckpoint(const std::unordered_set<OatQuickMethodHeader*>& method_headers)
253 method_headers_(method_headers) {}
cha.h 107 // the given `method_headers` set.
110 const std::unordered_set<OatQuickMethodHeader*>& method_headers)
  /art/runtime/jit/
jit_code_cache.cc 816 const std::unordered_set<OatQuickMethodHeader*>& method_headers) {
817 // We need to remove entries in method_headers from CHA dependencies
825 ->RemoveDependentsWithMethodHeaders(method_headers);
829 for (const OatQuickMethodHeader* method_header : method_headers) {
836 // We use a set to first collect all method_headers whose code need to be
840 std::unordered_set<OatQuickMethodHeader*> method_headers; local
1626 std::unordered_set<OatQuickMethodHeader*> method_headers; local
    [all...]
jit_code_cache.h 330 // Remove CHA dependents and underlying allocations for entries in `method_headers`.
331 void FreeAllMethodHeaders(const std::unordered_set<OatQuickMethodHeader*>& method_headers)

Completed in 237 milliseconds