Searched refs:instruction_set_features (Results 1 – 10 of 10) sorted by relevance
/art/runtime/arch/ |
D | instruction_set_features_test.cc | 43 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/ |
D | jit_compiler.cc | 73 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/ |
D | jni_macro_assembler.cc | 46 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()
|
D | jni_macro_assembler.h | 52 const InstructionSetFeatures* instruction_set_features = nullptr);
|
/art/runtime/ |
D | oat.h | 53 const InstructionSetFeatures* instruction_set_features, 110 const InstructionSetFeatures* instruction_set_features,
|
D | oat.cc | 49 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()
|
D | Android.bp | 251 "arch/instruction_set_features.cc",
|
/art/compiler/utils/x86/ |
D | assembler_x86.h | 313 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/ |
D | assembler_x86_64.h | 358 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/ |
D | jni_compiler.cc | 124 const InstructionSetFeatures* instruction_set_features = in ArtJniCompileMethodInternal() local 215 GetMacroAssembler<kPointerSize>(&allocator, instruction_set, instruction_set_features); in ArtJniCompileMethodInternal()
|