Home
last modified time | relevance | path

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

/art/compiler/dex/
Dglobal_value_numbering.h94 static uint64_t BuildKey(uint16_t op, uint16_t operand1, uint16_t operand2, uint16_t modifier) { in BuildKey() argument
96 static_cast<uint64_t>(operand2) << 16 | static_cast<uint64_t>(modifier)); in BuildKey()
100 uint16_t LookupValue(uint16_t op, uint16_t operand1, uint16_t operand2, uint16_t modifier) { in LookupValue() argument
102 uint64_t key = BuildKey(op, operand1, operand2, modifier); in LookupValue()
114 uint16_t FindValue(uint16_t op, uint16_t operand1, uint16_t operand2, uint16_t modifier) const { in FindValue() argument
116 uint64_t key = BuildKey(op, operand1, operand2, modifier); in FindValue()
/art/test/121-modifiers/
Dinfo.txt1 This is a test checking the modifier (access flags) handling of ART.