Home
last modified time | relevance | path

Searched refs:instruction_set_features_ (Results 1 – 15 of 15) sorted by relevance

/art/compiler/
Dcommon_compiler_test.cc122 CHECK(instruction_set_features_ != nullptr); in ApplyInstructionSet()
124 CHECK_EQ(InstructionSet::kArm, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet()
126 CHECK_EQ(instruction_set_, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet()
129 compiler_options_->instruction_set_features_ = in ApplyInstructionSet()
130 InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap()); in ApplyInstructionSet()
131 CHECK(compiler_options_->instruction_set_features_->Equals(instruction_set_features_.get())); in ApplyInstructionSet()
138 instruction_set_features_ = in OverrideInstructionSetFeatures()
140 CHECK(instruction_set_features_ != nullptr) << error_msg; in OverrideInstructionSetFeatures()
Dcommon_compiler_test.h89 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_
/art/dex2oat/linker/
Drelative_patcher_test.h45 instruction_set_features_(nullptr), in RelativePatcherTest()
55 instruction_set_features_ = in RelativePatcherTest()
57 CHECK(instruction_set_features_ != nullptr) << error_msg; in RelativePatcherTest()
85 instruction_set_features_.get(), in Reset()
362 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; variable
Delf_writer_quick.cc54 instruction_set_features_(features), in DebugInfoTask()
64 instruction_set_features_, in Run()
78 const InstructionSetFeatures* instruction_set_features_; member in art::linker::DebugInfoTask
Dmulti_oat_relative_patcher_test.cc124 : instruction_set_features_(InstructionSetFeatures::FromCppDefines()), in MultiOatRelativePatcherTest()
125 patcher_(kRuntimeISA, instruction_set_features_.get(), /* storage */ nullptr) { in MultiOatRelativePatcherTest()
131 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; member in art::linker::MultiOatRelativePatcherTest
/art/compiler/driver/
Dcompiler_options.h275 return instruction_set_features_.get(); in GetInstructionSetFeatures()
384 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; variable
Dcompiler_options.cc50 instruction_set_features_(nullptr), in CompilerOptions()
/art/dex2oat/
Ddex2oat.cc740 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ParseInstructionSetVariant()
742 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetVariant()
748 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures()
749 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ParseInstructionSetFeatures()
751 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures()
756 compiler_options_->instruction_set_features_ = in ParseInstructionSetFeatures()
757 compiler_options_->instruction_set_features_->AddFeaturesFromString( in ParseInstructionSetFeatures()
759 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures()
910 if (compiler_options_->instruction_set_features_ == nullptr) { in ProcessOptions()
913 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ProcessOptions()
[all …]
/art/compiler/jit/
Djit_compiler.cc108 compiler_options_->instruction_set_features_ = std::move(instruction_set_features); in ParseCompilerOptions()
/art/compiler/optimizing/
Demit_swap_mips_test.cc32 instruction_set_features_ = MipsInstructionSetFeatures::FromCppDefines(); in SetUp()
Dcodegen_test.cc858 CHECK(!instruction_set_features_->AsMipsInstructionSetFeatures()->IsR6()); in TEST_F()
/art/compiler/utils/mips/
Dassembler_mips32r5_test.cc59 instruction_set_features_(MipsInstructionSetFeatures::FromVariant("mips32r5", nullptr)) { in AssemblerMIPS32r5Test()
86 return new (allocator) mips::MipsAssembler(allocator, instruction_set_features_.get()); in CreateAssembler()
272 std::unique_ptr<const MipsInstructionSetFeatures> instruction_set_features_; member in art::AssemblerMIPS32r5Test
Dassembler_mips32r6_test.cc59 instruction_set_features_(MipsInstructionSetFeatures::FromVariant("mips32r6", nullptr)) { in AssemblerMIPS32r6Test()
99 return new (allocator) mips::MipsAssembler(allocator, instruction_set_features_.get()); in CreateAssembler()
423 std::unique_ptr<const MipsInstructionSetFeatures> instruction_set_features_; member in art::AssemblerMIPS32r6Test
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64_test.cc183 compiler_options.instruction_set_features_ = in CompileThunk()
184 InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap()); in CompileThunk()
185 CHECK(compiler_options.instruction_set_features_->Equals(instruction_set_features_.get())); in CompileThunk()
/art/compiler/utils/mips64/
Dassembler_mips64_test.cc62 : instruction_set_features_(Mips64InstructionSetFeatures::FromVariant("default", nullptr)) {} in AssemblerMIPS64Test()
97 return new (allocator) mips64::Mips64Assembler(allocator, instruction_set_features_.get()); in CreateAssembler()
414 std::unique_ptr<const Mips64InstructionSetFeatures> instruction_set_features_; member in art::AssemblerMIPS64Test