HomeSort by relevance Sort by last modified time
    Searched refs:instruction_set_ (Results 1 - 25 of 25) sorted by null

  /art/cmdline/
cmdline.h 148 instruction_set_ = GetInstructionSetFromString(instruction_set_str.data());
149 if (instruction_set_ == kNone) {
220 InstructionSet instruction_set_ = kRuntimeISA; member in struct:art::CmdlineArgs
268 if (!LocationToFilename(boot_image_location, instruction_set_, &file_name)) {
376 return StartRuntime(args->boot_image_location_, args->instruction_set_);
  /art/compiler/optimizing/
ssa_liveness_analysis_test.cc 36 instruction_set_(kRuntimeISA) {
39 InstructionSetFeatures::FromVariant(instruction_set_, "default", &error_msg);
41 instruction_set_,
44 CHECK(codegen_ != nullptr) << instruction_set_ << " is not a supported target architecture.";
64 InstructionSet instruction_set_; member in class:art::SsaLivenessAnalysisTest
stack_map_stream.h 66 instruction_set_(instruction_set),
165 CodeOffset::FromOffset(native_pc_offset, instruction_set_);
227 const InstructionSet instruction_set_; member in class:art::StackMapStream
scheduler.h 491 instruction_set_(instruction_set) {}
502 const InstructionSet instruction_set_; member in class:art::HInstructionScheduling
stack_map_stream.cc 36 current_entry_.native_pc_code_offset = CodeOffset::FromOffset(native_pc_offset, instruction_set_);
614 DCHECK_EQ(stack_map.GetNativePcOffset(stack_map_encoding, instruction_set_),
615 entry.native_pc_code_offset.Uint32Value(instruction_set_));
634 DCHECK_EQ(invoke_info.GetNativePcOffset(encoding.invoke_info.encoding, instruction_set_),
635 entry.native_pc_code_offset.Uint32Value(instruction_set_));
graph_visualizer.cc 112 : instruction_set_(instruction_set), disassembler_(nullptr) {
153 if (instruction_set_ == kThumb2) {
162 InstructionSet instruction_set_; member in class:art::HGraphVisualizerDisassembler
    [all...]
scheduler.cc 807 switch (instruction_set_) {
nodes.h 338 instruction_set_(instruction_set),
554 return instruction_set_;
711 const InstructionSet instruction_set_; member in class:art::HGraph
    [all...]
nodes.cc 519 Is64BitInstructionSet(instruction_set_) ? Primitive::kPrimLong : Primitive::kPrimInt,
    [all...]
  /art/compiler/
compiled_method.cc 28 instruction_set_(instruction_set),
50 return AlignCode(offset, instruction_set_);
58 return CodeDelta(instruction_set_);
compiled_method.h 46 return instruction_set_;
89 const InstructionSet instruction_set_; member in class:art::CompiledCode
  /art/compiler/linker/arm/
relative_patcher_arm_base.cc 155 uint32_t thunk_offset = CompiledCode::AlignCode(offset, instruction_set_);
180 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_);
200 aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_);
209 instruction_set_(instruction_set),
247 uint32_t thunk_offset = CompiledCode::AlignCode(offset, instruction_set_);
381 size_t alignment = GetInstructionSetAlignment(instruction_set_);
421 uint32_t target_offset = result.second - CompiledCode::CodeDelta(instruction_set_);
455 GetInstructionSetAlignment(instruction_set_));
relative_patcher_arm_base.h 111 const InstructionSet instruction_set_; member in class:art::linker::ArmBaseRelativePatcher
  /art/compiler/linker/
multi_oat_relative_patcher.cc 32 instruction_set_(instruction_set),
relative_patcher_test.h 61 instruction_set_(instruction_set),
87 instruction_set_,
102 CompiledMethod::AlignCode(unaligned_code_offset, instruction_set_);
277 InstructionSet instruction_set_; member in class:art::linker::RelativePatcherTest
multi_oat_relative_patcher.h 139 InstructionSet instruction_set_; member in class:art::linker::FINAL
  /art/runtime/
oat.cc 72 instruction_set_(instruction_set),
116 if (!IsValidInstructionSet(instruction_set_)) {
141 if (!IsValidInstructionSet(instruction_set_)) {
142 return StringPrintf("Invalid instruction set, %d.", static_cast<int>(instruction_set_));
158 UpdateChecksum(&instruction_set_, sizeof(instruction_set_));
200 return instruction_set_;
runtime.cc 208 instruction_set_(kNone),
    [all...]
oat.h 138 InstructionSet instruction_set_; variable
runtime.h 402 return instruction_set_;
733 InstructionSet instruction_set_; member in class:art::verifier::VerifyMode
  /art/dex2oat/
dex2oat.cc 577 instruction_set_(kRuntimeISA == kArm ? kThumb2 : kRuntimeISA),
708 instruction_set_ = GetInstructionSetFromString(buf.get());
710 if (instruction_set_ == InstructionSet::kArm) {
711 instruction_set_ = InstructionSet::kThumb2;
719 instruction_set_, str.as_string(), &parser_options->error_msg);
730 instruction_set_, "default", &parser_options->error_msg);
2843 InstructionSet instruction_set_; member in class:art::FINAL
    [all...]
  /art/compiler/driver/
compiler_driver.h 126 return instruction_set_;
471 const InstructionSet instruction_set_; member in class:art::CompilerDriver
compiler_driver.cc 291 instruction_set_(instruction_set == kArm ? kThumb2 : instruction_set),
333 if (Is64BitInstructionSet(instruction_set_)) { \
334 return CreateTrampoline64(instruction_set_, abi, \
337 return CreateTrampoline32(instruction_set_, abi, \
    [all...]
  /art/oatdump/
oatdump.cc 365 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()),
366 disassembler_(Disassembler::Create(instruction_set_,
372 Is64BitInstructionSet(instruction_set_)
386 return instruction_set_;
1641 const InstructionSet instruction_set_; member in class:art::OatDumper::StackMapsHelper
1771 const InstructionSet instruction_set_; member in class:art::OatDumper
    [all...]
  /art/imgdiag/
imgdiag.cc     [all...]

Completed in 237 milliseconds