Home
last modified time | relevance | path

Searched refs:key (Results 1 – 9 of 9) sorted by relevance

/art/compiler/dex/
Dlocal_value_numbering.h45 uint64_t key = BuildKey(op, operand1, operand2, modifier); in LookupValue() local
46 ValueMap::iterator it = value_map_.find(key); in LookupValue()
51 value_map_.Put(key, res); in LookupValue()
57 uint64_t key = BuildKey(op, operand1, operand2, modifier); in ValueExists() local
58 ValueMap::const_iterator it = value_map_.find(key); in ValueExists()
63 uint32_t key = (base << 16) | field; in GetMemoryVersion() local
65 MemoryVersionMap::iterator it = memory_version_map_.find(key); in GetMemoryVersion()
68 memory_version_map_.Put(key, res); in GetMemoryVersion()
76 uint32_t key = (base << 16) | field; in AdvanceMemoryVersion() local
77 MemoryVersionMap::iterator it = memory_version_map_.find(key); in AdvanceMemoryVersion()
[all …]
Dmir_graph.cc405 successor_block_info->key = in ProcessCanSwitch()
449 successor_block_info->key = iterator.GetHandlerTypeIndex(); in ProcessCanThrow()
791 successor_block_info->key, in DumpCFG()
Dmir_graph.h291 int key; member
/art/compiler/utils/
Ddedupe_set.h54 Key* Add(Thread* self, const Key& key) { in Add() argument
55 HashType hash = HashFunc()(key); in Add()
56 HashedKey hashed_key(hash, const_cast<Key*>(&key)); in Add()
62 hashed_key.second = new Key(key); in Add()
/art/test/055-enum-performance/src/
DMain.java123 static String basisValueOf(String key) { in basisValueOf() argument
125 if (s.equals(key)) { in basisValueOf()
/art/compiler/dex/quick/x86/
Dcall_x86.cc45 int key = keys[i]; in GenSparseSwitch() local
48 OpCmpImmBranch(kCondEq, rl_src.low_reg, key, in GenSparseSwitch()
/art/runtime/verifier/
Dmethod_verifier.cc943 int32_t key = (int32_t) switch_insns[keys_offset + targ * 2] | in CheckSwitchTargets() local
945 if (key <= last_key) { in CheckSwitchTargets()
947 << ", this=" << key; in CheckSwitchTargets()
950 last_key = key; in CheckSwitchTargets()
/art/compiler/llvm/
Dintrinsic_func_list.def91 // throwing instruction. The result is a switch key and this
/art/compiler/dex/portable/
Dmir_to_gbc.cc1740 int type_index = successor_block_info->key; in BlockBitcodeConversion()