/art/runtime/arch/ |
D | instruction_set_features.cc | 160 std::unique_ptr<const InstructionSetFeatures> InstructionSetFeatures::FromAssembly() { in FromAssembly() function in art::InstructionSetFeatures 164 return ArmInstructionSetFeatures::FromAssembly(); in FromAssembly() 166 return Arm64InstructionSetFeatures::FromAssembly(); in FromAssembly() 168 return MipsInstructionSetFeatures::FromAssembly(); in FromAssembly() 170 return Mips64InstructionSetFeatures::FromAssembly(); in FromAssembly() 172 return X86InstructionSetFeatures::FromAssembly(); in FromAssembly() 174 return X86_64InstructionSetFeatures::FromAssembly(); in FromAssembly()
|
D | instruction_set_features.h | 60 static std::unique_ptr<const InstructionSetFeatures> FromAssembly();
|
D | instruction_set_features_test.cc | 157 InstructionSetFeatures::FromAssembly());
|
/art/runtime/arch/x86_64/ |
D | instruction_set_features_x86_64.h | 58 static X86_64FeaturesUniquePtr FromAssembly() { in FromAssembly() function 59 return Convert(X86InstructionSetFeatures::FromAssembly(true)); in FromAssembly()
|
/art/runtime/arch/mips64/ |
D | instruction_set_features_mips64.h | 49 static Mips64FeaturesUniquePtr FromAssembly();
|
D | instruction_set_features_mips64.cc | 86 Mips64FeaturesUniquePtr Mips64InstructionSetFeatures::FromAssembly() { in FromAssembly() function in art::Mips64InstructionSetFeatures
|
/art/runtime/arch/arm64/ |
D | instruction_set_features_arm64.h | 48 static Arm64FeaturesUniquePtr FromAssembly();
|
D | instruction_set_features_arm64.cc | 98 Arm64FeaturesUniquePtr Arm64InstructionSetFeatures::FromAssembly() { in FromAssembly() function in art::Arm64InstructionSetFeatures
|
/art/runtime/arch/arm/ |
D | instruction_set_features_arm.h | 48 static ArmFeaturesUniquePtr FromAssembly();
|
D | instruction_set_features_arm.cc | 234 ArmFeaturesUniquePtr ArmInstructionSetFeatures::FromAssembly() { in FromAssembly() function in art::ArmInstructionSetFeatures
|
/art/runtime/arch/mips/ |
D | instruction_set_features_mips.h | 51 static MipsFeaturesUniquePtr FromAssembly();
|
D | instruction_set_features_mips.cc | 164 MipsFeaturesUniquePtr MipsInstructionSetFeatures::FromAssembly() { in FromAssembly() function in art::MipsInstructionSetFeatures
|
/art/runtime/arch/x86/ |
D | instruction_set_features_x86.h | 50 static X86FeaturesUniquePtr FromAssembly(bool x86_64 = false);
|
D | instruction_set_features_x86.cc | 215 X86FeaturesUniquePtr X86InstructionSetFeatures::FromAssembly(bool x86_64) { in FromAssembly() function in art::X86InstructionSetFeatures
|