• Home
  • Raw
  • Download

Lines Matching refs:Operand

46 using v8::internal::Operand;
224 __ movq(rax, Operand(rbp, -3 * kStackElementSize)); in TEST()
323 CHECK(Operand(rax, offset).AddressUsesRegister(rax)); in TEST()
324 CHECK(!Operand(rax, offset).AddressUsesRegister(r8)); in TEST()
325 CHECK(!Operand(rax, offset).AddressUsesRegister(rcx)); in TEST()
327 CHECK(Operand(rax, rax, times_1, offset).AddressUsesRegister(rax)); in TEST()
328 CHECK(!Operand(rax, rax, times_1, offset).AddressUsesRegister(r8)); in TEST()
329 CHECK(!Operand(rax, rax, times_1, offset).AddressUsesRegister(rcx)); in TEST()
331 CHECK(Operand(rax, rcx, times_1, offset).AddressUsesRegister(rax)); in TEST()
332 CHECK(Operand(rax, rcx, times_1, offset).AddressUsesRegister(rcx)); in TEST()
333 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(r8)); in TEST()
334 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(r9)); in TEST()
335 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(rdx)); in TEST()
336 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(rsp)); in TEST()
338 CHECK(Operand(rsp, offset).AddressUsesRegister(rsp)); in TEST()
339 CHECK(!Operand(rsp, offset).AddressUsesRegister(rax)); in TEST()
340 CHECK(!Operand(rsp, offset).AddressUsesRegister(r15)); in TEST()
342 CHECK(Operand(rbp, offset).AddressUsesRegister(rbp)); in TEST()
343 CHECK(!Operand(rbp, offset).AddressUsesRegister(rax)); in TEST()
344 CHECK(!Operand(rbp, offset).AddressUsesRegister(r13)); in TEST()
346 CHECK(Operand(rbp, rax, times_1, offset).AddressUsesRegister(rbp)); in TEST()
347 CHECK(Operand(rbp, rax, times_1, offset).AddressUsesRegister(rax)); in TEST()
348 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(rcx)); in TEST()
349 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(r13)); in TEST()
350 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(r8)); in TEST()
351 CHECK(!Operand(rbp, rax, times_1, offset).AddressUsesRegister(rsp)); in TEST()
353 CHECK(Operand(rsp, rbp, times_1, offset).AddressUsesRegister(rsp)); in TEST()
354 CHECK(Operand(rsp, rbp, times_1, offset).AddressUsesRegister(rbp)); in TEST()
355 CHECK(!Operand(rsp, rbp, times_1, offset).AddressUsesRegister(rax)); in TEST()
356 CHECK(!Operand(rsp, rbp, times_1, offset).AddressUsesRegister(r15)); in TEST()
357 CHECK(!Operand(rsp, rbp, times_1, offset).AddressUsesRegister(r13)); in TEST()