HomeSort by relevance Sort by last modified time
    Searched refs:Arch (Results 126 - 150 of 397) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/test/MC/MachO/ARM/
long-call-branch-island-relocation.s 41 @ CHECK: Arch: arm
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
GenMake.py 263 ARCH = ${architecture}
356 \t-@echo Building ... $(MODULE_DIR)${separator}$(MODULE_FILE) [$(ARCH)]
454 % (self._AutoGenObject.BuildTarget, self._AutoGenObject.ToolChain, self._AutoGenObject.Arch),
465 if self._AutoGenObject.AutoGenVersion < 0x00010005 and self._AutoGenObject.Arch == "EBC":
470 if self._AutoGenObject.Arch == "EBC":
590 "architecture" : self._AutoGenObject.Arch,
747 if self._AutoGenObject.Arch not in gDependencyDatabase:
748 gDependencyDatabase[self._AutoGenObject.Arch] = {}
749 DepDb = gDependencyDatabase[self._AutoGenObject.Arch]
    [all...]
BuildEngine.py 360 self.RuleDatabase = tdict(True, 4) # {FileExt, ModuleType, Arch, Family : FileBuildRule object}
448 for Arch in self._ArchList:
449 Database[self._FileType, BuildType, Arch, Family] = BuildRule
466 Arch = 'COMMON'
484 # new format: File-Type.Build-Type.Arch
496 Arch = TokenList[2]
499 if Arch not in self._ArchList:
500 self._ArchList.append(Arch)
509 "Specific ARCH must not be mixed with common one",
591 # Key = (FileExt, ModuleType, Arch, ToolChainFamily)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
GenFds.py 216 # EdkLogger.error("GenFds", OPTION_MISSING, "Missing build ARCH")
221 EdkLogger.error("GenFds", GENFDS_ERROR, "Target ARCH %s not in platform supported ARCH %s" % (str(ArchList), str(BuildWorkSpace.BuildObject[GenFdsGlobalVariable.ActivePlatform, 'COMMON'].SupArchList)))
223 for Arch in ArchList:
224 GenFdsGlobalVariable.OutputDirFromDscDict[Arch] = NormPath(BuildWorkSpace.BuildObject[GenFdsGlobalVariable.ActivePlatform, Arch, Options.BuildTarget, Options.ToolChain].OutputDirectory)
225 GenFdsGlobalVariable.PlatformName = BuildWorkSpace.BuildObject[GenFdsGlobalVariable.ActivePlatform, Arch, Options.BuildTarget, Options.ToolChain].PlatformName
231 for Arch in ArchList:
232 GenFdsGlobalVariable.OutputDirDict[Arch] = OutputDirFromCommandLine
234 for Arch in ArchList:
    [all...]
GuidSection.py 267 for Arch in self.CurrentArchList:
268 if Target + '_' + ToolChain + '_' + Arch not in self.KeyStringList:
269 self.KeyStringList.append(Target + '_' + ToolChain + '_' + Arch)
  /external/swiftshader/third_party/subzero/src/
