/aosp12/art/compiler/ |
H A D | common_compiler_test.cc | 130 compiler_options->instruction_set_ = instruction_set; in CreateCompilerOptions() 173 runtime->SetInstructionSet(instruction_set_); in SetUp() 186 if (instruction_set_ == InstructionSet::kThumb2) { in ApplyInstructionSet() 189 CHECK_EQ(instruction_set_, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet() 191 compiler_options_->instruction_set_ = instruction_set_; in ApplyInstructionSet() 193 InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap()); in ApplyInstructionSet() 199 instruction_set_ = instruction_set; in OverrideInstructionSetFeatures()
|
H A D | common_compiler_test.h | 92 InstructionSet instruction_set_ = variable
|
/aosp12/art/cmdline/ |
H A D | cmdline.h | 161 instruction_set_ = GetInstructionSetFromString(instruction_set_str); in Parse() 162 if (instruction_set_ == InstructionSet::kNone) { in Parse() 247 InstructionSet instruction_set_ = InstructionSet::kNone; member 262 if (instruction_set_ == InstructionSet::kNone) { in ParseCheckBootImage() 264 instruction_set_ = kRuntimeISA; in ParseCheckBootImage() 305 if (!LocationToFilename(boot_image_location, instruction_set_, &file_name)) { in ParseCheckBootImage() 417 return StartRuntime(args->boot_image_location_, args->instruction_set_, args_->runtime_args_); in CreateRuntime()
|
/aosp12/art/compiler/jni/quick/ |
H A D | jni_compiler.h | 39 : instruction_set_(instruction_set), in JniCompiledMethod() 49 InstructionSet GetInstructionSet() const { return instruction_set_; } in GetInstructionSet() 57 InstructionSet instruction_set_;
|
/aosp12/art/dex2oat/linker/arm/ |
H A D | relative_patcher_arm_base.cc | 183 uint32_t thunk_offset = CompiledCode::AlignCode(offset, instruction_set_); in ReserveSpaceEnd() 208 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); in WriteThunks() 228 aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); in WriteThunks() 265 info.isa = instruction_set_; in GenerateThunkDebugInfo() 280 instruction_set_(instruction_set), in ArmBaseRelativePatcher() 318 uint32_t thunk_offset = CompiledCode::AlignCode(offset, instruction_set_); in ReserveSpaceInternal() 465 size_t alignment = GetInstructionSetAlignment(instruction_set_); in AddUnreservedThunk() 504 uint32_t target_offset = result.second - CompiledCode::CodeDelta(instruction_set_); in ResolveMethodCalls() 538 GetInstructionSetAlignment(instruction_set_)); in CalculateMaxNextOffset()
|
H A D | relative_patcher_arm_base.h | 116 const InstructionSet instruction_set_; variable
|
/aosp12/art/compiler/optimizing/ |
H A D | stack_map_stream.cc | 34 return StackMap::UnpackNativePc(stack_maps_[i][StackMap::kPackedNativePc], instruction_set_); in GetStackMapNativePcOffset() 39 StackMap::PackNativePc(native_pc_offset, instruction_set_); in SetStackMapNativePcOffset() 83 uint32_t packed_code_size = StackMap::PackNativePc(code_size, instruction_set_); in EndMethod() 109 StackMap::PackNativePc(native_pc_offset, instruction_set_); in BeginStackMapEntry() 143 instruction_set_); in BeginStackMapEntry() 150 CHECK_EQ(stack_map.GetNativePcOffset(instruction_set_), native_pc_offset); in BeginStackMapEntry()
|
H A D | stack_map_stream.h | 41 instruction_set_(instruction_set), in StackMapStream() 118 const InstructionSet instruction_set_; variable
|
H A D | scheduler.h | 556 instruction_set_(instruction_set) {} 568 const InstructionSet instruction_set_; variable
|
H A D | graph_visualizer.cc | 127 : instruction_set_(instruction_set), disassembler_(nullptr) { in HGraphVisualizerDisassembler() 175 if (instruction_set_ == InstructionSet::kThumb2) { in Disassemble() 184 InstructionSet instruction_set_; member in art::HGraphVisualizerDisassembler
|
H A D | scheduler.cc | 812 switch (instruction_set_) { in Run()
|
/aosp12/art/runtime/ |
H A D | oat.cc | 70 instruction_set_(instruction_set), in OatHeader() 108 if (!IsValidInstructionSet(instruction_set_)) { in IsValid() 130 if (!IsValidInstructionSet(instruction_set_)) { in GetValidationErrorMessage() 131 return StringPrintf("Invalid instruction set, %d.", static_cast<int>(instruction_set_)); in GetValidationErrorMessage() 164 return instruction_set_; in GetInstructionSet()
|
H A D | runtime-inl.h | 47 DCHECK_EQ(instruction_set_, kRuntimeISA); in GetRuntimeMethodFrameInfo()
|
H A D | runtime.cc | 238 instruction_set_(InstructionSet::kNone), in Runtime() 1412 GetSystemImageFilename(image_location_.c_str(), instruction_set_)); in Init() 1574 instruction_set_, in Init() 1808 SetInstructionSet(instruction_set_); in Init() 2518 PointerSize pointer_size = GetInstructionSetPointerSize(instruction_set_); in CreateResolutionMethod() 2530 PointerSize pointer_size = GetInstructionSetPointerSize(instruction_set_); in CreateCalleeSaveMethod() 2532 DCHECK_NE(instruction_set_, InstructionSet::kNone); in CreateCalleeSaveMethod() 2588 instruction_set_ = instruction_set; in SetInstructionSet() 2592 instruction_set_ = InstructionSet::kArm; in SetInstructionSet() 2600 UNIMPLEMENTED(FATAL) << instruction_set_; in SetInstructionSet() [all …]
|
H A D | oat.h | 129 InstructionSet instruction_set_; variable
|
H A D | runtime.h | 480 return instruction_set_; in GetInstructionSet() 1119 InstructionSet instruction_set_; variable
|
/aosp12/art/dex2oat/linker/ |
H A D | relative_patcher_test.h | 43 instruction_set_(instruction_set), in RelativePatcherTest() 83 patcher_ = RelativePatcher::Create(instruction_set_, in Reset() 108 instruction_set_, 119 CompiledMethod::AlignCode(unaligned_code_offset, instruction_set_); in CodeAlignmentSize() 385 InstructionSet instruction_set_; variable
|
H A D | multi_oat_relative_patcher.cc | 46 instruction_set_(instruction_set), in MultiOatRelativePatcher()
|
H A D | multi_oat_relative_patcher.h | 167 InstructionSet instruction_set_; variable
|
/aosp12/art/compiler/driver/ |
H A D | compiler_options.h | 277 return instruction_set_; in GetInstructionSet() 395 InstructionSet instruction_set_; variable
|
H A D | compiler_options.cc | 47 instruction_set_(kRuntimeISA == InstructionSet::kArm ? InstructionSet::kThumb2 : kRuntimeISA), in CompilerOptions()
|
/aosp12/frameworks/native/cmds/installd/ |
H A D | dexopt.cpp | 2336 std::string instruction_set_ = instruction_set; in calculate_oat_file_path_default() local 2340 if (!is_valid_instruction_set(instruction_set_)) return false; in calculate_oat_file_path_default() 2364 std::string instruction_set_ = instruction_set; in calculate_odex_file_path_default() local 2367 if (!is_valid_instruction_set(instruction_set_)) return false; in calculate_odex_file_path_default() 2383 std::string instruction_set_ = instruction_set; in create_cache_path_default() local 2386 if (!is_valid_instruction_set(instruction_set_)) return false; in create_cache_path_default() 2394 std::string res_ = android_data_dir + DALVIK_CACHE + '/' + instruction_set_ + src_ in create_cache_path_default()
|
/aosp12/art/oatdump/ |
H A D | oatdump.cc | 388 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()), in OatDumper() 389 disassembler_(Disassembler::Create(instruction_set_, in OatDumper() 395 Is64BitInstructionSet(instruction_set_) in OatDumper() 409 return instruction_set_; in GetInstructionSet() 537 static_cast<size_t>(GetInstructionSetPointerSize(instruction_set_)), in Dump() 1358 instruction_set_); in DumpCodeInfo() 1525 stack_maps[it.GetNativePcOffset(instruction_set_)].push_back(it); in DumpCode() 1536 stack_map.Dump(vios, code_info, oat_method.GetCodeOffset(), instruction_set_); in DumpCode() 1678 const InstructionSet instruction_set_; member in art::OatDumper
|
/aosp12/art/dex2oat/ |
H A D | dex2oat.cc | 606 compiler_options_->instruction_set_, option, &parser_options->error_msg); in ParseInstructionSetVariant() 615 compiler_options_->instruction_set_, "default", &parser_options->error_msg); in ParseInstructionSetFeatures() 796 compiler_options_->instruction_set_, "default", &parser_options->error_msg); in ProcessOptions() 803 if (compiler_options_->instruction_set_ == kRuntimeISA) { in ProcessOptions() 1085 AssignIfExists(args, M::TargetInstructionSet, &compiler_options_->instruction_set_); in ParseArgs() 1087 if (compiler_options_->instruction_set_ == InstructionSet::kArm) { in ParseArgs() 1088 compiler_options_->instruction_set_ = InstructionSet::kThumb2; in ParseArgs()
|
/aosp12/art/dex2oat/linker/arm64/ |
H A D | relative_patcher_arm64_test.cc | 182 compiler_options.instruction_set_ = instruction_set_; in CompileThunk() 184 InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap()); in CompileThunk()
|