Home
last modified time | relevance | path

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

/art/compiler/
Dcommon_compiler_test.cc52 compiler_options->instruction_set_features_ = in CreateCompilerOptions()
54 CHECK(compiler_options->instruction_set_features_ != nullptr) << error_msg; in CreateCompilerOptions()
135 CHECK(instruction_set_features_ != nullptr); in ApplyInstructionSet()
137 CHECK_EQ(InstructionSet::kArm, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet()
139 CHECK_EQ(instruction_set_, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet()
142 compiler_options_->instruction_set_features_ = in ApplyInstructionSet()
143 InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap()); in ApplyInstructionSet()
144 CHECK(compiler_options_->instruction_set_features_->Equals(instruction_set_features_.get())); in ApplyInstructionSet()
151 instruction_set_features_ = in OverrideInstructionSetFeatures()
153 CHECK(instruction_set_features_ != nullptr) << error_msg; in OverrideInstructionSetFeatures()
Dcommon_compiler_test.h92 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_
/art/dex2oat/linker/
Drelative_patcher_test.h44 instruction_set_features_(nullptr), in RelativePatcherTest()
54 instruction_set_features_ = in RelativePatcherTest()
56 CHECK(instruction_set_features_ != nullptr) << error_msg; in RelativePatcherTest()
84 instruction_set_features_.get(), in Reset()
386 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.cc130 : instruction_set_features_(InstructionSetFeatures::FromCppDefines()), in MultiOatRelativePatcherTest()
131 patcher_(kRuntimeISA, instruction_set_features_.get(), /* storage */ nullptr) { in MultiOatRelativePatcherTest()
137 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; member in art::linker::MultiOatRelativePatcherTest
/art/compiler/driver/
Dcompiler_options.h285 return instruction_set_features_.get(); in GetInstructionSetFeatures()
400 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; variable
Dcompiler_options.cc48 instruction_set_features_(nullptr), in CompilerOptions()
/art/compiler/jit/
Djit_compiler.cc112 compiler_options_->instruction_set_features_ = std::move(instruction_set_features); in ParseCompilerOptions()
/art/dex2oat/
Ddex2oat.cc882 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ParseInstructionSetVariant()
884 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetVariant()
890 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures()
891 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ParseInstructionSetFeatures()
893 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures()
898 compiler_options_->instruction_set_features_ = in ParseInstructionSetFeatures()
899 compiler_options_->instruction_set_features_->AddFeaturesFromString( in ParseInstructionSetFeatures()
901 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures()
1068 if (compiler_options_->instruction_set_features_ == nullptr) { in ProcessOptions()
1071 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ProcessOptions()
[all …]
/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/x86/
Dassembler_x86_test.cc146 : instruction_set_features_(X86InstructionSetFeatures::FromVariant("kabylake", nullptr)) {} in AssemblerX86AVXTest()
149 return new (allocator) x86::X86Assembler(allocator, instruction_set_features_.get()); in CreateAssembler()
152 std::unique_ptr<const X86InstructionSetFeatures> instruction_set_features_; member in art::AssemblerX86AVXTest
/art/compiler/utils/x86_64/
Dassembler_x86_64_test.cc340 : instruction_set_features_(X86_64InstructionSetFeatures::FromVariant("kabylake", nullptr)) {} in AssemblerX86_64AVXTest()
343 return new (allocator) x86_64::X86_64Assembler(allocator, instruction_set_features_.get()); in CreateAssembler()
346 std::unique_ptr<const X86_64InstructionSetFeatures> instruction_set_features_; member in art::AssemblerX86_64AVXTest