Home
last modified time | relevance | path

Searched refs:instruction_set_features (Results 1 – 10 of 10) sorted by relevance

/art/runtime/arch/
Dinstruction_set_features_test.cc43 std::unique_ptr<const InstructionSetFeatures> instruction_set_features( local
57 EXPECT_TRUE(property_features->HasAtLeast(instruction_set_features.get()))
59 << "\nFeatures from build: " << *instruction_set_features.get();
70 std::unique_ptr<const InstructionSetFeatures> instruction_set_features( local
94 EXPECT_TRUE(property_features->HasAtLeast(instruction_set_features.get()))
96 << "\nFeatures from build: " << *instruction_set_features.get();
108 std::unique_ptr<const InstructionSetFeatures> instruction_set_features( local
114 EXPECT_TRUE(cpuinfo_features->HasAtLeast(instruction_set_features.get()))
116 << "\nFeatures from build: " << *instruction_set_features.get();
142 std::unique_ptr<const InstructionSetFeatures> instruction_set_features( local
[all …]
/art/compiler/jit/
Djit_compiler.cc73 std::unique_ptr<const InstructionSetFeatures> instruction_set_features; in ParseCompilerOptions() local
80 instruction_set_features = InstructionSetFeatures::FromVariant( in ParseCompilerOptions()
82 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
88 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
89 instruction_set_features = InstructionSetFeatures::FromVariant( in ParseCompilerOptions()
91 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
95 instruction_set_features = in ParseCompilerOptions()
96 instruction_set_features->AddFeaturesFromString(str, &error_msg); in ParseCompilerOptions()
97 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
103 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
[all …]
/art/compiler/utils/
Djni_macro_assembler.cc46 const InstructionSetFeatures* instruction_set_features) { in Create() argument
48 UNUSED(instruction_set_features); in Create()
72 const InstructionSetFeatures* instruction_set_features) { in Create() argument
74 UNUSED(instruction_set_features); in Create()
Djni_macro_assembler.h52 const InstructionSetFeatures* instruction_set_features = nullptr);
/art/runtime/
Doat.h53 const InstructionSetFeatures* instruction_set_features,
110 const InstructionSetFeatures* instruction_set_features,
Doat.cc49 const InstructionSetFeatures* instruction_set_features, in Create() argument
60 instruction_set_features, in Create()
66 const InstructionSetFeatures* instruction_set_features, in OatHeader() argument
71 instruction_set_features_bitmap_(instruction_set_features->AsBitmap()), in OatHeader()
DAndroid.bp251 "arch/instruction_set_features.cc",
/art/compiler/utils/x86/
Dassembler_x86.h313 const X86InstructionSetFeatures* instruction_set_features = nullptr)
316 … has_AVX_(instruction_set_features != nullptr ? instruction_set_features->HasAVX() : false), in Assembler()
317 … has_AVX2_(instruction_set_features != nullptr ? instruction_set_features->HasAVX2() :false) {} in Assembler()
/art/compiler/utils/x86_64/
Dassembler_x86_64.h358 const X86_64InstructionSetFeatures* instruction_set_features = nullptr)
361 has_AVX_(instruction_set_features != nullptr ? instruction_set_features->HasAVX(): false), in Assembler()
362 … has_AVX2_(instruction_set_features != nullptr ? instruction_set_features->HasAVX2() : false) {} in Assembler()
/art/compiler/jni/quick/
Djni_compiler.cc124 const InstructionSetFeatures* instruction_set_features = in ArtJniCompileMethodInternal() local
215 GetMacroAssembler<kPointerSize>(&allocator, instruction_set, instruction_set_features); in ArtJniCompileMethodInternal()