| /freebsd-10-stable/contrib/binutils/gas/doc/ |
| D | c-ia64.texi | 9 @node IA-64-Dependent 10 @chapter IA-64 Dependent Features 15 @chapter IA-64 Dependent Features 18 @cindex IA-64 support 20 * IA-64 Options:: Options 21 * IA-64 Syntax:: Syntax 22 @c * IA-64 Floating Point:: Floating Point // to be written 23 @c * IA-64 Directives:: IA-64 Machine Directives // to be written 24 * IA-64 Opcodes:: Opcodes 27 @node IA-64 Options [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/IR/ |
| D | DebugLoc.cpp | 49 void DebugLoc::getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA, in getScopeAndInlinedAt() argument 52 Scope = IA = 0; in getScopeAndInlinedAt() 62 IA = 0; in getScopeAndInlinedAt() 70 IA = Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].second.get(); in getScopeAndInlinedAt() 103 MDNode *Scope, *IA; in getAsMDNode() local 104 getScopeAndInlinedAt(Scope, IA, Ctx); in getAsMDNode() 111 Scope, IA in getAsMDNode() 184 int LLVMContextImpl::getOrAddScopeInlinedAtIdxEntry(MDNode *Scope, MDNode *IA, in getOrAddScopeInlinedAtIdxEntry() argument 187 int &Idx = ScopeInlinedAtIdx[std::make_pair(Scope, IA)]; in getOrAddScopeInlinedAtIdxEntry() 202 DebugRecVH(IA, this, Idx))); in getOrAddScopeInlinedAtIdxEntry()
|
| /freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/ |
| D | ValueMapper.cpp | 46 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) { in MapValue() local 48 FunctionType *NewTy = IA->getFunctionType(); in MapValue() 52 if (NewTy != IA->getFunctionType()) in MapValue() 53 V = InlineAsm::get(NewTy, IA->getAsmString(), IA->getConstraintString(), in MapValue() 54 IA->hasSideEffects(), IA->isAlignStack()); in MapValue()
|
| /freebsd-10-stable/contrib/llvm/lib/CodeGen/ |
| D | TargetRegisterInfo.cpp | 231 for (SuperRegClassIterator IA(RCA, this, true); IA.isValid(); ++IA) { in getCommonSuperRegClass() local 232 unsigned FinalA = composeSubRegIndices(IA.getSubReg(), SubA); in getCommonSuperRegClass() 236 firstCommonClass(IA.getMask(), IB.getMask(), this); in getCommonSuperRegClass() 251 *BestPreA = IA.getSubReg(); in getCommonSuperRegClass()
|
| D | LexicalScopes.cpp | 118 MDNode *IA = NULL; in findLexicalScope() local 119 DL.getScopeAndInlinedAt(Scope, IA, MF->getFunction()->getContext()); in findLexicalScope() 128 if (IA) in findLexicalScope() 129 return InlinedLexicalScopeMap.lookup(DebugLoc::getFromDILocation(IA)); in findLexicalScope()
|
| /freebsd-10-stable/crypto/openssl/doc/crypto/ |
| D | OPENSSL_ia32cap.pod | 5 OPENSSL_ia32cap - finding the IA-32 processor capabilities 15 containing IA-32 processor capabilities bit vector as it appears in EDX 17 Intel Application Note #241618). Naturally it's meaningful on IA-32[E]
|
| /freebsd-10-stable/cddl/contrib/dtracetoolkit/Examples/ |
| D | priclass_example.txt | 12 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
|
| /freebsd-10-stable/contrib/llvm/lib/Analysis/ |
| D | TypeBasedAliasAnalysis.cpp | 586 int IA = PathA.size() - 1; in getMostGenericTBAA() local 590 while (IA >= 0 && IB >=0) { in getMostGenericTBAA() 591 if (PathA[IA] == PathB[IB]) in getMostGenericTBAA() 592 Ret = PathA[IA]; in getMostGenericTBAA() 595 --IA; in getMostGenericTBAA()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ |
| D | MicrosoftCXXABI.cpp | 106 if (Attr *IA = this->getAttr<MSInheritanceAttr>()) in getMSInheritanceModel() local 107 return MSInheritanceAttrToModel(IA->getKind()); in getMSInheritanceModel()
|
| /freebsd-10-stable/contrib/gcc/config/ia64/ |
| D | libgcc-ia64.ver | 2 # IA-64 symbols
|
| D | t-glibc | 1 # Use system libunwind library on IA-64 GLIBC based system.
|
| D | t-glibc-libunwind | 1 # Build libunwind for IA-64 GLIBC based system.
|
| D | fde-glibc.c | 42 # error You need GLIBC 2.2.4 or later on IA-64 Linux
|
| D | ia64-modes.def | 1 /* Definitions of target machine GNU compiler. IA-64 version.
|
| /freebsd-10-stable/contrib/llvm/lib/Bitcode/Writer/ |
| D | ValueEnumerator.cpp | 105 MDNode *Scope, *IA; in ValueEnumerator() local 106 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext()); in ValueEnumerator() 108 if (IA) EnumerateMetadata(IA); in ValueEnumerator()
|
| D | BitcodeWriter.cpp | 922 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) { in WriteConstants() local 923 Record.push_back(unsigned(IA->hasSideEffects()) | in WriteConstants() 924 unsigned(IA->isAlignStack()) << 1 | in WriteConstants() 925 unsigned(IA->getDialect()&1) << 2); in WriteConstants() 928 const std::string &AsmStr = IA->getAsmString(); in WriteConstants() 934 const std::string &ConstraintStr = IA->getConstraintString(); in WriteConstants() 1599 MDNode *Scope, *IA; in WriteFunction() local 1600 DL.getScopeAndInlinedAt(Scope, IA, I->getContext()); in WriteFunction() 1605 Vals.push_back(IA ? VE.getValueID(IA)+1 : 0); in WriteFunction()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Tooling/ |
| D | CompilationDatabase.cpp | 133 const driver::InputAction *IA = cast<driver::InputAction>(A); in runImpl() local 134 Inputs.push_back(IA->getInputArg().getSpelling()); in runImpl()
|
| /freebsd-10-stable/contrib/llvm/include/llvm/Support/ |
| D | DebugLoc.h | 89 void getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA,
|
| /freebsd-10-stable/sys/contrib/xz-embedded/linux/lib/xz/ |
| D | Kconfig | 22 bool "IA-64 BCJ filter decoder" if EXPERT
|
| /freebsd-10-stable/sys/cddl/dev/dtrace/x86/ |
| D | dis_tables.c | 120 IA, enumerator 1887 /* [0,4] */ TNS("addb",IA), TS("add",IA), TSx("push",SEG), TSx("pop",SEG), 1889 /* [0,C] */ TNS("orb",IA), TS("or",IA), TSx("push",SEG), IND(dis_op0F), 1892 /* [1,4] */ TNS("adcb",IA), TS("adc",IA), TSx("push",SEG), TSx("pop",SEG), 1894 /* [1,C] */ TNS("sbbb",IA), TS("sbb",IA), TSx("push",SEG), TSx("pop",SEG), 1897 /* [2,4] */ TNS("andb",IA), TS("and",IA), TNSx("%es:",OVERRIDE), TNSx("daa",NORM), 1899 /* [2,C] */ TNS("subb",IA), TS("sub",IA), TNS("%cs:",OVERRIDE), TNSx("das",NORM), 1902 /* [3,4] */ TNS("xorb",IA), TS("xor",IA), TNSx("%ss:",OVERRIDE), TNSx("aaa",NORM), 1904 /* [3,C] */ TNS("cmpb",IA), TS("cmp",IA), TNSx("%ds:",OVERRIDE), TNSx("aas",NORM), 1938 /* [A,8] */ TNS("testb",IA), TS("test",IA), TNS("stosb",AD), TS("stos",AD), [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Target/ARM/ |
| D | ARMScheduleSwift.td | 1503 (instregex "LDM(IA|DA|DB|IB)$", "t2LDM(IA|DA|DB|IB)$", 1504 "(t|sys)LDM(IA|DA|DB|IB)$")>; 1507 "LDM(IA|DA|DB|IB)_UPD", "(t2|sys|t)LDM(IA|DA|DB|IB)_UPD")>; 1556 (instregex "STM(IB|IA|DB|DA)$", "(t2|sys|t)STM(IB|IA|DB|DA)$")>; 1558 (instregex "STM(IB|IA|DB|DA)_UPD", "(t2|sys|t)STM(IB|IA|DB|DA)_UPD", 1837 def : InstRW<[SwiftWriteVLDM], (instregex "VLDM[SD](IA|DB)$")>; 1840 (instregex "VLDM[SD](IA|DB)_UPD$")>; 1873 def : InstRW<[SwiftWriteVSTM], (instregex "VSTM[SD](IA|DB)$")>; 1876 (instregex "VSTM[SD](IA|DB)_UPD")>;
|
| /freebsd-10-stable/contrib/llvm/lib/Transforms/ObjCARC/ |
| D | ObjCARCContract.cpp | 394 InlineAsm *IA = in runOnFunction() local 399 CallInst::Create(IA, "", Inst); in runOnFunction()
|
| /freebsd-10-stable/contrib/llvm/lib/Target/Mips/ |
| D | Mips16HardFloat.cpp | 29 llvm::InlineAsm *IA = in inlineAsmOut() local 33 CallInst::Create(IA, AsmArgs, "", BB); in inlineAsmOut()
|
| /freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| D | FastISel.cpp | 564 if (const InlineAsm *IA = dyn_cast<InlineAsm>(Call->getCalledValue())) { in SelectCall() local 566 if (!IA->getConstraintString().empty()) in SelectCall() 570 if (IA->hasSideEffects()) in SelectCall() 572 if (IA->isAlignStack()) in SelectCall() 577 .addExternalSymbol(IA->getAsmString().c_str()) in SelectCall()
|
| /freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/ |
| D | PPCCTRLoops.cpp | 200 if (InlineAsm *IA = dyn_cast<InlineAsm>(CI->getCalledValue())) { in mightUseCTR() local 202 InlineAsm::ConstraintInfoVector CIV = IA->ParseConstraints(); in mightUseCTR()
|