Home
last modified time | relevance | path

Searched refs:VL (Results 1 – 25 of 48) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveDebugValues.cpp222 VarLoc VL(MI, LS); in CreateEntryLoc() local
223 assert(VL.Kind == RegisterKind); in CreateEntryLoc()
224 VL.Kind = EntryValueKind; in CreateEntryLoc()
225 VL.Expr = EntryExpr; in CreateEntryLoc()
226 VL.Loc.RegNo = Reg; in CreateEntryLoc()
227 return VL; in CreateEntryLoc()
237 VarLoc VL(MI, LS); in CreateEntryBackupLoc() local
238 assert(VL.Kind == RegisterKind); in CreateEntryBackupLoc()
239 VL.Kind = EntryValueBackupKind; in CreateEntryBackupLoc()
240 VL.Expr = EntryExpr; in CreateEntryBackupLoc()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp201 static bool allSameBlock(ArrayRef<Value *> VL) { in allSameBlock() argument
202 Instruction *I0 = dyn_cast<Instruction>(VL[0]); in allSameBlock()
206 for (int i = 1, e = VL.size(); i < e; i++) { in allSameBlock()
207 Instruction *I = dyn_cast<Instruction>(VL[i]); in allSameBlock()
219 static bool allConstant(ArrayRef<Value *> VL) { in allConstant() argument
222 for (Value *i : VL) in allConstant()
229 static bool isSplat(ArrayRef<Value *> VL) { in isSplat() argument
230 for (unsigned i = 1, e = VL.size(); i < e; ++i) in isSplat()
231 if (VL[i] != VL[0]) in isSplat()
285 isShuffle(ArrayRef<Value *> VL) { in isShuffle() argument
[all …]
DLoadStoreVectorizer.cpp285 SmallVector<Value *, 8> VL(IL.begin(), IL.end()); in propagateMetadata() local
286 propagateMetadata(I, VL); in propagateMetadata()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
DReductionRules.h152 unsigned VL = V.getLength(); in hasRegisterOptions() local
155 if (VL <= 1) in hasRegisterOptions()
160 for (unsigned i = 1; i < VL; ++i) in hasRegisterOptions()
/third_party/vk-gl-cts/modules/gles3/performance/
Des3pShaderOperatorTests.cpp1961 VL = VALUE_FLOAT_VEC34, // L for "large" in init() enumerator
2133 …{ geometricFunctionsGroup, "length", "length", { F, VL, N, N }, attrNegPos, -1, false, fa… in init()
2134 …{ geometricFunctionsGroup, "distance", "distance", { F, VL, VL, N }, attrNegPos, -1, false… in init()
2135 …{ geometricFunctionsGroup, "dot", "dot", { F, VL, VL, N }, attrNegPos, -1, false, false,… in init()
2137 …{ geometricFunctionsGroup, "normalize", "normalize", { VL, VL, N, N }, attrNegPos, -1, false… in init()
2138 …{ geometricFunctionsGroup, "faceforward", "faceforward", { VL, VL, VL, VL }, attrNegPos, -1, f… in init()
2139 …{ geometricFunctionsGroup, "reflect", "reflect", { VL, VL, VL, N }, attrNegPos, -1, false, … in init()
2140 …{ geometricFunctionsGroup, "refract", "refract", { VL, VL, VL, F }, attrNegPos, -1, false, … in init()
/third_party/vk-gl-cts/modules/gles2/performance/
Des2pShaderOperatorTests.cpp1951 VL = VALUE_FLOAT_VEC34, // L for "large" in init() enumerator
2092 …{ geometricFunctionsGroup, "length", "length", { F, VL, N, N }, attrNegPos, -1, false, fa… in init()
2093 …{ geometricFunctionsGroup, "distance", "distance", { F, VL, VL, N }, attrNegPos, -1, false… in init()
2094 …{ geometricFunctionsGroup, "dot", "dot", { F, VL, VL, N }, attrNegPos, -1, false, false,… in init()
2096 …{ geometricFunctionsGroup, "normalize", "normalize", { VL, VL, N, N }, attrNegPos, -1, false… in init()
2097 …{ geometricFunctionsGroup, "faceforward", "faceforward", { VL, VL, VL, VL }, attrNegPos, -1, f… in init()
2098 …{ geometricFunctionsGroup, "reflect", "reflect", { VL, VL, VL, N }, attrNegPos, -1, false, … in init()
2099 …{ geometricFunctionsGroup, "refract", "refract", { VL, VL, VL, F }, attrNegPos, -1, false, … in init()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DVectorUtils.cpp595 Instruction *llvm::propagateMetadata(Instruction *Inst, ArrayRef<Value *> VL) { in propagateMetadata() argument
596 Instruction *I0 = cast<Instruction>(VL[0]); in propagateMetadata()
606 for (int J = 1, E = VL.size(); MD && J != E; ++J) { in propagateMetadata()
607 const Instruction *IJ = cast<Instruction>(VL[J]); in propagateMetadata()
1157 SmallVector<Value *, 4> VL; in addMetadata() local
1158 std::transform(Members.begin(), Members.end(), std::back_inserter(VL), in addMetadata()
1160 propagateMetadata(NewInst, VL); in addMetadata()
DLoopAccessAnalysis.cpp1101 bool llvm::sortPtrAccesses(ArrayRef<Value *> VL, const DataLayout &DL, in sortPtrAccesses() argument
1105 VL, [](const Value *V) { return V->getType()->isPointerTy(); }) && in sortPtrAccesses()
1108 OffValPairs.reserve(VL.size()); in sortPtrAccesses()
1112 Value *Ptr0 = VL[0]; in sortPtrAccesses()
1117 for (auto *Ptr : VL) { in sortPtrAccesses()
1144 SortedIndices.resize(VL.size()); in sortPtrAccesses()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDominators.h69 BBDomTree::VerificationLevel VL);
71 BBPostDomTree::VerificationLevel VL);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DDominators.cpp99 DomTreeBuilder::BBDomTree::VerificationLevel VL);
102 DomTreeBuilder::BBPostDomTree::VerificationLevel VL);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Vectorize/
DSLPVectorizer.h102 bool tryToVectorizeList(ArrayRef<Value *> VL, slpvectorizer::BoUpSLP &R,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DGenericDomTree.h211 bool Verify(const DomTreeT &DT, typename DomTreeT::VerificationLevel VL);
753 bool verify(VerificationLevel VL = VerificationLevel::Full) const {
754 return DomTreeBuilder::Verify(*this, VL);
DGenericDomTreeConstruction.h1643 bool Verify(const DomTreeT &DT, typename DomTreeT::VerificationLevel VL) { in Verify() argument
1657 if (VL == DomTreeT::VerificationLevel::Basic || in Verify()
1658 VL == DomTreeT::VerificationLevel::Full) in Verify()
1661 if (VL == DomTreeT::VerificationLevel::Full) in Verify()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DLoopUtils.h341 void propagateIRFlags(Value *I, ArrayRef<Value *> VL, Value *OpValue = nullptr);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLoopUtils.cpp991 void llvm::propagateIRFlags(Value *I, ArrayRef<Value *> VL, Value *OpValue) { in propagateIRFlags() argument
995 auto *Intersection = (OpValue == nullptr) ? dyn_cast<Instruction>(VL[0]) in propagateIRFlags()
1001 for (auto *V : VL) { in propagateIRFlags()
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/
DGLX_SGIX_video_source.txt28 introduced which represents the drain node of a Video Library (VL)
DGLX_SGIX_dm_buffer.txt63 generated by the VL, compression, and other digital media libraries in
/third_party/openGLES/extensions/SGIX/
DGLX_SGIX_video_source.txt28 introduced which represents the drain node of a Video Library (VL)
DGLX_SGIX_dm_buffer.txt63 generated by the VL, compression, and other digital media libraries in
/third_party/skia/third_party/externals/libpng/contrib/tools/
Dpngcp.c314 # define VL(oname, name, type, search)\ macro
316 # define VLO(oname, name, search) VL(oname, name, OPTION, search)
360 # define VLL(name, search) VL(#name, name, LIST, search)
368 # undef VL
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DLoopAccessAnalysis.h707 bool sortPtrAccesses(ArrayRef<Value *> VL, const DataLayout &DL,
DVectorUtils.h294 Instruction *propagateMetadata(Instruction *I, ArrayRef<Value *> VL);
/third_party/mesa3d/docs/relnotes/
D19.0.4.rst112 - configure.ac: check for libdrm when using VL with X11
D10.5.0.rst107 kodi segfault since auxiliary/vl: rework the build of the VL code
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86InstrFormats.td119 def CD8VF : CD8VForm<0>; // v := VL
120 def CD8VH : CD8VForm<1>; // v := VL/2
121 def CD8VQ : CD8VForm<2>; // v := VL/4
122 def CD8VO : CD8VForm<3>; // v := VL/8

12