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

  /art/runtime/
cha.cc 56 const std::unordered_set<OatQuickMethodHeader*>& method_headers) {
58 // contains one of those in method_headers.
65 [&method_headers](MethodAndMethodHeaderPair& dependent) {
66 return method_headers.find(dependent.second) != method_headers.end();
87 const std::unordered_set<OatQuickMethodHeader*>& method_headers)
89 method_headers_(method_headers) {
149 explicit CHACheckpoint(const std::unordered_set<OatQuickMethodHeader*>& method_headers)
151 method_headers_(method_headers) {}
cha.h 106 // the given `method_headers` set.
109 const std::unordered_set<OatQuickMethodHeader*>& method_headers)
  /art/runtime/jit/
jit_code_cache.cc 422 const std::unordered_set<OatQuickMethodHeader*>& method_headers) {
426 ->RemoveDependentsWithMethodHeaders(method_headers);
429 // We need to remove entries in method_headers from CHA dependencies
435 for (const OatQuickMethodHeader* method_header : method_headers) {
442 // We use a set to first collect all method_headers whose code need to be
446 std::unordered_set<OatQuickMethodHeader*> method_headers; local
456 method_headers.insert(OatQuickMethodHeader::FromCodePointer(it->first));
465 // Note that the code has already been pushed to method_headers in the loop
483 FreeAllMethodHeaders(method_headers);
1105 std::unordered_set<OatQuickMethodHeader*> method_headers; local
    [all...]
jit_code_cache.h 289 // Remove CHA dependents and underlying allocations for entries in `method_headers`.
290 void FreeAllMethodHeaders(const std::unordered_set<OatQuickMethodHeader*>& method_headers)

Completed in 58 milliseconds