Home
last modified time | relevance | path

Searched refs:ThunkMapKey (Results 1 – 2 of 2) sorted by relevance

/art/compiler/driver/
Dcompiled_method_storage.h79 class ThunkMapKey;
81 using ThunkMapValueType = std::pair<const ThunkMapKey, ThunkMapValue>;
82 using ThunkMap = std::map<ThunkMapKey,
84 std::less<ThunkMapKey>,
88 static ThunkMapKey GetThunkMapKey(const linker::LinkerPatch& linker_patch);
Dcompiled_method_storage.cc107 class CompiledMethodStorage::ThunkMapKey { class in art::CompiledMethodStorage
109 ThunkMapKey(linker::LinkerPatch::Type type, uint32_t custom_value1, uint32_t custom_value2) in ThunkMapKey() function in art::CompiledMethodStorage::ThunkMapKey
112 bool operator<(const ThunkMapKey& other) const { in operator <()
157 thunk_map_(std::less<ThunkMapKey>(), SwapAllocator<ThunkMapValueType>(swap_space_.get())) { in CompiledMethodStorage()
214 CompiledMethodStorage::ThunkMapKey CompiledMethodStorage::GetThunkMapKey( in GetThunkMapKey()
233 return ThunkMapKey(linker_patch.GetType(), custom_value1, custom_value2); in GetThunkMapKey()
238 ThunkMapKey key = GetThunkMapKey(linker_patch); in GetThunkCode()
259 ThunkMapKey key = GetThunkMapKey(linker_patch); in SetThunkCode()