Searched refs:instruction_set_features (Results 1 – 10 of 10) sorted by relevance
/art/compiler/utils/ |
D | jni_macro_assembler.cc | 52 const InstructionSetFeatures* instruction_set_features) { in Create() argument 54 UNUSED(instruction_set_features); in Create() 67 instruction_set_features != nullptr in Create() 68 ? instruction_set_features->AsMipsInstructionSetFeatures() in Create() 87 const InstructionSetFeatures* instruction_set_features) { in Create() argument 89 UNUSED(instruction_set_features); in Create() 101 instruction_set_features != nullptr in Create() 102 ? instruction_set_features->AsMips64InstructionSetFeatures() in Create()
|
D | jni_macro_assembler.h | 52 const InstructionSetFeatures* instruction_set_features = nullptr);
|
/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/runtime/ |
D | oat.h | 53 const InstructionSetFeatures* instruction_set_features, 107 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 | 217 "arch/instruction_set_features.cc",
|
/art/compiler/jni/quick/ |
D | jni_compiler.cc | 127 const InstructionSetFeatures* instruction_set_features = in ArtJniCompileMethodInternal() local 218 GetMacroAssembler<kPointerSize>(&allocator, instruction_set, instruction_set_features); in ArtJniCompileMethodInternal()
|
/art/compiler/utils/mips/ |
D | assembler_mips.h | 271 const MipsInstructionSetFeatures* instruction_set_features = nullptr) 283 has_msa_(instruction_set_features != nullptr ? instruction_set_features->HasMsa() : false), in Assembler() 284 isa_features_(instruction_set_features) { in Assembler()
|
/art/compiler/utils/mips64/ |
D | assembler_mips64.h | 422 const Mips64InstructionSetFeatures* instruction_set_features = nullptr) 432 has_msa_(instruction_set_features != nullptr ? instruction_set_features->HasMsa() : false) { in Assembler()
|