/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86InstrFPStack.td | 105 // The second instruction is defined with FPI, which is the actual instruction 112 // a pattern) and the FPI instruction should have emission info (e.g. opcode 163 def _F32m : FPI<0xD8, fp, (outs), (ins f32mem:$src), 167 def _F64m : FPI<0xDC, fp, (outs), (ins f64mem:$src), 196 def _FI16m : FPI<0xDE, fp, (outs), (ins i16mem:$src), 200 def _FI32m : FPI<0xDA, fp, (outs), (ins i32mem:$src), 218 : FPI<o, AddRegFrm, (outs), (ins RST:$op), asm>, D8; 220 : FPI<o, AddRegFrm, (outs), (ins RST:$op), asm>, DC; 222 : FPI<o, AddRegFrm, (outs), (ins RST:$op), asm>, DE; 257 def _F : FPI<opcode, RawFrm, (outs), (ins), asmstring>, D9; [all …]
|
D | X86InstrFormats.td | 229 // FPI - Floating Point Instruction template. 230 class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
|
/external/llvm/lib/Target/X86/ |
D | X86InstrFPStack.td | 107 // The second instruction is defined with FPI, which is the actual instruction 114 // a pattern) and the FPI instruction should have emission info (e.g. opcode 179 def _F32m : FPI<0xD8, fp, (outs), (ins f32mem:$src), 182 def _F64m : FPI<0xDC, fp, (outs), (ins f64mem:$src), 228 def _FI16m : FPI<0xDE, fp, (outs), (ins i16mem:$src), 231 def _FI32m : FPI<0xDA, fp, (outs), (ins i32mem:$src), 258 : FPI<0xD8, fp, (outs), (ins RST:$op), asm>; 260 : FPI<0xDC, fp, (outs), (ins RST:$op), asm>; 262 : FPI<0xDE, fp, (outs), (ins RST:$op), asm>; 303 def _F : FPI<0xD9, fp, (outs), (ins), asmstring>; [all …]
|
D | X86InstrFormats.td | 394 // FPI - Floating Point Instruction template. 395 class FPI<bits<8> o, Format F, dag outs, dag ins, string asm,
|
/external/llvm/lib/IR/ |
D | Verifier.cpp | 434 void visitFuncletPadInst(FuncletPadInst &FPI); 3171 if (auto *FPI = dyn_cast<FuncletPadInst>(EHPad)) in getParentPad() local 3172 return FPI->getParentPad(); in getParentPad() 3340 void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) { in visitFuncletPadInst() argument 3343 SmallVector<FuncletPadInst *, 8> Worklist({&FPI}); in visitFuncletPadInst() 3398 if (ExitedPad == &FPI) { in visitFuncletPadInst() 3403 UnresolvedAncestorPad = &FPI; in visitFuncletPadInst() 3418 UnwindPad = ConstantTokenNone::get(FPI.getContext()); in visitFuncletPadInst() 3420 UnresolvedAncestorPad = &FPI; in visitFuncletPadInst() 3430 &FPI, U, FirstUser); in visitFuncletPadInst() [all …]
|
D | Instructions.cpp | 1087 FuncletPadInst::FuncletPadInst(const FuncletPadInst &FPI) in FuncletPadInst() argument 1088 : Instruction(FPI.getType(), FPI.getOpcode(), in FuncletPadInst() 1090 FPI.getNumOperands(), in FuncletPadInst() 1091 FPI.getNumOperands()) { in FuncletPadInst() 1092 std::copy(FPI.op_begin(), FPI.op_end(), op_begin()); in FuncletPadInst() 1093 setParentPad(FPI.getParentPad()); in FuncletPadInst()
|
D | AsmWriter.cpp | 2975 } else if (const auto *FPI = dyn_cast<FuncletPadInst>(&I)) { in printInstruction() local 2977 writeOperand(FPI->getParentPad(), /*PrintType=*/false); in printInstruction() 2979 for (unsigned Op = 0, NumOps = FPI->getNumArgOperands(); Op < NumOps; in printInstruction() 2983 writeOperand(FPI->getArgOperand(Op), /*PrintType=*/true); in printInstruction()
|
/external/libxml2/os400/ |
D | xmllint.cmd | 27 PROMPT('DTD locator is URL/FPI')
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 184 if (auto *FPI = dyn_cast<FuncletPadInst>(EHPad)) in getParentPad() local 185 return FPI->getParentPad(); in getParentPad() 1843 auto *FPI = cast<FuncletPadInst>(I); in InlineFunction() local 1844 if (isa<ConstantTokenNone>(FPI->getParentPad())) in InlineFunction() 1845 FPI->setParentPad(CallSiteEHPad); in InlineFunction()
|
/external/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 498 void visitFuncletPadInst(FuncletPadInst &FPI) { in visitFuncletPadInst() argument 499 markAnythingOverdefined(&FPI); in visitFuncletPadInst()
|