Home
last modified time | relevance | path

Searched refs:instruction_set_ (Results 1 – 24 of 24) sorted by relevance

/art/compiler/jni/quick/
Djni_compiler.h39 : instruction_set_(instruction_set), in JniCompiledMethod()
49 InstructionSet GetInstructionSet() const { return instruction_set_; } in GetInstructionSet()
57 InstructionSet instruction_set_;
/art/cmdline/
Dcmdline.h151 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/
Drelative_patcher_arm_base.cc177 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()
Drelative_patcher_arm_base.h113 const InstructionSet instruction_set_; variable
/art/compiler/optimizing/
Dssa_liveness_analysis_test.cc35 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
Dstack_map_stream.h65 instruction_set_(instruction_set), in StackMapStream()
164 CodeOffset::FromOffset(native_pc_offset, instruction_set_); in SetStackMapNativePcOffset()
226 const InstructionSet instruction_set_; variable
Dscheduler.h509 instruction_set_(instruction_set) {} in HOptimization()
520 const InstructionSet instruction_set_; variable
Dstack_map_stream.cc36 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()
Dgraph_visualizer.cc116 : instruction_set_(instruction_set), disassembler_(nullptr) { in HGraphVisualizerDisassembler()
157 if (instruction_set_ == InstructionSet::kThumb2) { in Disassemble()
166 InstructionSet instruction_set_; member in art::HGraphVisualizerDisassembler
Dscheduler.cc792 switch (instruction_set_) { in Run()
Dnodes.h342 instruction_set_(instruction_set), in allocator_()
571 return instruction_set_; in GetInstructionSet()
729 const InstructionSet instruction_set_; variable
Dnodes.cc678 Is64BitInstructionSet(instruction_set_) ? DataType::Type::kInt64 : DataType::Type::kInt32, in GetCurrentMethod()
/art/runtime/
Doat.cc72 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()
Druntime.cc216 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 …]
Doat.h139 InstructionSet instruction_set_; variable
Druntime.h409 return instruction_set_; in GetInstructionSet()
832 InstructionSet instruction_set_; variable
/art/compiler/linker/
Drelative_patcher_test.h58 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/
Dmulti_oat_relative_patcher.cc32 instruction_set_(instruction_set), in MultiOatRelativePatcher()
Dmulti_oat_relative_patcher.h143 InstructionSet instruction_set_; variable
/art/dex2oat/
Ddex2oat.cc611 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/
Dcompiler_driver.h134 return instruction_set_; in GetInstructionSet()
474 const InstructionSet instruction_set_; variable
Dcompiler_driver.cc276 instruction_set_( in CompilerDriver()
317 if (Is64BitInstructionSet(instruction_set_)) { \
318 return CreateTrampoline64(instruction_set_, abi, \
321 return CreateTrampoline32(instruction_set_, abi, \
/art/oatdump/
Doatdump.cc394 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/
Dimgdiag.cc1718 } else if (instruction_set_ != InstructionSet::kNone && instruction_set_ != kRuntimeISA) { in ParseChecks()