Home
last modified time | relevance | path

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

/art/compiler/linker/arm/
Drelative_patcher_arm_base.cc38 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); in ReserveSpaceEnd()
49 offset = CompiledMethod::AlignCode(aligned_offset + thunk_code_.size(), instruction_set_); in ReserveSpaceEnd()
58 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); in WriteThunks()
70 offset = CompiledMethod::AlignCode(thunk_end_offset, instruction_set_); in WriteThunks()
84 : provider_(provider), instruction_set_(instruction_set), thunk_code_(thunk_code), in ArmBaseRelativePatcher()
111 offset = CompiledMethod::AlignCode(thunk_location + thunk_code_.size(), instruction_set_); in ReserveSpaceInternal()
172 uint32_t target_offset = result.second - CompiledCode::CodeDelta(instruction_set_); in ReserveSpaceProcessPatches()
Drelative_patcher_arm_base.h54 const InstructionSet instruction_set_; variable
/art/cmdline/
Dcmdline.h146 instruction_set_ = GetInstructionSetFromString(instruction_set_str.data()); in Parse()
147 if (instruction_set_ == kNone) { in Parse()
218 InstructionSet instruction_set_ = kRuntimeISA; member
266 if (!LocationToFilename(boot_image_location, instruction_set_, &file_name)) { in ParseCheckBootImage()
374 return StartRuntime(args->boot_image_location_, args->instruction_set_); in CreateRuntime()
/art/compiler/
Dcompiled_method.cc28 instruction_set_(instruction_set), in CompiledCode()
50 return AlignCode(offset, instruction_set_); in AlignCode()
58 return CodeDelta(instruction_set_); in CodeDelta()
Dcompiled_method.h45 return instruction_set_; in GetInstructionSet()
88 const InstructionSet instruction_set_; variable
/art/runtime/
Doat.cc68 instruction_set_(instruction_set), in OatHeader()
111 if (!IsValidInstructionSet(instruction_set_)) { in IsValid()
136 if (!IsValidInstructionSet(instruction_set_)) { in GetValidationErrorMessage()
137 return StringPrintf("Invalid instruction set, %d.", static_cast<int>(instruction_set_)); in GetValidationErrorMessage()
153 UpdateChecksum(&instruction_set_, sizeof(instruction_set_)); in UpdateChecksumWithHeaderData()
195 return instruction_set_; in GetInstructionSet()
Druntime.cc163 instruction_set_(kNone), in Runtime()
1179 instruction_set_ = runtime_options.GetOrDefault(Opt::ImageInstructionSet); in Init()
1187 SetInstructionSet(instruction_set_); in Init()
1636 const size_t pointer_size = GetInstructionSetPointerSize(instruction_set_); in CreateImtConflictMethod()
1658 size_t pointer_size = GetInstructionSetPointerSize(instruction_set_); in CreateResolutionMethod()
1668 size_t pointer_size = GetInstructionSetPointerSize(instruction_set_); in CreateCalleeSaveMethod()
1670 DCHECK_NE(instruction_set_, kNone); in CreateCalleeSaveMethod()
1705 instruction_set_ = instruction_set; in SetInstructionSet()
1706 if ((instruction_set_ == kThumb2) || (instruction_set_ == kArm)) { in SetInstructionSet()
1711 } else if (instruction_set_ == kMips) { in SetInstructionSet()
[all …]
Doat.h135 InstructionSet instruction_set_; variable
Druntime.h423 return instruction_set_; in GetInstructionSet()
690 InstructionSet instruction_set_; variable
/art/compiler/linker/
Dmulti_oat_relative_patcher.cc32 instruction_set_(instruction_set), in MultiOatRelativePatcher()
Drelative_patcher_test.h65 instruction_set_(instruction_set), in RelativePatcherTest()
90 instruction_set_, in AddCompiledMethod()
269 InstructionSet instruction_set_; variable
Dmulti_oat_relative_patcher.h132 InstructionSet instruction_set_; variable
/art/dex2oat/
Ddex2oat.cc499 instruction_set_(kRuntimeISA), in Dex2Oat()
614 instruction_set_ = GetInstructionSetFromString(buf.get()); in ParseInstructionSet()
616 if (instruction_set_ == InstructionSet::kArm) { in ParseInstructionSet()
617 instruction_set_ = InstructionSet::kThumb2; in ParseInstructionSet()
626 instruction_set_, str.as_string(), &parser_options->error_msg)); in ParseInstructionSetVariant()
638 instruction_set_, "default", &parser_options->error_msg)); in ParseInstructionSetFeatures()
814 instruction_set_, "default", &parser_options->error_msg)); in ProcessOptions()
821 if (instruction_set_ == kRuntimeISA) { in ProcessOptions()
852 switch (instruction_set_) { in ProcessOptions()
1383 instruction_set_, in Setup()
[all …]
/art/compiler/optimizing/
Dgraph_visualizer.cc104 : instruction_set_(instruction_set), disassembler_(nullptr) { in HGraphVisualizerDisassembler()
142 if (instruction_set_ == kThumb2) { in Disassemble()
151 InstructionSet instruction_set_; member in art::HGraphVisualizerDisassembler
Dnodes.h307 instruction_set_(instruction_set), in arena_()
500 return instruction_set_; in GetInstructionSet()
615 const InstructionSet instruction_set_; variable
Dnodes.cc525 Is64BitInstructionSet(instruction_set_) ? Primitive::kPrimLong : Primitive::kPrimInt, in GetCurrentMethod()
/art/compiler/driver/
Dcompiler_driver.h141 return instruction_set_; in GetInstructionSet()
636 const InstructionSet instruction_set_; variable
Dcompiler_driver.cc379 instruction_set_(instruction_set), in CompilerDriver()
436 if (Is64BitInstructionSet(instruction_set_)) { \
437 return CreateTrampoline64(instruction_set_, abi, \
440 return CreateTrampoline32(instruction_set_, abi, \
1563 ? DexCacheArraysLayout(GetInstructionSetPointerSize(instruction_set_), dex_file) in GetDexCacheArraysLayout()
1691 is_in_image = instruction_set_ != kX86 && instruction_set_ != kX86_64 && in GetCodeAndMethodForDirectCall()
/art/oatdump/
Doatdump.cc334 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()), in OatDumper()
335 disassembler_(Disassembler::Create(instruction_set_, in OatDumper()
351 return instruction_set_; in GetInstructionSet()
1263 InstructionSet instruction_set_; member in art::OatDumper
/art/imgdiag/
Dimgdiag.cc1095 } else if (instruction_set_ != kRuntimeISA) { in ParseChecks()