Home | History | Annotate | Download | only in debug

Lines Matching refs:kind

12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
187 using Kind = DexRegisterLocation::Kind;
215 const Kind kind = reg_loc.GetKind();
217 if (kind == Kind::kInStack) {
220 if (piece == 0 && reg_hi.GetKind() == Kind::kInStack &&
224 } else if (kind == Kind::kInRegister) {
226 if (piece == 0 && reg_hi.GetKind() == Kind::kInRegisterHigh &&
230 } else if (kind == Kind::kInFpuRegister) {
232 piece == 0 && reg_hi.GetKind() == Kind::kInFpuRegister &&
239 if (piece == 0 && reg_hi.GetKind() == Kind::kInFpuRegisterHigh &&
243 } else if (kind == Kind::kConstant) {
246 } else if (kind == Kind::kNone) {
252 LOG(ERROR) << "Unexpected register location kind: " << kind;