Home
last modified time | relevance | path

Searched refs:CPI (Results 1 – 25 of 29) sorted by relevance

12

/third_party/pcre2/pcre2/src/
Dpcre2_jit_test.c1830 #define CPI (PCRE2_JIT_COMPLETE | PCRE2_JIT_PARTIAL_SOFT | PCRE2_JIT_INVALID_UTF) macro
1886 { UDA, CPI, 4, 0, 0, 4, 4, { "\\B", NULL }, "\xf4\x8f\xbf\xbf#" },
1887 { UDA, CPI, 4, 0, 0, -1, -1, { "\\B", "\\b" }, "\xf4\xa0\x80\x80\xf4\xa0\x80\x80" },
1888 { UDA, CPI, 4, 1, 1, -1, -1, { "\\B", "\\b" }, "\xf4\x8f\xbf\xbf\xf4\x8f\xbf\xbf" },
1889 { UDA, CPI, 4, 0, 0, 4, 4, { "\\B", NULL }, "#\xef\xbf\xbf#" },
1890 { UDA, CPI, 4, 0, 0, 4, 4, { "\\B", NULL }, "#\xe0\xa0\x80#" },
1891 { UDA, CPI, 4, 0, 0, 4, 4, { "\\B", NULL }, "\xf0\x90\x80\x80#" },
1892 { UDA, CPI, 4, 0, 0, 4, 4, { "\\B", NULL }, "\xf3\xbf\xbf\xbf#" },
1893 { UDA, CPI, 4, 0, 0, -1, -1, { "\\B", "\\b" }, "\xf0\x8f\xbf\xbf\xf0\x8f\xbf\xbf" },
1894 { UDA, CPI, 4, 0, 0, -1, -1, { "\\B", "\\b" }, "\xf5\x80\x80\x80\xf5\x80\x80\x80" },
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsConstantIslandPass.cpp305 unsigned CPI; member
309 : CPEMI(cpemi), CPI(cpi), RefCount(rc) {} in CPEntry()
373 CPEntry *findConstPoolEntry(unsigned CPI, const MachineInstr *CPEMI);
389 bool decrementCPEReferenceCount(unsigned CPI, MachineInstr* CPEMI);
608 *MipsConstantIslands::findConstPoolEntry(unsigned CPI, in findConstPoolEntry() argument
610 std::vector<CPEntry> &CPEs = CPEntries[CPI]; in findConstPoolEntry()
629 unsigned CPI = CPEMI.getOperand(1).getIndex(); in getCPEAlign() local
630 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index."); in getCPEAlign()
631 return Align(MCP->getConstants()[CPI].getAlignment()); in getCPEAlign()
768 unsigned CPI = MI.getOperand(op).getIndex(); in initializeFunctionInfo() local
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DWasmEHPrepare.cpp258 auto *CPI = cast<CatchPadInst>(BB->getFirstNonPHI()); in prepareEHPads() local
260 if (CPI->getNumArgOperands() == 1 && in prepareEHPads()
261 cast<Constant>(CPI->getArgOperand(0))->isNullValue()) in prepareEHPads()
331 auto *CPI = cast<CatchPadInst>(FPI); in prepareEHPad() local
332 if (isa<ConstantTokenNone>(CPI->getCatchSwitch()->getParentPad())) in prepareEHPad()
338 OperandBundleDef("funclet", CPI)); in prepareEHPad()
DWinEHPrepare.cpp148 for (const CatchPadInst *CPI : Handlers) { in addTryBlockMapEntry() local
150 Constant *TypeInfo = cast<Constant>(CPI->getArgOperand(0)); in addTryBlockMapEntry()
155 HT.Adjectives = cast<ConstantInt>(CPI->getArgOperand(1))->getZExtValue(); in addTryBlockMapEntry()
156 HT.Handler = CPI->getParent(); in addTryBlockMapEntry()
158 dyn_cast<AllocaInst>(CPI->getArgOperand(2)->stripPointerCasts())) in addTryBlockMapEntry()
512 if (const auto *CPI = dyn_cast<CleanupPadInst>(FirstNonPHI)) in calculateClrEHStateNumbers() local
513 ParentPad = CPI->getParentPad(); in calculateClrEHStateNumbers()
DMachineFunction.cpp714 } else if (const auto *CPI = dyn_cast<CatchPadInst>(FirstI)) { in addLandingPad() local
715 for (unsigned I = CPI->getNumArgOperands(); I != 0; --I) { in addLandingPad()
716 Value *TypeInfo = CPI->getArgOperand(I - 1)->stripPointerCasts(); in addLandingPad()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMConstantIslandPass.cpp160 unsigned CPI; member
164 : CPEMI(cpemi), CPI(cpi), RefCount(rc) {} in CPEntry()
249 CPEntry *findConstPoolEntry(unsigned CPI, const MachineInstr *CPEMI);
255 bool decrementCPEReferenceCount(unsigned CPI, MachineInstr* CPEMI);
469 AFI->recordCPEClone(i, CPE.CPI); in runOnMachineFunction()
639 ARMConstantIslands::findConstPoolEntry(unsigned CPI, in findConstPoolEntry() argument
641 std::vector<CPEntry> &CPEs = CPEntries[CPI]; in findConstPoolEntry()
669 unsigned CPI = getCombinedIndex(CPEMI); in getCPEAlign() local
670 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index."); in getCPEAlign()
671 return Align(MCP->getConstants()[CPI].getAlignment()); in getCPEAlign()
[all …]
DARMAsmPrinter.cpp1195 unsigned CPI = MI->getOperand(1).getIndex(); in EmitUnwindingInstruction() local
1197 if (CPI >= MCP->getConstants().size()) in EmitUnwindingInstruction()
1198 CPI = AFI->getOriginalCPIdx(CPI); in EmitUnwindingInstruction()
1199 assert(CPI != -1U && "Invalid constpool index"); in EmitUnwindingInstruction()
1202 const MachineConstantPoolEntry &CPE = MCP->getConstants()[CPI]; in EmitUnwindingInstruction()
DARMBaseInstrInfo.cpp1646 static unsigned duplicateCPV(MachineFunction &MF, unsigned &CPI) { in duplicateCPV() argument
1650 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI]; in duplicateCPV()
1685 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment()); in duplicateCPV()
1705 unsigned CPI = Orig.getOperand(1).getIndex(); in reMaterialize() local
1706 unsigned PCLabelId = duplicateCPV(MF, CPI); in reMaterialize()
1708 .addConstantPoolIndex(CPI) in reMaterialize()
1727 unsigned CPI = I->getOperand(1).getIndex(); in duplicate() local
1728 unsigned PCLabelId = duplicateCPV(MF, CPI); in duplicate()
1729 I->getOperand(1).setIndex(CPI); in duplicate()
DARMFrameLowering.cpp2412 unsigned CPI = MCP->getConstantPoolIndex(NewCPV, 4); in adjustForSegmentedStacks() local
2416 .addConstantPoolIndex(CPI) in adjustForSegmentedStacks()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DConstantPools.cpp89 for (auto &CPI : ConstantPools) { in emitAll() local
90 MCSection *Section = CPI.first; in emitAll()
91 ConstantPool &CP = CPI.second; in emitAll()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86InstrBuilder.h223 addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI, in addConstantPoolReference() argument
227 .addConstantPoolIndex(CPI, 0, OpFlags).addReg(0); in addConstantPoolReference()
DX86InstructionSelector.cpp1445 unsigned CPI = MF.getConstantPool()->getConstantPoolIndex(CFP, Align); in materializeFP() local
1455 .addConstantPoolIndex(CPI, 0, OpFlag); in materializeFP()
1480 BuildMI(*I.getParent(), I, DbgLoc, TII.get(Opc), DstReg), CPI, PICBase, in materializeFP()
DX86FastISel.cpp3789 unsigned CPI = MCP.getConstantPoolIndex(CFP, Align); in X86MaterializeFP() local
3796 .addConstantPoolIndex(CPI, 0, OpFlag); in X86MaterializeFP()
3809 CPI, PICBase, OpFlag); in X86MaterializeFP()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DVerifier.cpp491 void visitCatchPadInst(CatchPadInst &CPI);
493 void visitCleanupPadInst(CleanupPadInst &CPI);
3637 if (auto *CPI = dyn_cast<CatchPadInst>(&I)) { in visitEHPadPredecessors() local
3639 Assert(BB->getUniquePredecessor() == CPI->getCatchSwitch()->getParent(), in visitEHPadPredecessors()
3642 CPI); in visitEHPadPredecessors()
3643 Assert(BB != CPI->getCatchSwitch()->getUnwindDest(), in visitEHPadPredecessors()
3645 CPI->getCatchSwitch(), CPI); in visitEHPadPredecessors()
3745 void Verifier::visitCatchPadInst(CatchPadInst &CPI) { in visitCatchPadInst() argument
3746 BasicBlock *BB = CPI.getParent(); in visitCatchPadInst()
3750 "CatchPadInst needs to be in a function with a personality.", &CPI); in visitCatchPadInst()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DFunctionLoweringInfo.h279 unsigned getCatchPadExceptionPointerVReg(const Value *CPI,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp1200 static bool hasExceptionPointerOrCodeUser(const CatchPadInst *CPI) { in hasExceptionPointerOrCodeUser() argument
1201 for (const User *U : CPI->users()) { in hasExceptionPointerOrCodeUser()
1216 const CatchPadInst *CPI) { in mapWasmLandingPadIndex() argument
1221 CPI->getNumArgOperands() == 1 && in mapWasmLandingPadIndex()
1222 cast<Constant>(CPI->getArgOperand(0))->isNullValue(); in mapWasmLandingPadIndex()
1226 for (const User *U : CPI->users()) { in mapWasmLandingPadIndex()
1257 if (const auto *CPI = dyn_cast<CatchPadInst>(LLVMBB->getFirstNonPHI())) { in PrepareEHLandingPad() local
1258 if (hasExceptionPointerOrCodeUser(CPI)) { in PrepareEHLandingPad()
1264 unsigned VReg = FuncInfo->getCatchPadExceptionPointerVReg(CPI, PtrRC); in PrepareEHLandingPad()
1282 if (const auto *CPI = dyn_cast<CatchPadInst>(LLVMBB->getFirstNonPHI())) in PrepareEHLandingPad() local
[all …]
DFunctionLoweringInfo.cpp526 const Value *CPI, const TargetRegisterClass *RC) { in getCatchPadExceptionPointerVReg() argument
528 auto I = CatchPadExceptionPointers.insert({CPI, 0}); in getCatchPadExceptionPointerVReg()
DSelectionDAGBuilder.h660 void visitCleanupPad(const CleanupPadInst &CPI);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp148 if (const auto *CPI = dyn_cast<CatchPadInst>(I)) { in isBlockValidForExtraction() local
149 for (const auto *U : CPI->users()) in isBlockValidForExtraction()
159 if (const auto *CPI = dyn_cast<CleanupPadInst>(I)) { in isBlockValidForExtraction() local
160 for (const auto *U : CPI->users()) in isBlockValidForExtraction()
DInlineFunction.cpp384 if (auto *CPI = dyn_cast<CatchPadInst>(EHPad)) in getUnwindDestToken() local
385 EHPad = CPI->getCatchSwitch(); in getUnwindDestToken()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSCCP.cpp625 void visitCatchSwitchInst(CatchSwitchInst &CPI) { in visitCatchSwitchInst() argument
626 markOverdefined(&CPI); in visitCatchSwitchInst()
627 visitTerminator(CPI); in visitCatchSwitchInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1792 unsigned CPI = CPSections[i].CPEs[j]; in EmitConstantPool() local
1793 MCSymbol *Sym = GetCPISymbol(CPI); in EmitConstantPool()
1809 MachineConstantPoolEntry CPE = CP[CPI]; in EmitConstantPool()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstrTypes.h2161 FuncletPadInst(const FuncletPadInst &CPI);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64FastISel.cpp441 unsigned CPI = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align); in materializeFP() local
444 ADRPReg).addConstantPoolIndex(CPI, 0, AArch64II::MO_PAGE); in materializeFP()
450 .addConstantPoolIndex(CPI, 0, AArch64II::MO_PAGEOFF | AArch64II::MO_NC); in materializeFP()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/
DAVRInstrInfo.td911 // CPI Rd, K

12