Home
last modified time | relevance | path

Searched refs:SType (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/bearssl/T0/
H A DSType.cs9 struct SType { struct
52 internal SType(int din, int dout) in SType() argument
67 internal static SType UNKNOWN = new SType(-1, -1); argument
72 internal static SType BLANK = new SType(0, 0); argument
74 public static bool operator ==(SType s1, SType s2) in operator ==() argument
79 public static bool operator !=(SType s1, SType s2) in operator !=() argument
86 return (obj is SType) && ((SType)obj == this); in Equals() argument
113 internal bool IsSubOf(SType s) in IsSubOf() argument
H A DT0Comp.cs344 SType stackEffect; in T0Comp()
456 SType stackEffect = ParseStackEffectNF(); in T0Comp()
1118 SType stackEffect; in ParseCCode()
1127 string ParseCCode(out SType stackEffect) in ParseCCode()
1136 string ParseCCodeNF(out SType stackEffect) in ParseCCodeNF()
1138 stackEffect = SType.UNKNOWN; in ParseCCodeNF()
1188 SType ParseStackEffectNF() in ParseStackEffectNF()
1196 return SType.UNKNOWN; in ParseStackEffectNF()
1200 return SType.UNKNOWN; in ParseStackEffectNF()
1208 return new SType(din, dout); in ParseStackEffectNF()
[all …]
H A DWord.cs73 internal SType StackEffect {
81 StackEffect = SType.UNKNOWN; in Word()
152 SType se = StackEffect;
H A DWordInterpreted.cs178 SType se = w.StackEffect; in AnalyseFlow()
247 SType computed; in AnalyseFlow()
249 computed = new SType(-maxDepth, -1); in AnalyseFlow()
251 computed = new SType(-maxDepth, -maxDepth + exitSA); in AnalyseFlow()
H A DWordData.cs41 StackEffect = new SType(0, 1); in WordData()
50 StackEffect = new SType(0, 1); in WordData()
H A DWordBuilder.cs48 internal SType StackEffect {
65 StackEffect = SType.UNKNOWN; in WordBuilder()
H A DWordNative.cs49 SType stackEffect, NativeRun code) in WordNative()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVUtils.cpp341 const StructType *SType = dyn_cast<StructType>(getTypedPtrEltType(Ty)); in isSpecialOpaqueType() local
342 if (SType && SType->hasName()) in isSpecialOpaqueType()
343 return hasBuiltinTypePrefix(SType->getName()); in isSpecialOpaqueType()
H A DSPIRVGlobalRegistry.cpp692 if (auto SType = dyn_cast<StructType>(Ty)) { in createSPIRVType() local
693 if (SType->isOpaque()) in createSPIRVType()
694 return getOpTypeOpaque(SType, MIRBuilder); in createSPIRVType()
695 return getOpTypeStruct(SType, MIRBuilder, EmitIR); in createSPIRVType()
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/GISel/
H A DM68kCallLowering.cpp81 LLT SType = LLT::scalar(DL.getPointerSizeInBits(0)); in getStackAddress() local
84 auto OffsetReg = MIRBuilder.buildConstant(SType, Offset); in getStackAddress()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/GISel/
H A DX86CallLowering.cpp96 LLT SType = LLT::scalar(DL.getPointerSizeInBits(0)); in getStackAddress() local
100 auto OffsetReg = MIRBuilder.buildConstant(SType, Offset); in getStackAddress()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1100 auto *SType = dyn_cast<IntegerType>(S->getType()); in isKnownLessThan() local
1102 if (!SType || !SizeType) in isKnownLessThan()
1105 (SType->getBitWidth() >= SizeType->getBitWidth()) ? SType : SizeType; in isKnownLessThan()
3455 if (auto *SType = dyn_cast<IntegerType>(S->getType())) { in tryDelinearizeFixedSize() local
3457 ConstantInt::get(SType, DimensionSizes[I - 1], false)); in tryDelinearizeFixedSize()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp1297 StringRecTy *SType = dyn_cast<StringRecTy>(LHSt->getType()); in ParseOperation() local
1299 if (!LType && !SType && !DType) { in ParseOperation()
1405 StringRecTy *SType = dyn_cast<StringRecTy>(ExprType->getType()); in ParseOperation() local
1406 if (!SType) { in ParseOperation()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp1005 llvm::StructType *SType = in EmitArrayConstant() local
1007 return llvm::ConstantStruct::get(SType, Elements); in EmitArrayConstant()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp3871 static void printRelocHeaderFields(formatted_raw_ostream &OS, unsigned SType, in printRelocHeaderFields() argument
3873 bool IsRela = SType == ELF::SHT_RELA || SType == ELF::SHT_ANDROID_RELA; in printRelocHeaderFields()
3875 SType == ELF::SHT_RELR || SType == ELF::SHT_ANDROID_RELR || in printRelocHeaderFields()
3876 (EHeader.e_machine == EM_AARCH64 && SType == ELF::SHT_AARCH64_AUTH_RELR); in printRelocHeaderFields()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp2580 unsigned SType = 0; in lowerATOMIC_FENCE() local
2583 DAG.getConstant(SType, DL, MVT::i32)); in lowerATOMIC_FENCE()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp327 Type *SType = SVT.getTypeForEVT(*DAG.getContext()); in ExpandConstantFP() local
329 Instruction::FPTrunc, LLVMC, SType, DAG.getDataLayout())); in ExpandConstantFP()