IceTypes.cpp 140 const char *targetArchString(const TargetArch Arch) {
141 if (Arch < TargetArch_NUM)
142 return TargetArchName[Arch];
143 llvm_unreachable("Invalid target arch for targetArchString");
IceELFObjectWriter.cpp 46 const TargetArch Arch = Flags.getTargetArch();
47 if (Arch >= TargetArch_NUM) {
48 llvm_unreachable("Invalid target arch for isELF64");
58 return ELFTargetInfo[Arch].IsELF64;
61 uint16_t getELFMachine(TargetArch Arch) {
62 if (Arch < TargetArch_NUM)
63 return ELFTargetInfo[Arch].ELFMachine;
64 llvm_unreachable("Invalid target arch for getELFMachine");
68 uint32_t getELFFlags(TargetArch Arch) {
69 if (Arch < TargetArch_NUM
    [all...]
  /build/soong/android/
arch.go 55 arch: {
110 func RegisterArchVariants(arch ArchType, variants ...string) {
112 archVariants[arch] = append(archVariants[arch], variants...)
115 func RegisterArchFeatures(arch ArchType, features ...string) {
117 archFeatures[arch] = append(archFeatures[arch], features...)
120 func RegisterArchVariantFeatures(arch ArchType, variant string, features ...string) {
122 if variant != "" && !inList(variant, archVariants[arch]) {
123 panic(fmt.Errorf("Invalid variant %q for arch %q", variant, arch)
    [all...]
module.go 56 Arch() Arch
265 // variantArch := ctx.Arch()
349 func (a *ModuleBase) Arch() Arch {
350 return a.Target().Arch
505 suffix = append(suffix, androidCtx.Arch().ArchType.String())
647 func (a *androidBaseContextImpl) Arch() Arch {
648 return a.target.Arch
    [all...]
  /external/clang/lib/Driver/
ToolChains.cpp 106 static const char *ArmMachOArchName(StringRef Arch) {
107 return llvm::StringSwitch<const char *>(Arch)
127 StringRef Arch = llvm::ARM::getArchName(ArchKind);
131 if (Arch.startswith("armv5"))
132 Arch = Arch.substr(0, 5);
134 else if (Arch.startswith("armv6") && !Arch.endswith("6m"))
135 Arch = Arch.substr(0, 5)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
String.py 94 # Find a key's all arches in dict, add the new arch to the list
95 # If not exist any arch, set the arch directly
99 # @param Arch: The Arch to be added or merged
101 def MergeArches(Dict, Key, Arch):
103 Dict[Key].append(Arch)
105 Dict[Key] = Arch.split()
114 # @param Arch: Supportted Arch
    [all...]
  /external/llvm/tools/dsymutil/
MachOUtils.cpp 30 std::string getArchName(StringRef Arch) {
31 if (Arch.startswith("thumb"))
32 return (llvm::Twine("arm") + Arch.drop_front(5)).str();
33 return Arch;
85 Thin.Arch = getArchName(Thin.Arch);
87 Args.push_back(Thin.Arch.c_str());
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
goobj.go 95 var arch *sys.Arch
97 if a.Name == f.goobj.Arch {
98 arch = a
102 if arch == nil {
117 fileID := int(pcValue(pcfile, pc-uint64(s.Data.Offset), arch))
124 line := int(pcValue(pcline, pc-uint64(s.Data.Offset), arch))
134 func pcValue(tab []byte, target uint64, arch *sys.Arch) int32 {
137 for step(&tab, &pc, &val, pc == 0, arch) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
link.go 180 Arch *sys.Arch
203 switch ctxt.Arch.Family {
209 return int64(4 * ctxt.Arch.PtrSize)
211 return int64(ctxt.Arch.PtrSize)
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
goobj.go 95 var arch *sys.Arch
97 if a.Name == f.goobj.Arch {
98 arch = a
102 if arch == nil {
117 fileID := int(pcValue(pcfile, pc-uint64(s.Data.Offset), arch))
124 line := int(pcValue(pcline, pc-uint64(s.Data.Offset), arch))
134 func pcValue(tab []byte, target uint64, arch *sys.Arch) int32 {
137 for step(&tab, &pc, &val, pc == 0, arch) {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
link.go 180 Arch *sys.Arch
203 switch ctxt.Arch.Family {
209 return int64(4 * ctxt.Arch.PtrSize)
211 return int64(ctxt.Arch.PtrSize)
  /system/libvintf/test/
main.cpp 122 .transportArch = {Transport::HWBINDER, Arch::ARCH_EMPTY},
132 .transportArch = {Transport::PASSTHROUGH, Arch::ARCH_32_64},
155 .transportArch = {Transport::HWBINDER, Arch::ARCH_EMPTY},
192 Arch a = Arch::ARCH_EMPTY;
193 a |= Arch::ARCH_32;
194 EXPECT_EQ(Arch::ARCH_32, a);
196 a |= Arch::ARCH_64;
197 EXPECT_EQ(Arch::ARCH_32_64, a);
199 a = Arch::ARCH_EMPTY
    [all...]
  /bionic/tools/versioner/src/
versioner.cpp 48 #include "Arch.h"
81 static CompilationRequirements collectRequirements(const Arch& arch, const std::string& header_dir,
117 collect_children(dependency_dir + "/" + to_string(arch));
120 auto new_end = std::remove_if(headers.begin(), headers.end(), [&arch](llvm::StringRef header) {
122 if (it.second.find(arch) == it.second.end()) {
139 static std::set<CompilationType> generateCompilationTypes(const std::set<Arch> selected_architectures,
142 for (const auto& arch : selected_architectures) {
143 int min_api = arch_min_api[arch];
151 .arch = arch, .api_level = api_level, .file_offset_bits = file_offset_bit
485 Arch arch = arch_from_string(optarg); local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfSectionParser.py 153 # S1 is always Arch
156 Arch = ItemList[1]
158 Arch = 'COMMON'
159 ArchList.add(Arch)
172 return Arch, ArchList
288 # [section_name.arch<.platform|module_type>]
347 # Get Arch
447 # Hob has Arch attribute, need to be handled specially here
455 Arch = Match.groups(1)[0].upper()
456 ArchList.append(Arch)
    [all...]
InfPackageSectionParser.py 134 if not InfSectionObject.SetPackages(PackageList, Arch = ArchList):
InfSourceSectionParser.py 140 if not InfSectionObject.SetSources(SourceList, Arch = ArchList):
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 83 StringRef Arch,
185 llvm::Triple::ArchType arch = triple.getArch(); local
186 bool is64bit = arch == llvm::Triple::ppc64 || arch == llvm::Triple::x86_64;
197 StringRef Arch,
199 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++",
201 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++/" + Arch,
203 AddPath(Base + "/" + Arch + "/" + Version + "/include/c++/backward",
273 AddPath("/boot/system/develop/headers/os/arch", System, false)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
plist.go 163 ctxt.Arch.Follow(ctxt, s)
165 ctxt.Arch.Preprocess(ctxt, s)
166 ctxt.Arch.Assemble(ctxt, s)
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
plist.go 163 ctxt.Arch.Follow(ctxt, s)
165 ctxt.Arch.Preprocess(ctxt, s)
166 ctxt.Arch.Assemble(ctxt, s)
  /device/linaro/bootloader/edk2/ArmPkg/Application/LinuxLoader/
LinuxLoader.h 66 typedef VOID (*LINUX_KERNEL)(UINT32 Zero, UINT32 Arch, UINTN ParametersBase);

Completed in 925 milliseconds

1 2 3 4 56 7 8 91011>>