Home
last modified time | relevance | path

Searched refs:isFixed (Results 1 – 25 of 36) sorted by relevance

12

/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/
DFormat.h44 bool isFixed,
104 bool isFixed; member
142 bool isFixed, in Format() argument
170 isFixed(isFixed), in Format()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
DFormat.h44 bool isFixed,
108 bool isFixed; member
148 bool isFixed, in Format() argument
178 isFixed(isFixed), in Format()
/third_party/mesa3d/src/amd/compiler/
Daco_live_var_analysis.cpp121 if ((definition.isFixed() || definition.hasHint()) && definition.physReg() == vcc) in process_live_temps_per_block()
150 if (operand.isFixed() && operand.physReg() == vcc) in process_live_temps_per_block()
187 assert(insn->definitions[0].isFixed() && insn->definitions[0].physReg() == exec); in process_live_temps_per_block()
192 if ((definition.isFixed() || definition.hasHint()) && definition.physReg() == vcc) in process_live_temps_per_block()
243 if (operand.isFixed() && operand.physReg() == vcc) in process_live_temps_per_block()
Daco_opt_value_numbering.cpp137 if (a->operands[i].isFixed()) { in operator ()()
138 if (!b->operands[i].isFixed()) in operator ()()
153 if (a->definitions[i].isFixed()) { in operator ()()
154 if (!b->definitions[i].isFixed()) in operator ()()
384 if (copy_instr && !instr->definitions[0].isFixed() && instr->operands[0].isTemp() && in process_block()
Daco_validate.cpp163 check((instr->definitions[0].isFixed() && instr->definitions[0].physReg() == vcc) || in validate_ir()
195 check(instr->operands[2].isFixed() && instr->operands[2].physReg() == vcc, in validate_ir()
199 check(instr->definitions[1].isFixed() && instr->definitions[1].physReg() == vcc, in validate_ir()
232 instr->operands[i].regClass().is_subdword() && !instr->operands[i].isFixed())) in validate_ir()
235 if (instr->definitions[0].regClass().is_subdword() && !instr->definitions[0].isFixed()) in validate_ir()
250 check(instr->operands[i].isFixed() || instr->operands[i].isTemp() || in validate_ir()
474 check(instr->definitions.size() >= 2 && instr->definitions[1].isFixed() && in validate_ir()
517 check((instr->operands[0].isFixed() && !instr->operands[0].isConstant()) || in validate_ir()
871 if (!op.isFixed()) in validate_ra()
900 if (!def.isFixed()) in validate_ra()
Daco_print_ir.cpp182 fprintf(output, "%%%d%s", operand->tempId(), operand->isFixed() ? ":" : ""); in aco_print_operand()
184 if (operand->isFixed()) in aco_print_operand()
203 fprintf(output, "%%%d%s", definition->tempId(), definition->isFixed() ? ":" : ""); in print_definition()
205 if (definition->isFixed()) in print_definition()
617 if (instr->definitions[0].isFixed()) in print_instr_format_specific()
631 if (instr->operands[i].isFixed()) in print_instr_format_specific()
Daco_register_allocation.cpp1165 assert(op.isFixed()); in get_reg_impl()
1837 if (instr->operands[idx].isFixed()) in operand_can_use_reg()
1846 (!instr->operands[!idx].isFixed() || instr->operands[!idx].physReg() != m0); in operand_can_use_reg()
1879 if (operand.isFixed()) { in get_reg_for_operand()
1922 if (definition.isKill() || definition.isFixed()) in get_regs_for_phis()
1930 { return op.isTemp() && (!op.isFixed() || op.physReg() == reg); }; in get_regs_for_phis()
1948 if (definition.isKill() || definition.isFixed()) in get_regs_for_phis()
1967 if (!op.isTemp() || !op.isFixed()) in get_regs_for_phis()
1989 if (definition.isFixed()) { in get_regs_for_phis()
2367 if (instr->definitions[0].isKill() || instr->definitions[0].isFixed()) in get_affinities()
[all …]
Daco_ir.h748 constexpr bool isFixed() const noexcept { return isFixed_; } in isFixed() function
837 if (isFixed() != other.isFixed() || isKillBeforeDef() != other.isKillBeforeDef())
839 if (isFixed() && other.isFixed() && physReg() != other.physReg())
923 constexpr bool isFixed() const noexcept { return isFixed_; } in isFixed() function
1015 if (op.isFixed() && op.physReg() == exec) in reads_exec()
Daco_lower_to_cssa.cpp112 assert(op.isFixed() && op.physReg() == exec); in collect_parallelcopies()
Daco_optimizer.cpp785 return op.isFixed() && op.physReg() == exec; in fixed_to_exec()
1005 !instr->operands[i].isFixed() && alu_can_accept_constant(instr->opcode, i)) { in label_instruction()
1412 if (instr->definitions[0].isFixed()) { in label_instruction()
1424 assert(instr->operands[0].isFixed()); in label_instruction()
2056 if (!instr->operands[0].isFixed() || instr->operands[0].physReg() != exec) in combine_inverse_comparison()
3609 assert(pred_instr->definitions[1].isFixed() && in to_uniform_bool_instr()
3768 instr->operands[0].isFixed() && instr->operands[0].physReg() == scc) { in select_instruction()
Daco_spill.cpp198 if (op.isFixed() && op.physReg() == exec) in next_uses_per_block()
408 if (op.isFixed() && op.physReg() == exec) in update_local_next_uses()
1027 assert(phi->definitions[0].isFixed() && phi->definitions[0].physReg() == exec); in add_coupling_code()
Daco_scheduler.cpp565 if (def.isFixed() && def.physReg() == exec) in perform_hazard_query()
Daco_lower_to_hw_instr.cpp863 assert(clobber_scc.isFixed() && clobber_scc.physReg() == scc); in emit_gfx10_wave64_bpermute()
1759 assert(it->second.op.isFixed()); in handle_operands()
2016 instr2->definitions[0].isFixed() && in lower_to_hw_instr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64FrameLowering.h47 int64_t ObjectOffset, bool isFixed,
DAArch64FrameLowering.cpp1708 bool isFixed = MFI.isFixedObjectIndex(FI); in resolveFrameIndexReference() local
1710 return resolveFrameOffsetReference(MF, ObjectOffset, isFixed, isSVE, FrameReg, in resolveFrameIndexReference()
1715 const MachineFunction &MF, int64_t ObjectOffset, bool isFixed, bool isSVE, in resolveFrameOffsetReference() argument
1726 !isFixed && ObjectOffset >= -((int)AFI->getCalleeSavedStackSize(MFI)); in resolveFrameOffsetReference()
1744 if (isFixed) { in resolveFrameOffsetReference()
1796 assert(((isFixed || isCSR) || !RegInfo->needsStackRealignment(MF) || !UseFP) && in resolveFrameOffsetReference()
1822 if (UseFP && !(isFixed || isCSR)) in resolveFrameOffsetReference()
1824 if (!UseFP && (isFixed || isCSR)) in resolveFrameOffsetReference()
/third_party/flutter/skia/src/core/
DSkTypeface_remote.h53 bool isFixed,
DSkRemoteGlyphCache.cpp408 : typefaceID(typeface_id), glyphCount(glyph_count), style(style), isFixed(is_fixed) {} in WireTypeface()
413 bool isFixed{false}; member
882 wire.typefaceID, wire.glyphCount, wire.style, wire.isFixed, in addTypeface()
/third_party/skia/src/core/
DSkTypeface_remote.h48 bool isFixed,
DSkRemoteGlyphCache.cpp564 isFixed(is_fixed), glyphMaskNeedsCurrentColor(needsCurrentColor) {} in WireTypeface()
569 bool isFixed{false}; member
1072 wire.typefaceID, wire.glyphCount, wire.style, wire.isFixed, in addTypeface()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/
DSparcFrameLowering.cpp268 bool isFixed = MFI.isFixedObjectIndex(FI); in getFrameIndexReference() local
281 } else if (isFixed) { in getFrameIndexReference()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86FloatingPoint.cpp115 bool isFixed() const { return !Mask || FixCount; } in isFixed() function
522 assert(Bundle.isFixed() && "Reached block before any predecessors"); in setupBlockStack()
567 if (Bundle.isFixed()) { in finishBlockStack()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMFrameLowering.cpp897 bool isFixed = MFI.isFixedObjectIndex(FI); in ResolveFrameIndexReference() local
910 if (isFixed) { in ResolveFrameIndexReference()
926 if (isFixed || (hasMovingSP && !RegInfo->hasBasePointer(MF))) { in ResolveFrameIndexReference()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fTextureBorderClampTests.cpp1516 …const bool isFixed = m_channelClass == tcu::TEXTURECHANNELCLASS_SIGNED_FIXED_POINT || m_chan… in init() local
1615 else if (isFixed) in init()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DUtilsVk.cpp71 bool srcIsFixed = params.srcFormat->isFixed; in GetConvertVertexFlags()
/third_party/vk-gl-cts/framework/common/
DtcuTexture.cpp1858 const bool isFixed = channelClass == tcu::TEXTURECHANNELCLASS_SIGNED_FIXED_POINT || in lookupBorder() local
1863 if (isFloat || isFixed) in lookupBorder()

12