Home
last modified time | relevance | path

Searched refs:IA (Results 1 – 25 of 348) sorted by relevance

12345678910>>...14

/netbsd-src/external/gpl3/binutils.old/dist/gas/doc/
H A Dc-ia64.texi8 @node IA-64-Dependent
9 @chapter IA-64 Dependent Features
14 @chapter IA-64 Dependent Features
17 @cindex IA-64 support
19 * IA-64 Options:: Options
20 * IA-64 Syntax:: Syntax
21 @c * IA-64 Floating Point:: Floating Point // to be written
22 @c * IA-64 Directives:: IA-64 Machine Directives // to be written
23 * IA-64 Opcodes:: Opcodes
26 @node IA-64 Options
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/doc/
H A Dc-ia64.texi8 @node IA-64-Dependent
9 @chapter IA-64 Dependent Features
14 @chapter IA-64 Dependent Features
17 @cindex IA-64 support
19 * IA-64 Options:: Options
20 * IA-64 Syntax:: Syntax
21 @c * IA-64 Floating Point:: Floating Point // to be written
22 @c * IA-64 Directives:: IA-64 Machine Directives // to be written
23 * IA-64 Opcodes:: Opcodes
26 @node IA-64 Options
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DRDFDeadCode.cpp82 void DeadCodeElimination::scanInstr(NodeAddr<InstrNode*> IA, in scanInstr() argument
84 if (!DFG.IsCode<NodeAttrs::Stmt>(IA)) in scanInstr()
86 if (!isLiveInstr(NodeAddr<StmtNode*>(IA).Addr->getCode())) in scanInstr()
88 for (NodeAddr<RefNode*> RA : IA.Addr->members(DFG)) { in scanInstr()
96 NodeAddr<InstrNode*> IA = DA.Addr->getOwner(DFG); in processDef() local
97 for (NodeAddr<UseNode*> UA : IA.Addr->members_if(DFG.IsUse, DFG)) { in processDef()
101 for (NodeAddr<DefNode*> TA : DFG.getRelatedRefs(IA, DA)) in processDef()
129 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) in collect()
130 scanInstr(IA, WorkQ); in collect()
150 auto IsDead = [this] (NodeAddr<InstrNode*> IA) -> bool { in collect() argument
[all …]
H A DRDFCopy.cpp72 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) { in scanBlock()
73 if (DFG.IsCode<NodeAttrs::Stmt>(IA)) { in scanBlock()
74 NodeAddr<StmtNode*> SA = IA; in scanBlock()
89 NodeAddr<InstrNode*> IA) { in getLocalReachingDef() argument
90 NodeAddr<RefNode*> RA = L.getNearestAliasedRef(RefRR, IA); in getLocalReachingDef()
164 NodeAddr<InstrNode*> IA = UA.Addr->getOwner(DFG); in run() local
165 assert(DFG.IsCode<NodeAttrs::Stmt>(IA)); in run()
166 NodeId AtUse = getLocalReachingDef(SR, IA); in run()
176 << *NodeAddr<StmtNode*>(IA).Addr->getCode(); in run()
197 auto FC = CopyMap.find(IA.Id); in run()
H A DHexagonRDFOpt.cpp95 bool rewrite(NodeAddr<InstrNode*> IA, SetVector<NodeId> &Remove);
96 void removeOperand(NodeAddr<InstrNode*> IA, unsigned OpNum);
189 void HexagonDCE::removeOperand(NodeAddr<InstrNode*> IA, unsigned OpNum) { in removeOperand() argument
190 MachineInstr *MI = NodeAddr<StmtNode*>(IA).Addr->getCode(); in removeOperand()
200 NodeList Refs = IA.Addr->members(DFG); in removeOperand()
215 bool HexagonDCE::rewrite(NodeAddr<InstrNode*> IA, SetVector<NodeId> &Remove) { in rewrite() argument
216 if (!getDFG().IsCode<NodeAttrs::Stmt>(IA)) in rewrite()
219 MachineInstr &MI = *NodeAddr<StmtNode*>(IA).Addr->getCode(); in rewrite()
258 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(DFG.IsDef, DFG)) { in rewrite()
261 Defs = DFG.getRelatedRefs(IA, DA); in rewrite()
[all …]
H A DHexagonOptAddrMode.cpp179 NodeAddr<InstrNode *> IA = UA.Addr->getOwner(*DFG); in canRemoveAddasl() local
182 NodeAddr<RefNode*> AA = LV->getNearestAliasedRef(OffsetRR, IA); in canRemoveAddasl()
187 MachineInstr &UseMI = *NodeAddr<StmtNode *>(IA).Addr->getCode(); in canRemoveAddasl()
301 NodeAddr<InstrNode *> IA = UA.Addr->getOwner(*DFG); in isSafeToExtLR() local
306 NodeAddr<RefNode*> AA = LV->getNearestAliasedRef(LRExtRR, IA); in isSafeToExtLR()
314 MachineInstr *UseMI = NodeAddr<StmtNode *>(IA).Addr->getCode(); in isSafeToExtLR()
691 for (auto IA : BA.Addr->members(*DFG)) { in processBlock() local
692 if (!DFG->IsCode<NodeAttrs::Stmt>(IA)) in processBlock()
695 NodeAddr<StmtNode *> SA = IA; in processBlock()
705 << Print<NodeAddr<InstrNode *>>(IA, *DFG) << '\n'); in processBlock()
/netbsd-src/share/misc/
H A Dzipcodes22032 50001:Ackworth, IA
22033 50002:Adair, IA
22034 50003:Adel, IA
22035 50005:Albion, IA
22036 50006:Alden, IA
22037 50007:Alleman, IA
22038 50008:Allerton, IA
22039 50009:Altoona, IA
22040 50010:Ames, IA
22041 50011:Ames, IA
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRDFGraph.cpp891 for (NodeAddr<InstrNode*> IA : BA.Addr->members(*this)) in build()
892 for (NodeAddr<RefNode*> RA : IA.Addr->members(*this)) in build()
1020 void DataFlowGraph::pushAllDefs(NodeAddr<InstrNode*> IA, DefStackMap &DefM) { in pushAllDefs() argument
1021 pushClobbers(IA, DefM); in pushAllDefs()
1022 pushDefs(IA, DefM); in pushAllDefs()
1027 void DataFlowGraph::pushClobbers(NodeAddr<InstrNode*> IA, DefStackMap &DefM) { in pushClobbers() argument
1043 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(IsDef, *this)) { in pushClobbers()
1049 NodeList Rel = getRelatedRefs(IA, DA); in pushClobbers()
1071 void DataFlowGraph::pushDefs(NodeAddr<InstrNode*> IA, DefStackMap &DefM) { in pushDefs() argument
1089 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(IsDef, *this)) { in pushDefs()
[all …]
H A DRDFLiveness.cpp163 auto Block = [this] (NodeAddr<InstrNode*> IA) -> MachineBasicBlock* { in getAllReachingDefs() argument
164 if (IA.Addr->getKind() == NodeAttrs::Stmt) in getAllReachingDefs()
165 return NodeAddr<StmtNode*>(IA).Addr->getCode()->getParent(); in getAllReachingDefs()
166 assert(IA.Addr->getKind() == NodeAttrs::Phi); in getAllReachingDefs()
167 NodeAddr<PhiNode*> PA = IA; in getAllReachingDefs()
184 NodeAddr<InstrNode*> IA = TA.Addr->getOwner(DFG); in getAllReachingDefs() local
185 Owners[TA.Id] = IA; in getAllReachingDefs()
186 Blocks[Block(IA)].push_back(IA.Id); in getAllReachingDefs()
363 NodeAddr<InstrNode*> IA) { in getNearestAliasedRef() argument
364 NodeAddr<BlockNode*> BA = IA.Addr->getOwner(DFG); in getNearestAliasedRef()
[all …]
H A DLexicalScopes.cpp133 if (auto *IA = DL->getInlinedAt()) { in findLexicalScope() local
134 auto I = InlinedLexicalScopeMap.find(std::make_pair(Scope, IA)); in findLexicalScope()
143 const DILocation *IA) { in getOrCreateLexicalScope() argument
144 if (IA) { in getOrCreateLexicalScope()
148 return getOrCreateLexicalScope(IA); in getOrCreateLexicalScope()
152 return getOrCreateInlinedScope(Scope, IA); in getOrCreateLexicalScope()
H A DTargetRegisterInfo.cpp348 for (SuperRegClassIterator IA(RCA, this, true); IA.isValid(); ++IA) { in getCommonSuperRegClass() local
349 unsigned FinalA = composeSubRegIndices(IA.getSubReg(), SubA); in getCommonSuperRegClass()
353 firstCommonClass(IA.getMask(), IB.getMask(), this); in getCommonSuperRegClass()
368 *BestPreA = IA.getSubReg(); in getCommonSuperRegClass()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DDebugLoc.cpp79 while (DILocation *IA = CurInlinedAt->getInlinedAt()) { in appendInlinedAt() local
81 if (auto *Found = Cache[IA]) { in appendInlinedAt()
86 InlinedAtLocations.push_back(IA); in appendInlinedAt()
87 CurInlinedAt = IA; in appendInlinedAt()
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DMveEmitter.cpp909 const ImmediateArg &IA = kv.second; in genSema() local
912 switch (IA.boundsType) { in genSema()
914 lo = IA.i1; in genSema()
915 hi = IA.i2; in genSema()
919 hi = llvm::APInt::getMaxValue(IA.i1).zext(128); in genSema()
928 unsigned ArgTypeBits = IA.ArgType->sizeInBits(); in genSema()
936 if (!IA.ExtraCheckType.empty()) { in genSema()
938 if (!IA.ExtraCheckArgs.empty()) { in genSema()
940 StringRef Arg = IA.ExtraCheckArgs; in genSema()
942 tmp = utostr(IA.ArgType->sizeInBits()); in genSema()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/arm/
H A Darm-ldmstm.ml32 type amode = IA | IB | DA | DB Constructor
40 IA -> "ia"
46 IA -> ""
53 IA -> 0
60 IA -> nregs * 4
153 (* Thumb1 mode only supports IA with update. However, for LDMIA,
159 IA, _, false -> true
160 | IA, true, true -> true
167 IA, true -> "TARGET_THUMB1"
168 | IA, false -> "TARGET_32BIT"
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/arm/
H A Darm-ldmstm.ml32 type amode = IA | IB | DA | DB Constructor
40 IA -> "ia"
46 IA -> ""
53 IA -> 0
60 IA -> nregs * 4
153 (* Thumb1 mode only supports IA with update. However, for LDMIA,
159 IA, _, false -> true
160 | IA, true, true -> true
167 IA, true -> "TARGET_THUMB1"
168 | IA, false -> "TARGET_32BIT"
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DRDFGraph.h736 void pushAllDefs(NodeAddr<InstrNode*> IA, DefStackMap &DM);
754 NodeAddr<RefNode*> getNextRelated(NodeAddr<InstrNode*> IA,
756 NodeAddr<RefNode*> getNextShadow(NodeAddr<InstrNode*> IA,
758 NodeAddr<RefNode*> getNextShadow(NodeAddr<InstrNode*> IA,
761 NodeList getRelatedRefs(NodeAddr<InstrNode*> IA,
838 locateNextRef(NodeAddr<InstrNode*> IA, NodeAddr<RefNode*> RA,
849 void pushClobbers(NodeAddr<InstrNode*> IA, DefStackMap &DM);
850 void pushDefs(NodeAddr<InstrNode*> IA, DefStackMap &DM);
851 template <typename T> void linkRefUp(NodeAddr<InstrNode*> IA,
861 NodeAddr<InstrNode*> IA = RA.Addr->getOwner(*this); in removeFromOwner() local
[all …]
H A DLexicalScopes.h186 LexicalScope *findInlinedScope(const DILocalScope *N, const DILocation *IA) { in findInlinedScope() argument
187 auto I = InlinedLexicalScopeMap.find(std::make_pair(N, IA)); in findInlinedScope()
204 const DILocation *IA = nullptr);
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Dpriclass_example.txt12 IA
60 The IA interactive class had 30 samples of a 50 to 59 priority, a fairly
73 reason, the RT class trumps both TS and IA. I created these events by
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/
H A Dpriclass_example.txt12 IA
60 The IA interactive class had 30 samples of a 50 to 59 priority, a fairly
73 reason, the RT class trumps both TS and IA. I created these events by
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h79 DbgEntity(const DINode *N, const DILocation *IA, unsigned ID) in DbgEntity() argument
80 : Entity(N), InlinedAt(IA), SubclassID(ID) {} in DbgEntity()
137 DbgVariable(const DILocalVariable *V, const DILocation *IA) in DbgVariable() argument
138 : DbgEntity(V, IA, DbgVariableKind) {} in DbgVariable()
238 DbgLabel(const DILabel *L, const DILocation *IA, const MCSymbol *Sym = nullptr)
239 : DbgEntity(L, IA, DbgLabelKind), Sym(Sym) {} in DbgEntity() argument
/netbsd-src/sys/external/bsd/gnu-efi/dist/
H A DREADME.gnuefi18 EFI applications for IA-64,x86 and x86_64 using the GNU toolchain and the EFI
51 To develop IA-64 EFI applications, the following tools are needed:
104 x86_64 and "ia64" for IA-64). For convenience, this can also be done from
184 --target=efi-app-ia32 (x86) or --target=efi-app-ia64 (IA-64). But
207 (3) On IA-64, the EFI entry point needs to point to a function
228 ("ia32" for x86, "x86_64" for x86_64 and "ia64" for IA-64).
269 o On IA-64, the global pointer symbol (__gp) needs to be placed such
306 runtime relocation by the dynamic loader. For example, IA-64 binaries
322 can be found in gnuefi/reloc_x86_64.c and the IA-64 version can be
332 case for IA-64). The dynamic relocation information points to the ELF
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DInlineAsmLowering.cpp53 const InlineAsm *IA = cast<InlineAsm>(CB.getCalledOperand()); in ExtraFlags() local
54 if (IA->hasSideEffects()) in ExtraFlags()
56 if (IA->isAlignStack()) in ExtraFlags()
60 Flags |= IA->getDialect() * InlineAsm::Extra_AsmDialect; in ExtraFlags()
277 const InlineAsm *IA = cast<InlineAsm>(Call.getCalledOperand()); in lowerInlineAsm() local
355 .addExternalSymbol(IA->getAsmString().c_str()) in lowerInlineAsm()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCCodeView.cpp291 MCCVFunctionInfo::LineInfo &IA = I->second; in getFunctionLineEntries() local
296 FilteredLines.back().getFileNum() != IA.File || in getFunctionLineEntries()
297 FilteredLines.back().getLine() != IA.Line || in getFunctionLineEntries()
298 FilteredLines.back().getColumn() != IA.Col) { in getFunctionLineEntries()
301 FuncId, IA.File, IA.Line, IA.Col, false, false)); in getFunctionLineEntries()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DMicrosoftCXXABI.cpp199 MSInheritanceAttr *IA = getAttr<MSInheritanceAttr>(); in getMSInheritanceModel() local
200 assert(IA && "Expected MSInheritanceAttr on the CXXRecordDecl!"); in getMSInheritanceModel()
201 return IA->getInheritanceModel(); in getMSInheritanceModel()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DTypeBasedAliasAnalysis.cpp508 int IA = PathA.size() - 1; in getLeastCommonType() local
512 while (IA >= 0 && IB >= 0) { in getLeastCommonType()
513 if (PathA[IA] == PathB[IB]) in getLeastCommonType()
514 Ret = PathA[IA]; in getLeastCommonType()
517 --IA; in getLeastCommonType()

12345678910>>...14