Home
last modified time | relevance | path

Searched refs:IsPacked (Results 1 – 16 of 16) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/Linker/
H A DIRMover.h30 bool IsPacked; member
59 StructType *findNonOpaque(ArrayRef<Type *> ETypes, bool IsPacked);
/openbsd-src/gnu/llvm/llvm/lib/Linker/
H A DIRMover.cpp323 bool IsPacked = STy->isPacked(); in get() local
325 return *Entry = StructType::get(Ty->getContext(), ElementTypes, IsPacked); in get()
334 DstStructTypesSet.findNonOpaque(ElementTypes, IsPacked)) { in get()
1691 : ETypes(E), IsPacked(P) {} in KeyTy()
1694 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy()
1697 return IsPacked == That.IsPacked && ETypes == That.ETypes; in operator ==()
1714 Key.IsPacked); in getHashValue()
1755 bool IsPacked) { in findNonOpaque() argument
1756 IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); in findNonOpaque()
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stack_store.h111 bool IsPacked() const;
H A Dsanitizer_stack_store.cpp374 bool StackStore::BlockInfo::IsPacked() const { in IsPacked() function in __sanitizer::StackStore::BlockInfo
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DVOPInstructions.td104 !if(!and(isVOP3P, P.IsPacked), P.InsVOP3P, P.Ins64)),
108 let IsPacked = P.IsPacked;
114 !if(!and(isVOP3P, P.IsPacked), P.AsmVOP3P, P.Asm64));
1210 bit IsPacked = Packed;
1225 let IsPacked = !if(Features.IsPacked, 1, P.IsPacked);
1229 !or(Features.IsPacked, Features.HasOpSel, P.HasModifiers));
H A DSIInstrFormats.td115 field bit IsPacked = 0;
213 let TSFlags{49} = IsPacked;
H A DSIDefines.h102 IsPacked = UINT64_C(1) << 49, enumerator
H A DSIInstrInfo.h419 return MI.getDesc().TSFlags & SIInstrFlags::IsPacked; in isPacked()
423 return get(Opcode).TSFlags & SIInstrFlags::IsPacked; in isPacked()
H A DSIFoldOperands.cpp195 if (TSFlags & SIInstrFlags::IsPacked && !(TSFlags & SIInstrFlags::IsMAI) && in updateOperand()
H A DSIInstrInfo.td2496 field bit IsPacked = isPackedType<Src0VT>.ret;
2497 field bit HasOpSel = IsPacked;
H A DVOP3PInstructions.td711 let IsPacked = 1;
H A DVOP2Instructions.td510 let IsPacked = 0;
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp1164 bool IsPacked, bool HasDstSel) { in allOpsDefaultValue() argument
1165 int DefaultValue = IsPacked && (Mod == SISrcMods::OP_SEL_1); in allOpsDefaultValue()
1201 const bool IsPacked = in printPackedModifier() local
1202 MII.get(MI->getOpcode()).TSFlags & SIInstrFlags::IsPacked; in printPackedModifier()
1204 if (allOpsDefaultValue(Ops, NumOps, Mod, IsPacked, HasDstSel)) in printPackedModifier()
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stack_store_test.cpp60 for (const BlockInfo& b : store_.blocks_) res += b.IsPacked(); in CountPackedBlocks()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DTargetInfo.cpp11247 bool IsPacked = !Field2Off.isMultipleOf(Field2Align); in coerceAndExpandFPCCEligibleStruct() local
11257 llvm::StructType::get(getVMContext(), CoerceElts, IsPacked); in coerceAndExpandFPCCEligibleStruct()
11259 llvm::StructType::get(getVMContext(), UnpaddedCoerceElts, IsPacked); in coerceAndExpandFPCCEligibleStruct()
12008 bool IsPacked = !Field2Off.isMultipleOf(Field2Align); in coerceAndExpandFARsEligibleStruct() local
12018 llvm::StructType::get(getVMContext(), CoerceElts, IsPacked), in coerceAndExpandFARsEligibleStruct()
12019 llvm::StructType::get(getVMContext(), UnpaddedCoerceElts, IsPacked)); in coerceAndExpandFARsEligibleStruct()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp8242 const bool IsPacked = (Desc.TSFlags & SIInstrFlags::IsPacked) != 0; in cvtVOP3P() local
8251 assert(!IsPacked); in cvtVOP3P()
8265 int DefaultVal = IsPacked ? -1 : 0; in cvtVOP3P()