Searched defs:local (Results 1 - 9 of 9) sorted by relevance

/art/compiler/optimizing/
H A Dssa_builder.cc60 HInstruction* SsaBuilder::ValueOfLocal(HBasicBlock* block, size_t local) { argument
61 return GetLocalsFor(block)->Get(local);
72 for (size_t local = 0; local < current_locals_->Size(); local++) {
73 HInstruction* incoming = ValueOfLocal(block->GetLoopInformation()->GetPreHeader(), local);
76 GetGraph()->GetArena(), local, 0, Primitive::kPrimVoid);
78 current_locals_->Put(local, phi);
87 for (size_t local = 0; local < current_locals
[all...]
H A Dbuilder.cc76 HLocal* local = new (arena_) HLocal(i); local
77 entry_block_->AddInstruction(local);
78 locals_.Put(i, local);
98 HLocal* local = GetLocalAt(locals_index++); local
99 entry_block_->AddInstruction(new (arena_) HStoreLocal(local, parameter));
116 HLocal* local = GetLocalAt(locals_index++); local
117 // Store the parameter value in the local that the dex code will use
119 entry_block_->AddInstruction(new (arena_) HStoreLocal(local, parameter));
800 HLocal* local = GetLocalAt(register_index); local
801 current_block_->AddInstruction(new (arena_) HStoreLocal(local, instructio
805 HLocal* local = GetLocalAt(register_index); local
[all...]
H A Dcode_generator_arm.cc681 void LocationsBuilderARM::VisitLocal(HLocal* local) { argument
682 local->SetLocations(nullptr);
685 void InstructionCodeGeneratorARM::VisitLocal(HLocal* local) { argument
686 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
714 LOG(FATAL) << "Unimplemented local type " << store->InputAt(1)->GetType();
H A Dcode_generator_x86.cc457 LOG(FATAL) << "Unimplemented local type " << instruction->GetType();
550 void LocationsBuilderX86::VisitLocal(HLocal* local) { argument
551 local->SetLocations(nullptr);
554 void InstructionCodeGeneratorX86::VisitLocal(HLocal* local) { argument
555 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
558 void LocationsBuilderX86::VisitLoadLocal(HLoadLocal* local) { argument
559 local->SetLocations(nullptr);
583 LOG(FATAL) << "Unimplemented local type " << store->InputAt(1)->GetType();
H A Dcode_generator_x86_64.cc341 LOG(FATAL) << "Unimplemented local type " << instruction->GetType();
429 void LocationsBuilderX86_64::VisitLocal(HLocal* local) { argument
430 local->SetLocations(nullptr);
433 void InstructionCodeGeneratorX86_64::VisitLocal(HLocal* local) { argument
434 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
437 void LocationsBuilderX86_64::VisitLoadLocal(HLoadLocal* local) { argument
438 local->SetLocations(nullptr);
462 LOG(FATAL) << "Unimplemented local type " << store->InputAt(1)->GetType();
H A Dnodes.h1040 // A local in the graph. Corresponds to a Dex register.
1056 // Load a given local. The local is an input of this instruction.
1059 explicit HLoadLocal(HLocal* local, Primitive::Type type) : HExpression(type) { argument
1060 SetRawInputAt(0, local);
1071 // Store a value in a given local. This instruction has two inputs: the value
1072 // and the local.
1075 HStoreLocal(HLocal* local, HInstruction* value) { argument
1076 SetRawInputAt(0, local);
/art/build/
H A DAndroid.common_build.mk132 define set-target-local-clang-vars
306 define set-target-local-cflags-vars
/art/runtime/
H A Djni_internal_test.cc1001 jclass local = env_->FindClass("java/lang/Object"); local
1002 ASSERT_TRUE(local != nullptr);
1003 EXPECT_EQ(JNILocalRefType, env_->GetObjectRefType(local));
1005 jobject global = env_->NewGlobalRef(local);
1008 jweak weak_global = env_->NewWeakGlobalRef(local);
1014 // TODO: invoke a native method and test that its arguments are considered local references.
1380 "invalid local reference: %p", s));
1432 // Our local reference for the survivor is invalid because the survivor
1433 // gets a new local reference...
/art/compiler/driver/
H A Dcompiler_driver.cc105 "static fields local to a class");
447 // Lazily create thread-local storage
983 void CompilerDriver::ProcessedStaticField(bool resolved, bool local) { argument
986 } else if (local) {

Completed in 8009 milliseconds