Home
last modified time | relevance | path

Searched refs:RI (Results 1 – 25 of 306) sorted by relevance

12345678910>>...13

/third_party/cmsis/CMSIS/DSP/Source/QuaternionMathFunctions/
Darm_rotation2quaternion_f32.c32 #define RI(x,y) r[(3*(x) + (y))] macro
174 float32_t trace = RI(0,0) + RI(1,1) + RI(2,2); in arm_rotation2quaternion_f32()
186 q[1] = (RI(2,1) - RI(1,2)) * s; in arm_rotation2quaternion_f32()
187 q[2] = (RI(0,2) - RI(2,0)) * s; in arm_rotation2quaternion_f32()
188 q[3] = (RI(1,0) - RI(0,1)) * s; in arm_rotation2quaternion_f32()
190 else if ((RI(0,0) > RI(1,1)) && (RI(0,0) > RI(2,2)) ) in arm_rotation2quaternion_f32()
192 doubler = sqrtf(1.0 + RI(0,0) - RI(1,1) - RI(2,2)) * 2; // invs=4*qx in arm_rotation2quaternion_f32()
194 q[0] = (RI(2,1) - RI(1,2)) * s; in arm_rotation2quaternion_f32()
196 q[2] = (RI(0,1) + RI(1,0)) * s; in arm_rotation2quaternion_f32()
197 q[3] = (RI(0,2) + RI(2,0)) * s; in arm_rotation2quaternion_f32()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DMachO_x86_64.cpp33 getRelocationKind(const MachO::relocation_info &RI) { in getRelocationKind() argument
34 switch (RI.r_type) { in getRelocationKind()
36 if (!RI.r_pcrel) { in getRelocationKind()
37 if (RI.r_length == 3) in getRelocationKind()
38 return RI.r_extern ? Pointer64 : Pointer64Anon; in getRelocationKind()
39 else if (RI.r_extern && RI.r_length == 2) in getRelocationKind()
44 if (RI.r_pcrel && RI.r_length == 2) in getRelocationKind()
45 return RI.r_extern ? PCRel32 : PCRel32Anon; in getRelocationKind()
48 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
52 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
[all …]
DMachO_arm64.cpp34 getRelocationKind(const MachO::relocation_info &RI) { in getRelocationKind() argument
35 switch (RI.r_type) { in getRelocationKind()
37 if (!RI.r_pcrel) { in getRelocationKind()
38 if (RI.r_length == 3) in getRelocationKind()
39 return RI.r_extern ? Pointer64 : Pointer64Anon; in getRelocationKind()
40 else if (RI.r_length == 2) in getRelocationKind()
48 if (!RI.r_pcrel && RI.r_extern) { in getRelocationKind()
49 if (RI.r_length == 2) in getRelocationKind()
51 else if (RI.r_length == 3) in getRelocationKind()
56 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DDwarfEHPrepare.cpp55 Value *GetExceptionObject(ResumeInst *RI);
103 Value *DwarfEHPrepare::GetExceptionObject(ResumeInst *RI) { in GetExceptionObject() argument
104 Value *V = RI->getOperand(0); in GetExceptionObject()
124 ExnObj = ExtractValueInst::Create(RI->getOperand(0), 0, "exn.obj", RI); in GetExceptionObject()
126 RI->eraseFromParent(); in GetExceptionObject()
147 for (auto *RI : Resumes) { in pruneUnreachableResumes() local
149 if (isPotentiallyReachable(LP, RI, nullptr, DT)) { in pruneUnreachableResumes()
168 ResumeInst *RI = Resumes[I]; in pruneUnreachableResumes() local
170 Resumes[ResumesLeft++] = RI; in pruneUnreachableResumes()
172 BasicBlock *BB = RI->getParent(); in pruneUnreachableResumes()
[all …]
DMachineRegionInfo.cpp38 MachineRegionInfo* RI, in MachineRegion() argument
40 RegionBase<RegionTraits<MachineFunction>>(Entry, Exit, RI, DT, Parent) {} in MachineRegion()
91 RI.recalculate(F, DT, PDT, DF); in runOnMachineFunction()
93 LLVM_DEBUG(RI.dump()); in runOnMachineFunction()
99 RI.releaseMemory(); in releaseMemory()
107 RI.verifyAnalysis(); in verifyAnalysis()
119 RI.print(OS); in print()
124 RI.dump(); in dump()
DGCMetadata.cpp113 for (GCFunctionInfo::roots_iterator RI = FD->roots_begin(), in runOnFunction() local
115 RI != RE; ++RI) in runOnFunction()
116 OS << "\t" << RI->Num << "\t" << RI->StackOffset << "[sp]\n"; in runOnFunction()
125 for (GCFunctionInfo::live_iterator RI = FD->live_begin(PI), in runOnFunction() local
128 OS << " " << RI->Num; in runOnFunction()
129 if (++RI == RE) in runOnFunction()
DGCRootLowering.cpp294 for (GCFunctionInfo::roots_iterator RI = FI->roots_begin(); in FindStackOffsets() local
295 RI != FI->roots_end();) { in FindStackOffsets()
297 if (MF.getFrameInfo().isDeadObjectIndex(RI->Num)) { in FindStackOffsets()
298 RI = FI->removeStackRoot(RI); in FindStackOffsets()
302 RI->StackOffset = TFI->getFrameIndexReference(MF, RI->Num, FrameReg); in FindStackOffsets()
303 ++RI; in FindStackOffsets()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineRegionInfo.h64 MachineRegionInfo *RI, MachineDominatorTree *DT,
86 MachineRegionInfo RI;
94 MachineRegionInfo &getRegionInfo() { return RI; }
96 const MachineRegionInfo &getRegionInfo() const { return RI; }
142 static NodeRef getEntryNode(MachineRegionInfo *RI) {
144 RI->getTopLevelRegion());
147 static nodes_iterator nodes_begin(MachineRegionInfo *RI) {
148 return nodes_iterator::begin(getEntryNode(RI));
151 static nodes_iterator nodes_end(MachineRegionInfo *RI) {
152 return nodes_iterator::end(getEntryNode(RI));
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DControlHeightReduction.cpp178 CHRScope(RegInfo RI) : BranchInsertPoint(nullptr) { in CHRScope() argument
179 assert(RI.R && "Null RegionIn"); in CHRScope()
180 RegInfos.push_back(RI); in CHRScope()
224 for (RegInfo &RI : Next->RegInfos) in append()
225 RegInfos.push_back(RI); in append()
233 for (RegInfo &RI : RegInfos) in addSub()
234 if (RI.R == SubIn->getParentRegion()) { in addSub()
250 [&Boundary](const RegInfo& RI) { in split() argument
251 return Boundary == RI.R; in split()
260 for (RegInfo &RI : TailRegInfos) in split()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/
DLanaiDelaySlotFiller.cpp107 MachineBasicBlock::reverse_instr_iterator RI = ++I.getReverse(); in runOnMachineBasicBlock() local
108 assert(RI->getOpcode() == Lanai::LDW_RI && RI->getOperand(0).isReg() && in runOnMachineBasicBlock()
109 RI->getOperand(0).getReg() == Lanai::FP && in runOnMachineBasicBlock()
110 RI->getOperand(1).isReg() && in runOnMachineBasicBlock()
111 RI->getOperand(1).getReg() == Lanai::FP && in runOnMachineBasicBlock()
112 RI->getOperand(2).isImm() && RI->getOperand(2).getImm() == -8); in runOnMachineBasicBlock()
113 ++RI; in runOnMachineBasicBlock()
114 assert(RI->getOpcode() == Lanai::ADD_I_LO && in runOnMachineBasicBlock()
115 RI->getOperand(0).isReg() && in runOnMachineBasicBlock()
116 RI->getOperand(0).getReg() == Lanai::SP && in runOnMachineBasicBlock()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DRegionPrinter.cpp120 for (const auto &RI : R) in printRegionCluster() local
121 printRegionCluster(*RI, GW, depth + 1); in printRegionCluster()
123 const RegionInfo &RI = *static_cast<const RegionInfo*>(R.getRegionInfo()); in printRegionCluster() local
126 if (RI.getRegionFor(BB) == &R) in printRegionCluster()
128 << static_cast<const void*>(RI.getTopLevelRegion()->getBBNode(BB)) in printRegionCluster()
231 static void viewRegionInfo(RegionInfo *RI, bool ShortNames) { in viewRegionInfo() argument
232 assert(RI && "Argument must be non-null"); in viewRegionInfo()
234 llvm::Function *F = RI->getTopLevelRegion()->getEntry()->getParent(); in viewRegionInfo()
235 std::string GraphName = DOTGraphTraits<RegionInfo *>::getGraphName(RI); in viewRegionInfo()
237 llvm::ViewGraph(RI, "reg", ShortNames, in viewRegionInfo()
[all …]
DRegionInfo.cpp65 RegionInfo* RI, in Region() argument
67 RegionBase<RegionTraits<Function>>(Entry, Exit, RI, DT, Parent) { in Region()
133 RI.recalculate(F, DT, PDT, DF); in runOnFunction()
138 RI.releaseMemory(); in releaseMemory()
142 RI.verifyAnalysis(); in verifyAnalysis()
153 RI.print(OS); in print()
158 RI.dump(); in dump()
191 RegionInfo RI; in run() local
196 RI.recalculate(F, DT, PDT, DF); in run()
197 return RI; in run()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCInstrDesc.cpp33 const MCRegisterInfo &RI) const { in mayAffectControlFlow()
36 unsigned PC = RI.getProgramCounter(); in mayAffectControlFlow()
39 if (hasDefOfPhysReg(MI, PC, RI)) in mayAffectControlFlow()
54 const MCRegisterInfo &RI) const { in hasDefOfPhysReg()
57 RI.isSubRegisterEq(Reg, MI.getOperand(i).getReg())) in hasDefOfPhysReg()
62 RI.isSubRegisterEq(Reg, MI.getOperand(i).getReg())) in hasDefOfPhysReg()
64 return hasImplicitDefOfPhysReg(Reg, &RI); in hasDefOfPhysReg()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/
DObject.h182 void LLVMDisposeRelocationIterator(LLVMRelocationIteratorRef RI);
184 LLVMRelocationIteratorRef RI);
185 void LLVMMoveToNextRelocation(LLVMRelocationIteratorRef RI);
194 uint64_t LLVMGetRelocationOffset(LLVMRelocationIteratorRef RI);
195 LLVMSymbolIteratorRef LLVMGetRelocationSymbol(LLVMRelocationIteratorRef RI);
196 uint64_t LLVMGetRelocationType(LLVMRelocationIteratorRef RI);
199 const char *LLVMGetRelocationTypeName(LLVMRelocationIteratorRef RI);
200 const char *LLVMGetRelocationValueString(LLVMRelocationIteratorRef RI);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIInstrInfo.cpp88 RI(ST), ST(ST) { in SIInstrInfo()
489 : RI.getPhysRegClass(Reg); in shouldClusterMemOps()
491 return (NumLoads * (RI.getRegSizeInBits(*DstRC) / 8)) <= LoadClusterThreshold; in shouldClusterMemOps()
535 const TargetRegisterClass *RC = RI.getPhysRegClass(DestReg); in copyPhysReg()
624 if (!Def->definesRegister(SrcReg, &RI)) in copyPhysReg()
637 if (I->modifiesRegister(DefOp.getReg(), &RI)) in copyPhysReg()
657 unsigned MaxVGPRs = RI.getRegPressureLimit(&AMDGPU::VGPR_32RegClass, in copyPhysReg()
672 if (!Tmp2 || RI.getHWRegIndex(Tmp2) >= MaxVGPRs) in copyPhysReg()
690 if (RI.isSGPRClass(RC)) { in copyPhysReg()
692 if (!(RI.getRegSizeInBits(*RC) % 64)) { in copyPhysReg()
[all …]
DAMDGPURewriteOutArguments.cpp267 if (ReturnInst *RI = dyn_cast<ReturnInst>(&BB.back())) in runOnFunction() local
268 Returns.push_back(RI); in runOnFunction()
303 for (ReturnInst *RI : Returns) { in runOnFunction()
304 BasicBlock *BB = RI->getParent(); in runOnFunction()
307 true, BB->end(), BB, RI); in runOnFunction()
314 ReplaceableStores.emplace_back(RI, SI); in runOnFunction()
386 ReturnInst *RI = Replacement.first; in runOnFunction() local
387 IRBuilder<> B(RI); in runOnFunction()
388 B.SetCurrentDebugLocation(RI->getDebugLoc()); in runOnFunction()
393 Value *RetVal = RI->getReturnValue(); in runOnFunction()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DRegionIterator.h325 static NodeRef getEntryNode(RegionInfo *RI) {
326 return GraphTraits<FlatIt<Region*>>::getEntryNode(RI->getTopLevelRegion());
329 static nodes_iterator nodes_begin(RegionInfo* RI) {
330 return nodes_iterator::begin(getEntryNode(RI));
333 static nodes_iterator nodes_end(RegionInfo *RI) {
334 return nodes_iterator::end(getEntryNode(RI));
344 static NodeRef getEntryNode(RegionInfoPass *RI) {
345 return GraphTraits<RegionInfo*>::getEntryNode(&RI->getRegionInfo());
348 static nodes_iterator nodes_begin(RegionInfoPass* RI) {
349 return GraphTraits<RegionInfo*>::nodes_begin(&RI->getRegionInfo());
[all …]
/third_party/icu/icu4c/source/test/testdata/
DGraphemeBreakTest.txt35 ÷ 0020 ÷ 1F1E6 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]
36 …0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]
73 …E6 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]
74 …0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]
111 ÷ 000A ÷ 1F1E6 ÷ # ÷ [0.2] <LINE FEED (LF)> (LF) ÷ [4.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷…
112 …0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]
149 …6 ÷ # ÷ [0.2] <START OF HEADING> (Control) ÷ [4.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]
150 …0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]
187 … [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]
188 …0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonAsmPrinter.cpp67 const MCRegisterInfo *RI) { in getHexagonRegisterPair() argument
69 MCSuperRegIterator SR(Reg, RI, false); in getHexagonRegisterPair()
268 const MCRegisterInfo *RI = OutStreamer->getContext().getRegisterInfo(); in HexagonProcessInstruction() local
376 unsigned Reg = RI->getEncodingValue(Rt.getReg()); in HexagonProcessInstruction()
381 Rt.setReg(getHexagonRegisterPair(Rt.getReg(), RI)); in HexagonProcessInstruction()
387 unsigned Reg = RI->getEncodingValue(Rt.getReg()); in HexagonProcessInstruction()
392 Rt.setReg(getHexagonRegisterPair(Rt.getReg(), RI)); in HexagonProcessInstruction()
399 unsigned Reg = RI->getEncodingValue(Rt.getReg()); in HexagonProcessInstruction()
404 Rt.setReg(getHexagonRegisterPair(Rt.getReg(), RI)); in HexagonProcessInstruction()
411 unsigned Reg = RI->getEncodingValue(Rs.getReg()); in HexagonProcessInstruction()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCChecker.cpp79 for (MCRegAliasIterator SRI(R, &RI, !MCSubRegIterator(R, &RI).isValid()); in initReg()
81 if (!MCSubRegIterator(*SRI, &RI).isValid()) in initReg()
138 for (MCRegAliasIterator SRI(R, &RI, !MCSubRegIterator(R, &RI).isValid()); in init()
140 if (MCSubRegIterator(*SRI, &RI).isValid()) in init()
194 : Context(Context), MCB(mcb), RI(ri), MCII(MCII), STI(STI), in HexagonMCChecker()
202 : Context(Other.Context), MCB(Other.MCB), RI(Other.RI), MCII(Other.MCII), in HexagonMCChecker()
503 Twine(RI.getName(Register)) + "'"); in checkRegistersReadOnly()
532 for (auto K = MCRegAliasIterator(I.getOperand(J).getReg(), &RI, true); in registerProducer()
557 reportWarning("Register `" + Twine(RI.getName(Register)) + in checkRegisterCurDefs()
582 unsigned BadR = RI.isSubRegister(Hexagon::USR, R) ? UsrR : R; in checkRegisters()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DObject.cpp330 uint64_t LLVMGetRelocationOffset(LLVMRelocationIteratorRef RI) { in LLVMGetRelocationOffset() argument
331 return (*unwrap(RI))->getOffset(); in LLVMGetRelocationOffset()
334 LLVMSymbolIteratorRef LLVMGetRelocationSymbol(LLVMRelocationIteratorRef RI) { in LLVMGetRelocationSymbol() argument
335 symbol_iterator ret = (*unwrap(RI))->getSymbol(); in LLVMGetRelocationSymbol()
339 uint64_t LLVMGetRelocationType(LLVMRelocationIteratorRef RI) { in LLVMGetRelocationType() argument
340 return (*unwrap(RI))->getType(); in LLVMGetRelocationType()
344 const char *LLVMGetRelocationTypeName(LLVMRelocationIteratorRef RI) { in LLVMGetRelocationTypeName() argument
346 (*unwrap(RI))->getTypeName(ret); in LLVMGetRelocationTypeName()
353 const char *LLVMGetRelocationValueString(LLVMRelocationIteratorRef RI) { in LLVMGetRelocationValueString() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
Dsimple_ilist.h274 iterator RI = RHS.begin(), RE = RHS.end(); in merge() local
276 if (comp(*RI, *LI)) { in merge()
278 iterator RunStart = RI++; in merge()
279 RI = std::find_if(RI, RE, [&](reference RV) { return !comp(RV, *LI); }); in merge()
280 splice(LI, RHS, RunStart, RI); in merge()
281 if (RI == RE) in merge()
287 splice(LE, RHS, RI, RE); in merge()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Dsimple_ilist.h270 iterator RI = RHS.begin(), RE = RHS.end(); in merge() local
272 if (comp(*RI, *LI)) { in merge()
274 iterator RunStart = RI++; in merge()
275 RI = std::find_if(RI, RE, [&](reference RV) { return !comp(RV, *LI); }); in merge()
276 splice(LI, RHS, RunStart, RI); in merge()
277 if (RI == RE) in merge()
283 splice(LE, RHS, RI, RE); in merge()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVFrameLowering.cpp45 const RISCVRegisterInfo *RI = STI.getRegisterInfo(); in determineFrameLayout() local
52 if (RI->needsStackRealignment(MF)) { in determineFrameLayout()
112 const RISCVRegisterInfo *RI = STI.getRegisterInfo(); in emitPrologue() local
170 nullptr, RI->getDwarfRegNum(Reg, true), Offset)); in emitPrologue()
186 nullptr, RI->getDwarfRegNum(FPReg, true), 0)); in emitPrologue()
212 const RISCVRegisterInfo *RI = STI.getRegisterInfo(); in emitPrologue() local
213 if (RI->needsStackRealignment(MF)) { in emitPrologue()
247 const RISCVRegisterInfo *RI = STI.getRegisterInfo(); in emitEpilogue() local
280 if (RI->needsStackRealignment(MF) || MFI.hasVarSizedObjects()) { in emitEpilogue()
307 const TargetRegisterInfo *RI = MF.getSubtarget().getRegisterInfo(); in getFrameIndexReference() local
[all …]
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/text/
Dword_breaker.dart290 // regional indicator (RI) symbols if there is an odd number of RI
292 // WB15: sot (RI RI)* RI × RI
295 // WB16: [^RI] (RI RI)* RI × RI

12345678910>>...13