Home
last modified time | relevance | path

Searched refs:InstructionSet (Results 126 – 150 of 166) sorted by relevance

1234567

/art/runtime/gc/space/
Dimage_space.cc120 InstructionSet image_isa, in GenerateImage()
206 const InstructionSet image_isa, in FindImageFilenameImpl()
256 const InstructionSet image_isa, in FindImageFilename()
310 static bool CanWriteToDalvikCache(const InstructionSet isa) { in CanWriteToDalvikCache()
321 const InstructionSet isa, in ImageCreationAllowed()
1656 bool LoadFromSystem(InstructionSet image_isa, /*out*/std::string* error_msg) { in LoadFromSystem()
1660 bool ValidateFromSystem(InstructionSet image_isa, in ValidateFromSystem()
1770 bool LoadOrValidateFromSystem(InstructionSet image_isa,
2464 bool ImageSpace::BootImageLayout::LoadOrValidateFromSystem(InstructionSet image_isa, in LoadOrValidateFromSystem()
2493 InstructionSet image_isa, in BootImageLoader()
[all …]
/art/compiler/
Dexception_test.cc101 if (kRuntimeISA == InstructionSet::kArm) { in SetUp()
/art/runtime/
Dquick_exception_handler.cc626 if (kRuntimeISA == InstructionSet::kX86 || kRuntimeISA == InstructionSet::kX86_64) { in DeoptimizePartialFragmentFixup()
Doat_file_assistant_test.cc1244 "/foo/bar/baz.jar", InstructionSet::kArm, &odex_file, &error_msg)) << error_msg; in TEST()
1248 "/foo/bar/baz.funnyext", InstructionSet::kArm, &odex_file, &error_msg)) << error_msg; in TEST()
1252 "nopath.jar", InstructionSet::kArm, &odex_file, &error_msg)); in TEST()
1254 "/foo/bar/baz_noext", InstructionSet::kArm, &odex_file, &error_msg)); in TEST()
Dcommon_throws.cc456 (kRuntimeISA == InstructionSet::kX86 || kRuntimeISA == InstructionSet::kX86_64)) { in IsValidReadBarrierImplicitCheck()
Druntime_options.def148 RUNTIME_OPTIONS_KEY (InstructionSet, ImageInstructionSet, kRuntimeISA)
Dparsed_options.cc478 if (image_isa == InstructionSet::kNone) { in ProcessSpecialOptions()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc244 InstructionSet isa = Runtime::Current()->GetInstructionSet(); in VMRuntime_vmInstructionSet()
668 InstructionSet isa = GetInstructionSetFromString(instruction_set.c_str()); in VMRuntime_isBootClassPathOnDisk()
669 if (isa == InstructionSet::kNone) { in VMRuntime_isBootClassPathOnDisk()
/art/compiler/utils/arm64/
Djni_macro_assembler_arm64.h239 InstructionSet::kArm64> {
/art/compiler/optimizing/
Dcode_generator_x86.h426 InstructionSet GetInstructionSet() const override { in GetInstructionSet()
427 return InstructionSet::kX86; in GetInstructionSet()
Dcode_generator_x86_64.h409 InstructionSet GetInstructionSet() const override { in GetInstructionSet()
410 return InstructionSet::kX86_64; in GetInstructionSet()
Dcommon_arm64.h360 DCHECK(HasShifterOperand(instruction, InstructionSet::kArm64)); in ShifterOperandSupportsExtension()
Dcode_generator_arm_vixl.h507 InstructionSet GetInstructionSet() const override { return InstructionSet::kThumb2; } in GetInstructionSet()
Dcode_generator_arm64.h614 InstructionSet GetInstructionSet() const override { in GetInstructionSet()
615 return InstructionSet::kArm64; in GetInstructionSet()
/art/dex2oat/linker/arm/
Drelative_patcher_thumb2_test.cc35 Thumb2RelativePatcherTest() : RelativePatcherTest(InstructionSet::kThumb2, "default") { } in Thumb2RelativePatcherTest()
194 CompiledCode::AlignCode(gap_end, InstructionSet::kThumb2) + MethodCallThunkSize(); in Create2MethodsWithGap()
487 last_method_offset + last_method_code.size(), InstructionSet::kThumb2); in TEST_F()
615 last_method_offset + last_method_code.size(), InstructionSet::kThumb2); in TEST_F()
676 InstructionSet::kThumb2); in TEST_F()
Drelative_patcher_arm_base.cc277 InstructionSet instruction_set) in ArmBaseRelativePatcher()
/art/dex2oat/
Ddex2oat.cc1105 case InstructionSet::kArm: in ProcessOptions()
1106 case InstructionSet::kThumb2: in ProcessOptions()
1107 case InstructionSet::kArm64: in ProcessOptions()
1108 case InstructionSet::kX86: in ProcessOptions()
1109 case InstructionSet::kX86_64: in ProcessOptions()
1360 if (compiler_options_->instruction_set_ == InstructionSet::kArm) { in ParseArgs()
1361 compiler_options_->instruction_set_ = InstructionSet::kThumb2; in ParseArgs()
2973 std::string StripIsaFrom(const char* image_filename, InstructionSet isa) { in StripIsaFrom()
/art/compiler/jni/quick/
Djni_compiler.cc64 ArenaAllocator* allocator, InstructionSet isa, const InstructionSetFeatures* features) { in GetMacroAssembler()
124 InstructionSet instruction_set = compiler_options.GetInstructionSet(); in ArtJniCompileMethodInternal()
/art/oatdump/
Doatdump.cc141 const InstructionSet isa = oat_file_->GetOatHeader().GetInstructionSet(); in Symbolize()
407 InstructionSet GetInstructionSet() { in GetInstructionSet()
702 InstructionSet GetOatInstructionSet() { in GetOatInstructionSet()
875 if (oat_file_.GetOatHeader().GetInstructionSet() == InstructionSet::kThumb2) { in AddOffsets()
1384 static int GetOutVROffset(uint16_t out_num, InstructionSet isa) { in GetOutVROffset()
1394 InstructionSet isa) { in GetVRegOffsetFromQuickCode()
1531 explicit StackMapsHelper(const uint8_t* raw_code_info, InstructionSet instruction_set) in StackMapsHelper()
1605 const InstructionSet instruction_set_;
1782 const InstructionSet instruction_set_;
2150 if (oat_dumper_->GetInstructionSet() == InstructionSet::kThumb2) { in GetQuickOatCodeBegin()
/art/dex2oat/linker/
Doat_writer.h324 void InitBssLayout(InstructionSet instruction_set);
Doat_writer_test.cc520 InstructionSet insn_set = InstructionSet::kX86; in TEST_F()
/art/dex2oat/driver/
Dcompiler_driver.cc405 static bool InstructionSetHasGenericJniStub(InstructionSet isa) { in InstructionSetHasGenericJniStub()
407 case InstructionSet::kArm: in InstructionSetHasGenericJniStub()
408 case InstructionSet::kArm64: in InstructionSetHasGenericJniStub()
409 case InstructionSet::kThumb2: in InstructionSetHasGenericJniStub()
410 case InstructionSet::kX86: in InstructionSetHasGenericJniStub()
411 case InstructionSet::kX86_64: return true; in InstructionSetHasGenericJniStub()
2155 InstructionSet instruction_set = in Visit()
/art/libartbase/base/
Dcommon_art_test.cc323 std::string CommonArtTestImpl::GetAndroidTool(const char* name, InstructionSet) { in GetAndroidTool() argument
/art/compiler/utils/x86/
Dassembler_x86_test.cc54 InstructionSet GetIsa() override { in GetIsa()
55 return InstructionSet::kX86; in GetIsa()
/art/runtime/gc/
Dheap.h51 enum class InstructionSet; variable
203 InstructionSet image_instruction_set,

1234567