• Home
  • Raw
  • Download

Lines Matching refs:AddressUsesRegister

485     CHECK(Operand(rax, offset).AddressUsesRegister(rax));  in TEST()
486 CHECK(!Operand(rax, offset).AddressUsesRegister(r8)); in TEST()
487 CHECK(!Operand(rax, offset).AddressUsesRegister(rcx)); in TEST()
489 CHECK(Operand(rax, rax, times_1, offset).AddressUsesRegister(rax)); in TEST()
490 CHECK(!Operand(rax, rax, times_1, offset).AddressUsesRegister(r8)); in TEST()
491 CHECK(!Operand(rax, rax, times_1, offset).AddressUsesRegister(rcx)); in TEST()
493 CHECK(Operand(rax, rcx, times_1, offset).AddressUsesRegister(rax)); in TEST()
494 CHECK(Operand(rax, rcx, times_1, offset).AddressUsesRegister(rcx)); in TEST()
495 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(r8)); in TEST()
496 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(r9)); in TEST()
497 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(rdx)); in TEST()
498 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(rsp)); in TEST()
500 CHECK(Operand(rsp, offset).AddressUsesRegister(rsp)); in TEST()
501 CHECK(!Operand(rsp, offset).AddressUsesRegister(rax)); in TEST()
502 CHECK(!Operand(rsp, offset).AddressUsesRegister(r15)); in TEST()
504 CHECK(Operand(rbp, offset).AddressUsesRegister(rbp)); in TEST()
505 CHECK(!Operand(rbp, offset).AddressUsesRegister(rax)); in TEST()
506 CHECK(!Operand(rbp, offset).AddressUsesRegister(r13)); in TEST()
508 CHECK(Operand(rbp, rax, times_1, offset).AddressUsesRegister(rbp)); in TEST()
509 CHECK(Operand(rbp, rax, times_1, offset).AddressUsesRegister(rax)); in TEST()
510 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(rcx)); in TEST()
511 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(r13)); in TEST()
512 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(r8)); in TEST()
513 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(rsp)); in TEST()
515 CHECK(Operand(rsp, rbp, times_1, offset).AddressUsesRegister(rsp)); in TEST()
516 CHECK(Operand(rsp, rbp, times_1, offset).AddressUsesRegister(rbp)); in TEST()
517 CHECK(!Operand(rsp, rbp, times_1, offset).AddressUsesRegister(rax)); in TEST()
518 CHECK(!Operand(rsp, rbp, times_1, offset).AddressUsesRegister(r15)); in TEST()
519 CHECK(!Operand(rsp, rbp, times_1, offset).AddressUsesRegister(r13)); in TEST()