Home
last modified time | relevance | path

Searched refs:GetType (Results 76 – 100 of 116) sorted by relevance

12345

/art/runtime/entrypoints/
Dentrypoint_utils.cc88 ObjPtr<mirror::Object> val = BoxPrimitive(Primitive::GetType(shorty[i + 1]), jv); in InvokeProxyInvocationHandler()
/art/runtime/
Dart_method-inl.h287 return Primitive::GetType(GetReturnTypeDescriptor()[0]); in GetReturnTypePrimitive()
Dart_field-inl.h313 return Primitive::GetType(GetTypeDescriptor()[0]); in GetTypeAsPrimitiveType()
Dreflection.cc764 return soa.AddLocalReference<jobject>(BoxPrimitive(Primitive::GetType(shorty[0]), result)); in InvokeMethod()
/art/test/ti-stress/
Dstress.cc321 const char* GetType() const { in GetType() function in art::ScopedFieldInfo
342 << ":" << m.GetType(); in operator <<()
/art/compiler/optimizing/
Dregister_allocator_graph_color.cc568 return !DataType::IsFloatingPointType(interval->GetType()); in IsCoreInterval()
844 if (codegen_->NeedsTwoRegisters(interval->GetType())) { in ProcessInstruction()
1956 switch (node->GetInterval()->GetType()) { in AllocateSpillSlots()
1978 LOG(FATAL) << "Unexpected type for interval " << node->GetInterval()->GetType(); in AllocateSpillSlots()
Ddead_code_elimination.cc126 if (left == right && !DataType::IsFloatingPointType(left->GetType())) { in Evaluate()
Dsuperblock_cloner_test.cc184 EXPECT_EQ(orig_instr->GetType(), copy_instr->GetType()); in TEST_F()
Dintrinsics_arm_vixl.cc1634 } else if (code_point->GetType() != DataType::Type::kUint16) { in GenerateVisitStringIndexOf()
2261 DCHECK_EQ(invoke->InputAt(0)->GetType(), DataType::Type::kFloat64); in CreateFPToFPCallLocations()
2262 DCHECK_EQ(invoke->GetType(), DataType::Type::kFloat64); in CreateFPToFPCallLocations()
2286 DCHECK_EQ(invoke->InputAt(0)->GetType(), DataType::Type::kFloat64); in CreateFPFPToFPCallLocations()
2287 DCHECK_EQ(invoke->InputAt(1)->GetType(), DataType::Type::kFloat64); in CreateFPFPToFPCallLocations()
2288 DCHECK_EQ(invoke->GetType(), DataType::Type::kFloat64); in CreateFPFPToFPCallLocations()
2552 DCHECK_EQ(instr->GetType(), DataType::Type::kInt32); in GenBitCount()
2553 DCHECK_EQ(DataType::Kind(instr->InputAt(0)->GetType()), type); in GenBitCount()
Dinduction_var_analysis.cc324 type_ = scc_[0]->GetType(); in VisitNode()
906 DataType::Type type = ImplicitConversion(condition->InputAt(0)->GetType()); in VisitControl()
1315 DataType::Type type = instruction->InputAt(0)->GetType(); in GetShiftConstant()
Dssa_liveness_analysis.h621 DataType::Type GetType() const { in GetType() function
1292 return instruction->GetType() == DataType::Type::kReference; in ShouldBeLiveForEnvironment()
Dsuperblock_cloner.cc633 HPhi* phi = new (arena_) HPhi(arena_, kNoRegNumber, 0, value->GetType()); in ConstructSubgraphClosedSSA()
635 if (value->GetType() == DataType::Type::kReference) { in ConstructSubgraphClosedSSA()
Dscheduler.cc414 return DataType::TypeId(instruction->GetType()) + std::to_string(instruction->GetId()); in InstructionTypeId()
Dbounds_check_elimination.cc952 && (phi->GetType() == DataType::Type::kInt32) in VisitPhi()
1933 DataType::Type type = instruction->GetType(); in InsertPhiNodes()
/art/runtime/gc/collector/
Dimmune_spaces_test.cc154 space::SpaceType GetType() const override { in GetType() function in art::gc::collector::FakeSpace
/art/dex2oat/linker/
Doat_writer.cc166 Type GetType() const { return type_; } in GetType() function in art::linker::OatWriter::DexFileSource
905 if (patch.GetType() == LinkerPatch::Type::kDataBimgRelRo) { in VisitMethod()
908 } else if (patch.GetType() == LinkerPatch::Type::kMethodBssEntry) { in VisitMethod()
914 } else if (patch.GetType() == LinkerPatch::Type::kTypeBssEntry) { in VisitMethod()
920 } else if (patch.GetType() == LinkerPatch::Type::kStringBssEntry) { in VisitMethod()
1769 switch (patch.GetType()) { in VisitMethod()
1862 DCHECK(false) << "Unexpected linker patch type: " << patch.GetType(); in VisitMethod()
3402 << static_cast<size_t>(oat_dex_file->source_.GetType()); in LayoutDexFile()
Doat_writer_test.cc488 oat_class.GetType()) << descriptor; in TEST_F()
/art/dex2oat/linker/arm/
Drelative_patcher_thumb2_test.cc228 if (patch.GetType() == LinkerPatch::Type::kCallEntrypoint || in AddCompiledMethod()
229 patch.GetType() == LinkerPatch::Type::kBakerReadBarrierBranch || in AddCompiledMethod()
230 patch.GetType() == LinkerPatch::Type::kCallRelative) { in AddCompiledMethod()
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64_test.cc201 if (patch.GetType() == LinkerPatch::Type::kCallEntrypoint || in AddCompiledMethod()
202 patch.GetType() == LinkerPatch::Type::kBakerReadBarrierBranch || in AddCompiledMethod()
203 patch.GetType() == LinkerPatch::Type::kCallRelative) { in AddCompiledMethod()
/art/runtime/gc/space/
Dregion_space.h57 SpaceType GetType() const override { in GetType() function
/art/openjdkjvmti/
Dti_heap.cc985 switch (info.GetType()) { in GetReferenceKind()
1715 if (info.GetType() == art::RootType::kRootJavaFrame) { in ReplaceStrongRoots()
1742 if (info.GetType() == art::RootType::kRootJavaFrame) { in ReplaceStrongRoots()
/art/runtime/hprof/
Dhprof.cc1590 CHECK_LT(info.GetType(), sizeof(xlate) / sizeof(HprofHeapTag)); in VisitRoot()
1594 MarkRootObject(obj, nullptr, xlate[info.GetType()], info.GetThreadId()); in VisitRoot()
/art/compiler/jni/quick/
Djni_compiler.cc169 CHECK_NE(Primitive::kPrimNot, Primitive::GetType(shorty[i])) in ArtJniCompileMethodInternal()
/art/tools/veridex/
Dflow_analysis.cc717 const VeriClass* cls = obj.GetType(); in AnalyzeInvoke()
/art/perfetto_hprof/
Dperfetto_hprof.cc384 (*root_objects_)[info.GetType()].emplace_back(root); in VisitRoot()

12345