Home
last modified time | relevance | path

Searched refs:arch (Results 1 – 19 of 19) sorted by relevance

/system/extras/simpleperf/
Dperf_regs.cpp26 ArchType GetArchType(const std::string& arch) { in GetArchType() argument
27 if (arch == "x86" || arch == "i686") { in GetArchType()
29 } else if (arch == "x86_64") { in GetArchType()
31 } else if (arch == "aarch64") { in GetArchType()
33 } else if (android::base::StartsWith(arch, "arm")) { in GetArchType()
36 LOG(ERROR) << "unsupported arch: " << arch; in GetArchType()
40 uint64_t GetSupportedRegMask(ArchType arch) { in GetSupportedRegMask() argument
41 switch (arch) { in GetSupportedRegMask()
75 std::string GetRegName(size_t regno, ArchType arch) { in GetRegName() argument
78 switch (arch) { in GetRegName()
[all …]
Dperf_regs.h58 ArchType GetArchType(const std::string& arch);
59 uint64_t GetSupportedRegMask(ArchType arch);
60 std::string GetRegName(size_t regno, ArchType arch);
64 ScopedCurrentArch(ArchType arch) : saved_arch(current_arch) { in ScopedCurrentArch() argument
65 current_arch = arch; in ScopedCurrentArch()
87 bool GetSpRegValue(const RegSet& regs, ArchType arch, uint64_t* value);
Dcmd_dumprecord.cpp67 std::string arch = record_file_reader_->ReadFeatureString(FEAT_ARCH); in Run() local
68 if (!arch.empty()) { in Run()
69 record_file_arch_ = GetArchType(arch); in Run()
Ddwarf_unwind.h30 std::vector<uint64_t> UnwindCallChain(ArchType arch, const ThreadEntry& thread, const RegSet& regs,
Ddwarf_unwind.cpp97 std::vector<uint64_t> UnwindCallChain(ArchType arch, const ThreadEntry& thread, in UnwindCallChain() argument
100 if (arch != GetBuildArch()) { in UnwindCallChain()
105 if (!GetSpRegValue(regs, arch, &sp_reg_value)) { in UnwindCallChain()
Dcmd_report.cpp638 std::string arch = record_file_reader_->ReadFeatureString(PerfFileFormat::FEAT_ARCH); in ReadFeaturesFromRecordFile() local
639 if (!arch.empty()) { in ReadFeaturesFromRecordFile()
640 record_file_arch_ = GetArchType(arch); in ReadFeaturesFromRecordFile()
/system/core/libcutils/
DAndroid.mk106 LOCAL_SRC_FILES_arm += arch-arm/memset32.S
107 LOCAL_SRC_FILES_arm64 += arch-arm64/android_memset.S
109 LOCAL_SRC_FILES_mips += arch-mips/android_memset.c
110 LOCAL_SRC_FILES_mips64 += arch-mips/android_memset.c
113 arch-x86/android_memset16.S \
114 arch-x86/android_memset32.S \
117 arch-x86_64/android_memset16.S \
118 arch-x86_64/android_memset32.S \
/system/core/libpixelflinger/
DAndroid.mk43 arch-arm64/col32cb16blend.S \
44 arch-arm64/t32cb16blend.S \
50 arch-mips/t32cb16blend.S \
58 arch-mips64/col32cb16blend.S \
59 arch-mips64/t32cb16blend.S \
/system/core/crash_reporter/
Dkernel_collector.h66 void set_arch(ArchKind arch) { arch_ = arch; } in set_arch() argument
67 ArchKind arch() const { return arch_; } in arch() function
Dkernel_collector_test.cc91 EXPECT_NE(KernelCollector::kArchUnknown, collector_.arch()); in TEST_F()
/system/core/libpixelflinger/tests/arch-mips/col32cb16blend/
DAndroid.mk6 ../../../arch-mips/col32cb16blend.S
/system/core/libpixelflinger/tests/arch-arm64/t32cb16blend/
DAndroid.mk6 ../../../arch-arm64/t32cb16blend.S
/system/core/libpixelflinger/tests/arch-arm64/col32cb16blend/
DAndroid.mk6 ../../../arch-arm64/col32cb16blend.S
/system/core/libpixelflinger/tests/arch-mips/t32cb16blend/
DAndroid.mk6 ../../../arch-mips/t32cb16blend.S
/system/core/libpixelflinger/tests/arch-mips64/col32cb16blend/
DAndroid.mk6 ../../../arch-mips64/col32cb16blend.S
/system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/
Dheader.h84 char * arch; member
/system/core/libpixelflinger/codeflinger/
DGGLAssembler.h52 RegisterAllocator(int arch);
62 RegisterFile(int arch);
63 RegisterFile(const RegisterFile& rhs, int arch);
DGGLAssembler.cpp1027 RegisterAllocator::RegisterAllocator(int arch) : mRegs(arch) in RegisterAllocator() argument
/system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/
Dheader.h72 char *arch; member