HomeSort by relevance Sort by last modified time
    Searched full:kx86_64 (Results 1 - 25 of 49) sorted by null

1 2

  /art/runtime/arch/
instruction_set_test.cc 29 EXPECT_EQ(kX86_64, GetInstructionSetFromString("x86_64"));
41 EXPECT_STREQ("x86_64", GetInstructionSetString(kX86_64));
instruction_set.cc 34 case kX86_64:
58 return kX86_64;
77 return kX86_64;
101 case kX86_64:
143 case kX86_64:
instruction_set_features.cc 53 case kX86_64:
84 case kX86_64:
114 case kX86_64:
144 case kX86_64:
173 case kX86_64:
202 case kX86_64:
282 DCHECK(kX86 == GetInstructionSet() || kX86_64 == GetInstructionSet());
287 DCHECK_EQ(kX86_64, GetInstructionSet());
instruction_set.h 33 kX86_64,
50 static constexpr InstructionSet kRuntimeISA = kX86_64;
95 case kX86_64:
121 case kX86_64:
148 case kX86_64:
173 case kX86_64:
arch_test.cc 157 CheckFrameSize(InstructionSet::kX86_64, Runtime::kSaveAll, x86_64::kFrameSizeSaveAllCalleeSave);
158 CheckFrameSize(InstructionSet::kX86_64, Runtime::kRefsOnly, x86_64::kFrameSizeRefsOnlyCalleeSave);
159 CheckFrameSize(InstructionSet::kX86_64, Runtime::kRefsAndArgs,
  /art/runtime/arch/x86_64/
instruction_set_features_x86_64_test.cc 26 InstructionSetFeatures::FromVariant(kX86_64, "default", &error_msg));
28 EXPECT_EQ(x86_64_features->GetInstructionSet(), kX86_64);
instruction_set_features_x86_64.h 62 return kX86_64;
  /art/compiler/dex/quick/x86/
quick_assemble_x86_test.cc 166 Test(kX86_64, "Addpd", "addpd %xmm1, %xmm0\n", kX86AddpdRR,
173 Test(kX86_64, "Subpd", "subpd %xmm1, %xmm0\n", kX86SubpdRR,
180 Test(kX86_64, "Mulpd", "mulpd %xmm1, %xmm0\n", kX86MulpdRR,
187 Test(kX86_64, "Pextrw", "pextrw $7, %xmm8, 8(%r10)\n", kX86PextrwMRI,
228 TestVectorFn(kX86_64,
239 TestVectorFn(kX86_64,
250 TestVectorFn(kX86_64,
259 ASSERT_TRUE(CheckTools(kX86_64)) << "x86_64 tools not found.";
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 86 CHECK_FRAME_SIZE(kX86_64);
96 EXPECT_EQ(GetInstructionSetPointerSize(kX86_64), GetConstExprPointerSize(kX86_64));
callee_save_frame.h 80 isa == kX86_64 ? x86_64::X86_64CalleeSaveFrameSize(type) :
93 isa == kX86_64 ? kX86_64PointerSize :
  /art/runtime/arch/x86/
instruction_set_features_x86_test.cc 57 InstructionSetFeatures::FromVariant(kX86_64, "atom", &error_msg));
59 EXPECT_EQ(x86_64_features->GetInstructionSet(), kX86_64);
93 InstructionSetFeatures::FromVariant(kX86_64, "silvermont", &error_msg));
95 EXPECT_EQ(x86_64_features->GetInstructionSet(), kX86_64);
  /art/disassembler/
disassembler.cc 41 } else if (instruction_set == kX86_64) {
  /art/compiler/jni/
jni_cfi_test.cc 87 TEST_ISA(kX86_64)
  /art/compiler/
compiled_method.cc 81 case kX86_64:
101 case kX86_64:
  /art/compiler/dex/quick/
quick_compiler.cc 58 static_assert(5U == static_cast<size_t>(kX86_64), "kX86_64 not 5");
75 // 5 = kX86_64.
128 // 5 = kX86_64.
438 // 5 = kX86_64.
459 // 5 = kX86_64.
651 (cu.instruction_set == kX86_64) ||
817 case kX86_64:
gen_invoke.cc 82 if (cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64) {
228 cu_->instruction_set == kX86_64) {
505 if (cu->instruction_set != kX86 && cu->instruction_set != kX86_64) {
555 DCHECK(cu->instruction_set == kX86 || cu->instruction_set == kX86_64);
602 DCHECK(cu->instruction_set == kX86 || cu->instruction_set == kX86_64);
621 if (cu->instruction_set != kX86 && cu->instruction_set != kX86_64) {
    [all...]
quick_cfi_test.cc 135 TEST_ISA(kX86_64)
  /art/compiler/jni/quick/
calling_convention.cc 45 case kX86_64:
120 case kX86_64:
  /art/compiler/linker/
relative_patcher.cc 70 case kX86_64:
  /art/compiler/linker/x86_64/
relative_patcher_x86_64_test.cc 25 X86_64RelativePatcherTest() : RelativePatcherTest(kX86_64, "default") { }
  /art/compiler/optimizing/
optimizing_cfi_test.cc 124 TEST_ISA(kX86_64)
code_generator_x86_64.h 249 return InstructionSet::kX86_64;
  /art/compiler/trampolines/
trampoline_compiler.cc 173 assembler(static_cast<x86_64::X86_64Assembler*>(Assembler::Create(kX86_64)));
195 case kX86_64:
  /art/compiler/dwarf/
dwarf_test.h 61 InstructionSet isa = (sizeof(typename ElfTypes::Addr) == 8) ? kX86_64 : kX86;
  /art/compiler/utils/
assembler.cc 126 case kX86_64:

Completed in 3926 milliseconds

1 2