Home
last modified time | relevance | path

Searched defs:type (Results 1 – 25 of 101) sorted by relevance

12345

/art/runtime/arch/arm/
Dquick_method_frame_info_arm.h45 constexpr uint32_t ArmCalleeSaveCoreSpills(Runtime::CalleeSaveType type) { in ArmCalleeSaveCoreSpills()
50 constexpr uint32_t ArmCalleeSaveFpSpills(Runtime::CalleeSaveType type) { in ArmCalleeSaveFpSpills()
54 constexpr uint32_t ArmCalleeSaveFrameSize(Runtime::CalleeSaveType type) { in ArmCalleeSaveFrameSize()
60 constexpr QuickMethodFrameInfo ArmCalleeSaveMethodFrameInfo(Runtime::CalleeSaveType type) { in ArmCalleeSaveMethodFrameInfo()
66 constexpr size_t ArmCalleeSaveFpr1Offset(Runtime::CalleeSaveType type) { in ArmCalleeSaveFpr1Offset()
72 constexpr size_t ArmCalleeSaveGpr1Offset(Runtime::CalleeSaveType type) { in ArmCalleeSaveGpr1Offset()
77 constexpr size_t ArmCalleeSaveLrOffset(Runtime::CalleeSaveType type) { in ArmCalleeSaveLrOffset()
/art/runtime/arch/arm64/
Dquick_method_frame_info_arm64.h62 constexpr uint32_t Arm64CalleeSaveCoreSpills(Runtime::CalleeSaveType type) { in Arm64CalleeSaveCoreSpills()
68 constexpr uint32_t Arm64CalleeSaveFpSpills(Runtime::CalleeSaveType type) { in Arm64CalleeSaveFpSpills()
74 constexpr uint32_t Arm64CalleeSaveFrameSize(Runtime::CalleeSaveType type) { in Arm64CalleeSaveFrameSize()
80 constexpr QuickMethodFrameInfo Arm64CalleeSaveMethodFrameInfo(Runtime::CalleeSaveType type) { in Arm64CalleeSaveMethodFrameInfo()
86 constexpr size_t Arm64CalleeSaveFpr1Offset(Runtime::CalleeSaveType type) { in Arm64CalleeSaveFpr1Offset()
92 constexpr size_t Arm64CalleeSaveGpr1Offset(Runtime::CalleeSaveType type) { in Arm64CalleeSaveGpr1Offset()
97 constexpr size_t Arm64CalleeSaveLrOffset(Runtime::CalleeSaveType type) { in Arm64CalleeSaveLrOffset()
/art/runtime/arch/x86_64/
Dquick_method_frame_info_x86_64.h41 constexpr uint32_t X86_64CalleeSaveCoreSpills(Runtime::CalleeSaveType type) { in X86_64CalleeSaveCoreSpills()
47 constexpr uint32_t X86_64CalleeSaveFpSpills(Runtime::CalleeSaveType type) { in X86_64CalleeSaveFpSpills()
52 constexpr uint32_t X86_64CalleeSaveFrameSize(Runtime::CalleeSaveType type) { in X86_64CalleeSaveFrameSize()
58 constexpr QuickMethodFrameInfo X86_64CalleeSaveMethodFrameInfo(Runtime::CalleeSaveType type) { in X86_64CalleeSaveMethodFrameInfo()
/art/runtime/arch/x86/
Dquick_method_frame_info_x86.h32 constexpr uint32_t X86CalleeSaveCoreSpills(Runtime::CalleeSaveType type) { in X86CalleeSaveCoreSpills()
37 constexpr uint32_t X86CalleeSaveFrameSize(Runtime::CalleeSaveType type) { in X86CalleeSaveFrameSize()
42 constexpr QuickMethodFrameInfo X86CalleeSaveMethodFrameInfo(Runtime::CalleeSaveType type) { in X86CalleeSaveMethodFrameInfo()
/art/runtime/
Dprimitive.h46 static Type GetType(char type) { in GetType()
71 static size_t ComponentSize(Type type) { in ComponentSize()
89 static size_t FieldSize(Type type) { in FieldSize()
93 static const char* Descriptor(Type type) { in Descriptor()
Druntime-inl.h63 inline mirror::ArtMethod* Runtime::GetCalleeSaveMethod(CalleeSaveType type) in GetCalleeSaveMethod()
69 inline mirror::ArtMethod* Runtime::GetCalleeSaveMethodUnchecked(CalleeSaveType type) in GetCalleeSaveMethodUnchecked()
Dentrypoints_order_test.cc43 #define EXPECT_OFFSET_DIFFNP(type, first_field, second_field, diff) \ argument
48 #define EXPECT_OFFSET_DIFFP(type, prefix, first_field, second_field, diff) \ argument
59 #define EXPECT_OFFSET_DIFF_GT3(type, first_field, second_field, diff, name) \ argument
Dprimitive.cc33 std::ostream& operator<<(std::ostream& os, const Primitive::Type& type) { in operator <<()
Dfield_helper.cc35 mirror::Class* type = field_->GetDexCache()->GetResolvedType(field_id.type_idx_); in GetType() local
Dcommon_throws.cc159 InvokeType type) { in ThrowIllegalAccessErrorClassForMethodDispatch()
296 const StringPiece& type, const StringPiece& name) in ThrowNoSuchFieldError()
307 void ThrowNoSuchMethodError(InvokeType type, mirror::Class* c, const StringPiece& name, in ThrowNoSuchMethodError()
340 InvokeType type) in ThrowNullPointerExceptionForMethodAccessImpl()
350 InvokeType type) { in ThrowNullPointerExceptionForMethodAccess()
359 InvokeType type) { in ThrowNullPointerExceptionForMethodAccess()
Druntime.cc830 Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i); in Init() local
1252 mirror::ArtMethod* Runtime::CreateCalleeSaveMethod(CalleeSaveType type) { in CreateCalleeSaveMethod()
1285 CalleeSaveType type = static_cast<CalleeSaveType>(i); in SetInstructionSet() local
1290 CalleeSaveType type = static_cast<CalleeSaveType>(i); in SetInstructionSet() local
1295 CalleeSaveType type = static_cast<CalleeSaveType>(i); in SetInstructionSet() local
1300 CalleeSaveType type = static_cast<CalleeSaveType>(i); in SetInstructionSet() local
1305 CalleeSaveType type = static_cast<CalleeSaveType>(i); in SetInstructionSet() local
1313 void Runtime::SetCalleeSaveMethod(mirror::ArtMethod* method, CalleeSaveType type) { in SetCalleeSaveMethod()
/art/runtime/arch/mips/
Dquick_method_frame_info_mips.h35 constexpr uint32_t MipsCalleeSaveCoreSpills(Runtime::CalleeSaveType type) { in MipsCalleeSaveCoreSpills()
41 constexpr uint32_t MipsCalleeSaveFrameSize(Runtime::CalleeSaveType type) { in MipsCalleeSaveFrameSize()
47 constexpr QuickMethodFrameInfo MipsCalleeSaveMethodFrameInfo(Runtime::CalleeSaveType type) { in MipsCalleeSaveMethodFrameInfo()
/art/runtime/entrypoints/quick/
Dcallee_save_frame.h39 Runtime::CalleeSaveType type) in FinishCalleeSaveFrameSetup()
48 static constexpr size_t GetCalleeSaveFrameSize(InstructionSet isa, Runtime::CalleeSaveType type) { in GetCalleeSaveFrameSize()
72 static constexpr size_t GetCalleeSavePCOffset(InstructionSet isa, Runtime::CalleeSaveType type) { in GetCalleeSavePCOffset()
Dquick_trampoline_entrypoints_test.cc29 Runtime::CalleeSaveType type) in CreateCalleeSaveMethod()
45 static void CheckFrameSize(InstructionSet isa, Runtime::CalleeSaveType type, uint32_t save_size) in CheckFrameSize()
54 static void CheckPCOffset(InstructionSet isa, Runtime::CalleeSaveType type, size_t pc_offset) in CheckPCOffset()
/art/compiler/llvm/
Dintrinsic_helper.cc41 IntrinsicHelper::IntrinsicValType type) { in GetLLVMTypeOfIntrinsicValType()
113 IntrinsicValType type = info.arg_type_[arg_iter]; in IntrinsicHelper() local
Druntime_support_builder_arm.cc41 char LDRSTRSuffixByType(art::llvm::IRBuilder& irb, Type* type) { in LDRSTRSuffixByType()
71 Value* RuntimeSupportBuilderARM::EmitLoadFromThreadOffset(int64_t offset, ::llvm::Type* type, in EmitLoadFromThreadOffset()
/art/compiler/dex/
Dlocal_value_numbering.cc59 uint16_t type = gvn->GetFieldType(field_id); in StartMemoryVersion() local
78 uint16_t type = gvn->GetFieldType(field_id); in LookupMergeValue() local
92 uint16_t type = gvn->GetFieldType(field_id); in HasNewBaseVersion() local
151 uint16_t type) { in StartMemoryVersion()
163 uint16_t type, uint16_t location, uint16_t memory_version) { in LookupGlobalValue()
168 uint16_t type, uint16_t location) { in LookupMergeValue()
180 uint16_t type) { in HasNewBaseVersion()
185 uint16_t type) { in LookupMergeBlockValue()
190 uint16_t type, uint16_t location) { in LookupMergeLocationValue()
681 uint16_t type = gvn_->GetFieldType(field_id); in MergeSFieldValues() local
[all …]
/art/runtime/mirror/
Dart_field-inl.h171 Primitive::Type type = GetTypeAsPrimitiveType(); in GetInt() local
180 Primitive::Type type = GetTypeAsPrimitiveType(); in SetInt() local
188 Primitive::Type type = GetTypeAsPrimitiveType(); in GetLong() local
197 Primitive::Type type = GetTypeAsPrimitiveType(); in SetLong() local
Dart_field.cc49 Primitive::Type type = GetTypeAsPrimitiveType(); in SetOffset() local
/art/compiler/
Delf_writer_quick.h58 ElfSectionBuilder(const std::string& sec_name, Elf32_Word type, Elf32_Word flags, in ElfSectionBuilder()
123 ElfRawSectionBuilder(const std::string& sec_name, Elf32_Word type, Elf32_Word flags, in ElfRawSectionBuilder()
141 Elf32_Word type, Elf32_Word flags) in ElfOatSectionBuilder()
169 ElfSymtabBuilder(const std::string& sec_name, Elf32_Word type, in ElfSymtabBuilder()
/art/compiler/sea_ir/types/
Dtypes.h47 void SetTypeOf(int instruction_id, const Type* type) { in SetTypeOf()
/art/compiler/utils/arm/
Dassembler_thumb2.h514 Branch(const Thumb2Assembler* assembler, Type type, uint32_t location, Register rn) : in Branch()
598 void ResetTypeAndCondition(Type type, Condition cond) { in ResetTypeAndCondition()
679 uint16_t AddBranch(Branch::Type type, uint32_t location, Register rn) { in AddBranch()
/art/runtime/native/
Dorg_apache_harmony_dalvik_ddmc_DdmServer.cc24 static void DdmServer_nativeSendChunk(JNIEnv* env, jclass, jint type, in DdmServer_nativeSendChunk()
/art/compiler/optimizing/
Dbuilder.cc68 static bool IsTypeSupported(Primitive::Type type) { in IsTypeSupported()
273 void HGraphBuilder::Binop_23x(const Instruction& instruction, Primitive::Type type) { in Binop_23x()
281 void HGraphBuilder::Binop_12x(const Instruction& instruction, Primitive::Type type) { in Binop_12x()
310 void HGraphBuilder::BuildReturn(const Instruction& instruction, Primitive::Type type) { in BuildReturn()
355 Primitive::Type type = Primitive::GetType(descriptor[descriptor_index++]); in BuildInvoke() local
/art/runtime/verifier/
Dreg_type_cache.cc274 PreciseConstType* type = small_precise_constants_[value - kMinSmallConstant]; in ShutDown() local
310 PreciseConstType* type = new PreciseConstType(value, primitive_count_); in CreatePrimitiveAndSmallConstantTypes() local
370 UninitializedType& RegTypeCache::Uninitialized(RegType& type, uint32_t allocation_pc) { in Uninitialized()
479 UninitializedType& RegTypeCache::UninitializedThisArgument(RegType& type) { in UninitializedThisArgument()

12345