Home | History | Annotate | Download | only in optimizing

Lines Matching refs:kind

12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
63 void StackMapStream::AddDexRegisterEntry(DexRegisterLocation::Kind kind, int32_t value) {
64 if (kind != DexRegisterLocation::Kind::kNone) {
65 // Ensure we only use non-compressed location kind at this stage.
66 DCHECK(DexRegisterLocation::IsShortLocationKind(kind)) << kind;
67 DexRegisterLocation location(kind, value);
95 current_entry_.dex_register_map_hash += static_cast<uint32_t>(kind);
485 if (expected.GetKind() == DexRegisterLocation::Kind::kNone) {