/art/compiler/optimizing/ |
code_generator.h | 22 #include "instruction_set.h" 77 InstructionSet instruction_set);
|
code_generator.cc | 256 InstructionSet instruction_set) { 257 switch (instruction_set) {
|
register_allocator.cc | 48 InstructionSet instruction_set) { 49 if (!Supports(instruction_set)) { 58 if (current->GetType() == Primitive::kPrimLong && instruction_set != kX86_64) return false; [all...] |
/art/runtime/ |
instruction_set.h | 80 InstructionSet GetInstructionSetFromString(const char* instruction_set);
|
runtime.cc | [all...] |
Android.mk | 77 instruction_set.cc \ 307 instruction_set.h \
|
class_linker.h | 289 static bool VerifyOatImageChecksum(const OatFile* oat_file, const InstructionSet instruction_set); 292 static bool VerifyOatChecksums(const OatFile* oat_file, const InstructionSet instruction_set, 298 InstructionSet instruction_set, [all...] |
runtime.h | 33 #include "instruction_set.h" 380 void SetInstructionSet(InstructionSet instruction_set);
|
/art/runtime/native/ |
dalvik_system_VMRuntime.cc | 29 #include "instruction_set.h" 526 ScopedUtfChars instruction_set(env, java_instruction_set); 527 if (instruction_set.c_str() == nullptr) { 530 InstructionSet isa = GetInstructionSetFromString(instruction_set.c_str()); 533 std::string message(StringPrintf("Instruction set %s is invalid.", instruction_set.c_str()));
|
/art/compiler/dex/quick/ |
mir_to_lir.cc | 71 int offset = StackVisitor::GetOutVROffset(in_position, cu_->instruction_set); 73 if (cu_->instruction_set == kX86) { 81 if (cu_->instruction_set == kX86_64) { 165 int offset = StackVisitor::GetOutVROffset(in_position, cu_->instruction_set); 166 if (cu_->instruction_set == kX86) { 174 if (cu_->instruction_set == kX86_64) { 203 if (cu_->instruction_set == kX86) { [all...] |
codegen_util.cc | 542 switch (cu_->instruction_set) { 555 default: LOG(FATAL) << "Unexpected instruction set: " << cu_->instruction_set; 785 unsigned int ptr_size = GetInstructionSetPointerSize(cu_->instruction_set); [all...] |
ralloc_util.cc | 306 DCHECK_NE(cu_->instruction_set, kThumb2); 325 DCHECK_NE(cu_->instruction_set, kThumb2); [all...] |
/art/compiler/ |
oat_test.cc | 194 InstructionSet instruction_set = kX86; local 199 OatHeader* oat_header = OatHeader::Create(instruction_set,
|
oat_writer.cc | 832 InstructionSet instruction_set = compiler_driver_->GetInstructionSet(); local 835 offset = CompiledCode::AlignCode(offset, instruction_set); \ 836 adjusted_offset = offset + CompiledCode::CodeDelta(instruction_set); \ 1045 InstructionSet instruction_set = compiler_driver_->GetInstructionSet(); local [all...] |
/external/chromium_org/chrome/tools/profile_reset/ |
jtl_compiler.cc | 206 InstructionSet instruction_set; local 239 CompileError::ErrorCode error_code = instruction_set.TranscodeInstruction(
|
/art/compiler/sea_ir/code_gen/ |
code_gen.h | 20 #include "instruction_set.h" 72 std::string GetElf(art::InstructionSet instruction_set);
|
/art/compiler/dex/quick/x86/ |
target_x86.cc | 255 DCHECK(cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64); 697 int offset = frame_size_ - (GetInstructionSetPointerSize(cu_->instruction_set) * num_core_spills_); 703 offset += GetInstructionSetPointerSize(cu_->instruction_set); 714 int offset = frame_size_ - (GetInstructionSetPointerSize(cu_->instruction_set) * num_core_spills_); 720 offset += GetInstructionSetPointerSize(cu_->instruction_set); 730 int offset = frame_size_ - (GetInstructionSetPointerSize(cu_->instruction_set) * (num_fp_spills_ + num_core_spills_)); 744 int offset = frame_size_ - (GetInstructionSetPointerSize(cu_->instruction_set) * (num_fp_spills_ + num_core_spills_)); [all...] |
int_x86.cc | 803 DCHECK(cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64); 805 if (is_long && cu_->instruction_set == kX86) { [all...] |
/art/oatdump/ |
oatdump.cc | 1706 InstructionSet instruction_set = kRuntimeISA; local [all...] |
/art/compiler/driver/ |
compiler_driver.cc | 336 InstructionSet instruction_set, 348 instruction_set_(instruction_set), 367 support_boot_image_fixup_(instruction_set != kMips), [all...] |
compiler_driver.h | 31 #include "instruction_set.h" 99 // Create a compiler targeting the requested "instruction_set". 108 InstructionSet instruction_set, 400 static void InstructionSetToLLVMTarget(InstructionSet instruction_set, [all...] |
/art/compiler/dex/quick/arm64/ |
target_arm64.cc | 168 DCHECK_EQ(cu_->instruction_set, kArm64); [all...] |
/art/compiler/dex/ |
mir_optimization.cc | 430 (cu_->instruction_set == kArm64 || cu_->instruction_set == kThumb2 || 431 cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64) && [all...] |
/art/compiler/utils/ |
assembler.h | 28 #include "instruction_set.h" 354 static Assembler* Create(InstructionSet instruction_set);
|
/art/compiler/dex/quick/mips/ |
int_mips.cc | 277 DCHECK_NE(cu_->instruction_set, kThumb2); 292 DCHECK_NE(cu_->instruction_set, kThumb2);
|