/art/compiler/jni/quick/ |
D | jni_compiler.h | 39 : instruction_set_(instruction_set), in JniCompiledMethod() 49 InstructionSet GetInstructionSet() const { return instruction_set_; } in GetInstructionSet() 57 InstructionSet instruction_set_;
|
/art/cmdline/ |
D | cmdline.h | 151 instruction_set_ = GetInstructionSetFromString(instruction_set_str.data()); in Parse() 152 if (instruction_set_ == InstructionSet::kNone) { in Parse() 223 InstructionSet instruction_set_ = InstructionSet::kNone; member 236 if (instruction_set_ == InstructionSet::kNone) { in ParseCheckBootImage() 238 instruction_set_ = kRuntimeISA; in ParseCheckBootImage() 275 if (!LocationToFilename(boot_image_location, instruction_set_, &file_name)) { in ParseCheckBootImage() 386 return StartRuntime(args->boot_image_location_, args->instruction_set_); in CreateRuntime()
|
/art/compiler/linker/arm/ |
D | relative_patcher_arm_base.cc | 177 uint32_t thunk_offset = CompiledCode::AlignCode(offset, instruction_set_); in ReserveSpaceEnd() 202 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); in WriteThunks() 222 aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); in WriteThunks() 260 info.isa = instruction_set_; in GenerateThunkDebugInfo() 273 instruction_set_(instruction_set), in ArmBaseRelativePatcher() 311 uint32_t thunk_offset = CompiledCode::AlignCode(offset, instruction_set_); in ReserveSpaceInternal() 445 size_t alignment = GetInstructionSetAlignment(instruction_set_); in AddUnreservedThunk() 484 uint32_t target_offset = result.second - CompiledCode::CodeDelta(instruction_set_); in ResolveMethodCalls() 518 GetInstructionSetAlignment(instruction_set_)); in CalculateMaxNextOffset()
|
D | relative_patcher_arm_base.h | 113 const InstructionSet instruction_set_; variable
|
/art/compiler/optimizing/ |
D | ssa_liveness_analysis_test.cc | 35 instruction_set_(kRuntimeISA) { in SsaLivenessAnalysisTest() 38 InstructionSetFeatures::FromVariant(instruction_set_, "default", &error_msg); in SsaLivenessAnalysisTest() 40 instruction_set_, in SsaLivenessAnalysisTest() 43 CHECK(codegen_ != nullptr) << instruction_set_ << " is not a supported target architecture."; in SsaLivenessAnalysisTest() 61 InstructionSet instruction_set_; member in art::SsaLivenessAnalysisTest
|
D | stack_map_stream.h | 65 instruction_set_(instruction_set), in StackMapStream() 164 CodeOffset::FromOffset(native_pc_offset, instruction_set_); in SetStackMapNativePcOffset() 226 const InstructionSet instruction_set_; variable
|
D | scheduler.h | 509 instruction_set_(instruction_set) {} in HOptimization() 520 const InstructionSet instruction_set_; variable
|
D | stack_map_stream.cc | 36 current_entry_.native_pc_code_offset = CodeOffset::FromOffset(native_pc_offset, instruction_set_); in BeginStackMapEntry() 623 DCHECK_EQ(stack_map.GetNativePcOffset(stack_map_encoding, instruction_set_), in CheckCodeInfo() 624 entry.native_pc_code_offset.Uint32Value(instruction_set_)); in CheckCodeInfo() 643 DCHECK_EQ(invoke_info.GetNativePcOffset(encoding.invoke_info.encoding, instruction_set_), in CheckCodeInfo() 644 entry.native_pc_code_offset.Uint32Value(instruction_set_)); in CheckCodeInfo()
|
D | graph_visualizer.cc | 116 : instruction_set_(instruction_set), disassembler_(nullptr) { in HGraphVisualizerDisassembler() 157 if (instruction_set_ == InstructionSet::kThumb2) { in Disassemble() 166 InstructionSet instruction_set_; member in art::HGraphVisualizerDisassembler
|
D | scheduler.cc | 792 switch (instruction_set_) { in Run()
|
D | nodes.h | 342 instruction_set_(instruction_set), in allocator_() 571 return instruction_set_; in GetInstructionSet() 729 const InstructionSet instruction_set_; variable
|
D | nodes.cc | 678 Is64BitInstructionSet(instruction_set_) ? DataType::Type::kInt64 : DataType::Type::kInt32, in GetCurrentMethod()
|
/art/runtime/ |
D | oat.cc | 72 instruction_set_(instruction_set), in OatHeader() 116 if (!IsValidInstructionSet(instruction_set_)) { in IsValid() 141 if (!IsValidInstructionSet(instruction_set_)) { in GetValidationErrorMessage() 142 return StringPrintf("Invalid instruction set, %d.", static_cast<int>(instruction_set_)); in GetValidationErrorMessage() 158 UpdateChecksum(&instruction_set_, sizeof(instruction_set_)); in UpdateChecksumWithHeaderData() 200 return instruction_set_; in GetInstructionSet()
|
D | runtime.cc | 216 instruction_set_(InstructionSet::kNone), in Runtime() 1493 instruction_set_ = runtime_options.GetOrDefault(Opt::ImageInstructionSet); in Init() 1500 SetInstructionSet(instruction_set_); in Init() 2083 const PointerSize pointer_size = GetInstructionSetPointerSize(instruction_set_); in CreateImtConflictMethod() 2105 PointerSize pointer_size = GetInstructionSetPointerSize(instruction_set_); in CreateResolutionMethod() 2115 PointerSize pointer_size = GetInstructionSetPointerSize(instruction_set_); in CreateCalleeSaveMethod() 2117 DCHECK_NE(instruction_set_, InstructionSet::kNone); in CreateCalleeSaveMethod() 2173 instruction_set_ = instruction_set; in SetInstructionSet() 2174 if ((instruction_set_ == InstructionSet::kThumb2) || (instruction_set_ == InstructionSet::kArm)) { in SetInstructionSet() 2179 } else if (instruction_set_ == InstructionSet::kMips) { in SetInstructionSet() [all …]
|
D | oat.h | 139 InstructionSet instruction_set_; variable
|
D | runtime.h | 409 return instruction_set_; in GetInstructionSet() 832 InstructionSet instruction_set_; variable
|
/art/compiler/linker/ |
D | relative_patcher_test.h | 58 instruction_set_(instruction_set), in RelativePatcherTest() 84 instruction_set_, 99 CompiledMethod::AlignCode(unaligned_code_offset, instruction_set_); in CodeAlignmentSize() 273 InstructionSet instruction_set_; variable
|
/art/dex2oat/linker/ |
D | multi_oat_relative_patcher.cc | 32 instruction_set_(instruction_set), in MultiOatRelativePatcher()
|
D | multi_oat_relative_patcher.h | 143 InstructionSet instruction_set_; variable
|
/art/dex2oat/ |
D | dex2oat.cc | 611 instruction_set_(kRuntimeISA == InstructionSet::kArm ? InstructionSet::kThumb2 : kRuntimeISA), in Dex2Oat() 707 instruction_set_, option, &parser_options->error_msg); in ParseInstructionSetVariant() 716 instruction_set_, "default", &parser_options->error_msg); in ParseInstructionSetFeatures() 892 instruction_set_, "default", &parser_options->error_msg); in ProcessOptions() 899 if (instruction_set_ == kRuntimeISA) { in ProcessOptions() 916 switch (instruction_set_) { in ProcessOptions() 1239 AssignIfExists(args, M::TargetInstructionSet, &instruction_set_); in ParseArgs() 1241 if (instruction_set_ == InstructionSet::kArm) { in ParseArgs() 1242 instruction_set_ = InstructionSet::kThumb2; in ParseArgs() 1655 instruction_set_, in Setup() [all …]
|
/art/compiler/driver/ |
D | compiler_driver.h | 134 return instruction_set_; in GetInstructionSet() 474 const InstructionSet instruction_set_; variable
|
D | compiler_driver.cc | 276 instruction_set_( in CompilerDriver() 317 if (Is64BitInstructionSet(instruction_set_)) { \ 318 return CreateTrampoline64(instruction_set_, abi, \ 321 return CreateTrampoline32(instruction_set_, abi, \
|
/art/oatdump/ |
D | oatdump.cc | 394 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()), in OatDumper() 395 disassembler_(Disassembler::Create(instruction_set_, in OatDumper() 401 Is64BitInstructionSet(instruction_set_) in OatDumper() 415 return instruction_set_; in GetInstructionSet() 547 static_cast<size_t>(GetInstructionSetPointerSize(instruction_set_)), in Dump() 1569 instruction_set_, in DumpCodeInfo() 1724 instruction_set_(instruction_set) { in StackMapsHelper() 1749 instruction_set_); in StackMapsHelper() 1752 instruction_set_); in StackMapsHelper() 1758 instruction_set_); in StackMapsHelper() [all …]
|
/art/imgdiag/ |
D | imgdiag.cc | 1718 } else if (instruction_set_ != InstructionSet::kNone && instruction_set_ != kRuntimeISA) { in ParseChecks()
|