| /freebsd/contrib/llvm-project/llvm/include/llvm/Linker/ |
| H A D | IRMover.h | 31 bool IsPacked; member 60 LLVM_ABI StructType *findNonOpaque(ArrayRef<Type *> ETypes, bool IsPacked);
|
| /freebsd/contrib/llvm-project/llvm/lib/Linker/ |
| H A D | IRMover.cpp | 216 bool IsPacked = STy->isPacked(); in get() local 218 return *Entry = StructType::get(Ty->getContext(), ElementTypes, IsPacked); in get() 227 DstStructTypesSet.findNonOpaque(ElementTypes, IsPacked)) { in get() 1572 : ETypes(E), IsPacked(P) {} in KeyTy() 1575 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy() 1578 return IsPacked == That.IsPacked && ETypes == That.ETypes; in operator ==() 1594 return hash_combine(hash_combine_range(Key.ETypes), Key.IsPacked); in getHashValue() 1635 bool IsPacked) { in findNonOpaque() argument 1636 IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); in findNonOpaque()
|
| /freebsd/contrib/llvm-project/llvm/lib/SandboxIR/ |
| H A D | Type.cpp | 62 bool IsPacked) { in get() argument 68 Ctx.getType(llvm::StructType::get(Ctx.LLVMCtx, LLVMElements, IsPacked))); in get()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | LoongArch.cpp | 282 bool IsPacked = !Field2Off.isMultipleOf(Field2Align); in coerceAndExpandFARsEligibleStruct() local 292 llvm::StructType::get(getVMContext(), CoerceElts, IsPacked), in coerceAndExpandFARsEligibleStruct() 293 llvm::StructType::get(getVMContext(), UnpaddedCoerceElts, IsPacked)); in coerceAndExpandFARsEligibleStruct()
|
| H A D | RISCV.cpp | 372 bool IsPacked = !Field2Off.isMultipleOf(Field2Align); in coerceAndExpandFPCCEligibleStruct() local 382 llvm::StructType::get(getVMContext(), CoerceElts, IsPacked); in coerceAndExpandFPCCEligibleStruct() 384 llvm::StructType::get(getVMContext(), UnpaddedCoerceElts, IsPacked); in coerceAndExpandFPCCEligibleStruct()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stack_store.h | 111 bool IsPacked() const;
|
| H A D | sanitizer_stack_store.cpp | 379 bool StackStore::BlockInfo::IsPacked() const { 374 bool StackStore::BlockInfo::IsPacked() const { IsPacked() function in __sanitizer::StackStore::BlockInfo
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | VOPInstructions.td | 109 !if(!and(isVOP3P, P.IsPacked), P.InsVOP3P, P.Ins64)), 113 let IsPacked = P.IsPacked; 121 let AsmOperands = !if(!and(isVOP3P, P.IsPacked), P.AsmVOP3P, P.Asm64); 980 let IsPacked = P.IsPacked; 1473 bit IsPacked = Packed; 1494 let IsPacked = !if(Features.IsPacked, 1, P.IsPacked); 1501 !or(Features.IsPacked, P.HasModifiers)); 1513 let IsPacked = !if(Features.IsPacked, 1, P.IsPacked); 1520 !or(Features.IsPacked, Features.HasOpSel, P.HasModifiers)); 1528 let IsPacked = !if(Features.IsPacked, 1, P.IsPacked); [all …]
|
| H A D | SIInstrFormats.td | 112 field bit IsPacked = 0; 229 let TSFlags{49} = IsPacked;
|
| H A D | SIDefines.h | 137 IsPacked = UINT64_C(1) << 49, enumerator
|
| H A D | SIInstrInfo.h | 500 return MI.getDesc().TSFlags & SIInstrFlags::IsPacked; in isPacked() 504 return get(Opcode).TSFlags & SIInstrFlags::IsPacked; in isPacked()
|
| H A D | VOP3PInstructions.td | 1168 let IsPacked = 1; 1332 let IsPacked = 1; 1843 let IsPacked = ps.IsPacked; 1854 let IsPacked = ps.IsPacked;
|
| H A D | AMDGPULowerBufferFatPointers.cpp | 355 bool IsPacked = STy->isPacked(); in remapTypeImpl() local 357 return *Entry = StructType::get(Ty->getContext(), ElementTypes, IsPacked); in remapTypeImpl() 361 IsPacked); in remapTypeImpl()
|
| H A D | SIFoldOperands.cpp | 455 if (!(TSFlags & SIInstrFlags::IsPacked) || (TSFlags & SIInstrFlags::IsMAI) || in canUseImmWithOpSel()
|
| H A D | SIInstrInfo.td | 2652 field bit IsPacked = Src0VT.isVector; 2653 field bit HasOpSel = IsPacked;
|
| H A D | VOP2Instructions.td | 623 let IsPacked = 0;
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | Scalarizer.cpp | 1031 bool IsPacked = VS->NumPacked > 1; in visitInsertElementInst() local 1034 IsPacked = false; in visitInsertElementInst() 1035 if (IsPacked) { in visitInsertElementInst() 1125 bool IsPacked = VS->NumPacked > 1; in visitExtractElementInst() local 1128 IsPacked = false; in visitExtractElementInst() 1129 if (IsPacked) in visitExtractElementInst()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
| H A D | AMDGPUInstPrinter.cpp | 1187 bool IsPacked, bool HasDstSel) { in allOpsDefaultValue() argument 1188 int DefaultValue = IsPacked && (Mod == SISrcMods::OP_SEL_1); in allOpsDefaultValue() 1249 const bool IsPacked = in printPackedModifier() local 1250 MII.get(MI->getOpcode()).TSFlags & SIInstrFlags::IsPacked; in printPackedModifier() 1252 if (allOpsDefaultValue(Ops, NumOps, Mod, IsPacked, HasDstSel)) in printPackedModifier()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | ExpandVariadics.cpp | 304 const bool IsPacked = true; in asStruct() local 306 (Twine(Name) + ".vararg").str(), IsPacked); in asStruct()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/ |
| H A D | Type.h | 317 bool IsPacked = false);
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTContext.h | 1782 bool computeBestEnumTypes(bool IsPacked, unsigned NumNegativeBits,
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 5371 bool ASTContext::computeBestEnumTypes(bool IsPacked, unsigned NumNegativeBits, in computeBestEnumTypes() argument 5384 if (IsPacked && NumNegativeBits <= CharWidth && in computeBestEnumTypes() 5388 } else if (IsPacked && NumNegativeBits <= ShortWidth && in computeBestEnumTypes() 5413 if (IsPacked && NumPositiveBits <= CharWidth) { in computeBestEnumTypes() 5417 } else if (IsPacked && NumPositiveBits <= ShortWidth) { in computeBestEnumTypes()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/ |
| H A D | AMDGPUAsmParser.cpp | 9245 const bool IsPacked = (Desc.TSFlags & SIInstrFlags::IsPacked) != 0; in cvtVOP3P() local 9290 int DefaultVal = IsPacked ? -1 : 0; in cvtVOP3P()
|