Home
last modified time | relevance | path

Searched refs:Hint (Results 1 - 25 of 40) sorted by relevance

12

/third_party/mesa3d/src/mesa/main/
H A Dhint.c56 if (ctx->Hint.Fog == mode) in _mesa_Hint()
59 ctx->Hint.Fog = mode; in _mesa_Hint()
64 if (ctx->Hint.LineSmooth == mode) in _mesa_Hint()
67 ctx->Hint.LineSmooth = mode; in _mesa_Hint()
72 if (ctx->Hint.PerspectiveCorrection == mode) in _mesa_Hint()
75 ctx->Hint.PerspectiveCorrection = mode; in _mesa_Hint()
80 if (ctx->Hint.PointSmooth == mode) in _mesa_Hint()
83 ctx->Hint.PointSmooth = mode; in _mesa_Hint()
88 if (ctx->Hint.PolygonSmooth == mode) in _mesa_Hint()
91 ctx->Hint in _mesa_Hint()
[all...]
H A Dattrib.c218 memcpy(&head->Hint, &ctx->Hint, sizeof(head->Hint)); in _mesa_PushAttrib()
870 TEST_AND_CALL1_SEL(Hint.PerspectiveCorrection, Hint, GL_PERSPECTIVE_CORRECTION_HINT); in _mesa_PopAttrib()
871 TEST_AND_CALL1_SEL(Hint.PointSmooth, Hint, GL_POINT_SMOOTH_HINT); in _mesa_PopAttrib()
872 TEST_AND_CALL1_SEL(Hint.LineSmooth, Hint, GL_LINE_SMOOTH_HINT); in _mesa_PopAttrib()
873 TEST_AND_CALL1_SEL(Hint in _mesa_PopAttrib()
[all...]
H A Dcontext.c1245 dst->Hint = src->Hint; in _mesa_copy_context()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Vectorize/
H A DLoopVectorizationLegality.h49 /// Hint - associates name and validation with the hint value.
50 struct Hint { struct in llvm::LoopVectorizeHints
55 Hint(const char *Name, unsigned Value, HintKind Kind) in Hint() function
62 Hint Width;
65 Hint Interleave;
68 Hint Force;
71 Hint IsVectorized;
74 Hint Predicate;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DVirtRegMap.cpp102 Register Hint = MRI->getSimpleHint(VirtReg); in hasPreferredPhys() local
103 if (!Hint.isValid()) in hasPreferredPhys()
105 if (Hint.isVirtual()) in hasPreferredPhys()
106 Hint = getPhys(Hint); in hasPreferredPhys()
107 return getPhys(VirtReg) == Hint; in hasPreferredPhys()
111 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(VirtReg); in hasKnownPreference() local
112 if (Register::isPhysicalRegister(Hint.second)) in hasKnownPreference()
114 if (Register::isVirtualRegister(Hint.second)) in hasKnownPreference()
115 return hasPhys(Hint in hasKnownPreference()
[all...]
H A DCalcSpillWeights.cpp254 volatile float hweight = Hint[hint] += weight; in weightCalcHelper()
260 Hint.clear(); in weightCalcHelper()
269 for (auto &Hint : CopyHints) { in weightCalcHelper()
270 if (!HintedRegs.insert(Hint.Reg).second || in weightCalcHelper()
271 (TargetHint.first != 0 && Hint.Reg == TargetHint.second)) in weightCalcHelper()
274 mri.addRegAllocationHint(li.reg, Hint.Reg); in weightCalcHelper()
H A DRegAllocFast.cpp211 void allocVirtReg(MachineInstr &MI, LiveReg &LR, Register Hint);
214 Register Hint);
216 Register Hint);
779 Register VirtReg, Register Hint) { in defineVirtReg()
786 if ((!Hint || !Hint.isPhysical()) && in defineVirtReg()
791 Hint = UseMI.getOperand(0).getReg(); in defineVirtReg()
793 allocVirtReg(MI, *LRI, Hint); in defineVirtReg()
812 Register Hint) { in reloadVirtReg()
819 allocVirtReg(MI, *LRI, Hint); in reloadVirtReg()
778 defineVirtReg(MachineInstr &MI, unsigned OpNum, Register VirtReg, Register Hint) defineVirtReg() argument
809 reloadVirtReg(MachineInstr &MI, unsigned OpNum, Register VirtReg, Register Hint) reloadVirtReg() argument
[all...]
H A DRegAllocGreedy.cpp778 if (unsigned Hint = MRI->getSimpleHint(VirtReg.reg)) in tryAssign()
779 if (Order.isHint(Hint)) { in tryAssign()
780 LLVM_DEBUG(dbgs() << "missed hint " << printReg(Hint, TRI) << '\n'); in tryAssign()
783 if (canEvictInterference(VirtReg, Hint, true, MaxCost, FixedRegisters)) { in tryAssign()
784 evictInterference(VirtReg, Hint, NewVRegs); in tryAssign()
785 return Hint; in tryAssign()
3070 unsigned Hint = MRI->getSimpleHint(VirtReg.reg);
3076 if (Hint && Hint != PhysReg)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp308 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg); in getRegAllocationHints() local
311 switch (Hint.first) { in getRegAllocationHints()
326 unsigned Paired = Hint.second; in getRegAllocationHints()
358 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg); in updateRegAllocHint() local
359 if ((Hint.first == (unsigned)ARMRI::RegPairOdd || in updateRegAllocHint()
360 Hint.first == (unsigned)ARMRI::RegPairEven) && in updateRegAllocHint()
361 Register::isVirtualRegister(Hint.second)) { in updateRegAllocHint()
366 unsigned OtherReg = Hint.second; in updateRegAllocHint()
367 Hint = MRI->getRegAllocationHint(OtherReg); in updateRegAllocHint()
369 if (Hint in updateRegAllocHint()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCPredicates.h87 inline Predicate getPredicate(unsigned Condition, unsigned Hint) { in getPredicate() argument
89 (Hint & BR_HINT_MASK)); in getPredicate()
/third_party/typescript/tests/baselines/reference/
H A DinferFromGenericFunctionReturnTypes3.js61 export const Hint = 4;
242 DiagnosticSeverity.Hint = 4;
320 const Hint = 4;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DSourceMgr.h266 void addFixIt(const SMFixIt &Hint) { in addFixIt() argument
267 FixIts.push_back(Hint); in addFixIt()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DCalcSpillWeights.h56 DenseMap<unsigned, float> Hint; member in llvm::VirtRegAuxInfo
H A DMachineRegisterInfo.h804 std::pair<unsigned, unsigned> Hint = getRegAllocationHint(VReg); in getSimpleHint() local
805 return Hint.first ? 0 : Hint.second; in getSimpleHint()
/third_party/node/deps/v8/src/codegen/arm/
H A Dconstants-arm.h396 enum Hint { no_hint }; enum
399 inline Hint NegateHint(Hint ignored) { return no_hint; } in NegateHint()
/third_party/skia/third_party/externals/angle2/src/tests/gles1_conformance_tests/
H A DPrimtestTests.cpp97 TEST_P(GLES1PrimtestTest, Hint) in TEST_P()
H A DCovglTests.cpp232 TEST_P(GLES1CovglTest, Hint) in TEST_P()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DSourceMgr.h296 void addFixIt(const SMFixIt &Hint) { in addFixIt() argument
297 FixIts.push_back(Hint); in addFixIt()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/Disassembler/
H A DMipsDisassembler.cpp1598 unsigned Hint = fieldFromInstruction(Insn, 16, 5); in DecodeCacheOp() local
1605 Inst.addOperand(MCOperand::createImm(Hint)); in DecodeCacheOp()
1616 unsigned Hint = fieldFromInstruction(Insn, 21, 5); in DecodeCacheOpMM() local
1622 Inst.addOperand(MCOperand::createImm(Hint)); in DecodeCacheOpMM()
1633 unsigned Hint = fieldFromInstruction(Insn, 21, 5); in DecodePrefeOpMM() local
1639 Inst.addOperand(MCOperand::createImm(Hint)); in DecodePrefeOpMM()
1649 unsigned Hint = fieldFromInstruction(Insn, 16, 5); in DecodeCacheeOp_CacheOpR6() local
1656 Inst.addOperand(MCOperand::createImm(Hint)); in DecodeCacheeOp_CacheOpR6()
/third_party/node/deps/v8/src/codegen/loong64/
H A Dconstants-loong64.h692 enum Hint { no_hint = 0 };
694 inline Hint NegateHint(Hint hint) { return no_hint; }
/third_party/node/deps/v8/src/compiler/
H A Dcommon-operator.cc644 #define CACHED_BRANCH(Hint) \
645 BranchOperator<BranchHint::k##Hint> kBranch##Hint##Operator;
934 #define CACHED_BRANCH(Hint) \ in Branch()
935 if (hint == BranchHint::k##Hint) { \ in Branch()
936 return &cache_.kBranch##Hint##Operator; \ in Branch()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DScalarEvolution.h1430 const ConstantRange &setRange(const SCEV *S, RangeSignHint Hint, in setRange() argument
1433 Hint == HINT_RANGE_UNSIGNED ? UnsignedRanges : SignedRanges; in setRange()
1444 const ConstantRange &getRangeRef(const SCEV *S, RangeSignHint Hint);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp651 static Instruction *GetLoopInvariantInsertPosition(Loop *L, Instruction *Hint) { in GetLoopInvariantInsertPosition() argument
655 return Hint; in GetLoopInvariantInsertPosition()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp53 bool LoopVectorizeHints::Hint::validate(unsigned Val) { in validate()
227 Hint *Hints[] = {&Width, &Interleave, &Force, &IsVectorized, &Predicate}; in setHint()
/third_party/node/deps/v8/src/codegen/mips64/
H A Dconstants-mips64.h1235 enum Hint { no_hint = 0 };
1237 inline Hint NegateHint(Hint hint) { return no_hint; }

Completed in 36 milliseconds

12