Home
last modified time | relevance | path

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

/freebsd-head/contrib/bearssl/T0/
HDSType.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
HDT0Comp.cs310 AddNative("add-cc:", false, SType.BLANK, cpu => { in T0Comp()
330 AddNative("cc:", false, SType.BLANK, cpu => { in T0Comp()
344 SType stackEffect; in T0Comp()
354 AddNative("preamble", false, SType.BLANK, cpu => { in T0Comp()
363 AddNative("postamble", false, SType.BLANK, cpu => { in T0Comp()
374 AddNative("make-CX", false, new SType(3, 1), cpu => { in T0Comp()
426 AddNative("co", false, SType.BLANK, cpu => { in T0Comp()
456 SType stackEffect = ParseStackEffectNF(); in T0Comp()
494 wordBuilder.StackEffect = new SType(din, dout); in T0Comp()
683 AddNative("data-get8", false, new SType(1, 1), cpu => { in T0Comp()
[all …]
HDWord.cs73 internal SType StackEffect {
81 StackEffect = SType.UNKNOWN; in Word()
152 SType se = StackEffect;
HDWordInterpreted.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()
HDWordData.cs41 StackEffect = new SType(0, 1); in WordData()
50 StackEffect = new SType(0, 1); in WordData()
HDWordBuilder.cs48 internal SType StackEffect {
65 StackEffect = SType.UNKNOWN; in WordBuilder()
HDWordNative.cs49 SType stackEffect, NativeRun code) in WordNative()
/freebsd-head/contrib/llvm-project/llvm/lib/Target/M68k/GISel/
HDM68kCallLowering.cpp81 LLT SType = LLT::scalar(DL.getPointerSizeInBits(0)); in getStackAddress() local
84 auto OffsetReg = MIRBuilder.buildConstant(SType, Offset); in getStackAddress()
/freebsd-head/contrib/llvm-project/llvm/lib/Target/X86/GISel/
HDX86CallLowering.cpp97 LLT SType = LLT::scalar(DL.getPointerSizeInBits(0)); in getStackAddress() local
101 auto OffsetReg = MIRBuilder.buildConstant(SType, Offset); in getStackAddress()
/freebsd-head/contrib/llvm-project/llvm/lib/Target/SPIRV/
HDSPIRVGlobalRegistry.cpp871 if (auto SType = dyn_cast<StructType>(Ty)) { in createSPIRVType() local
872 if (SType->isOpaque()) in createSPIRVType()
873 return getOpTypeOpaque(SType, MIRBuilder); in createSPIRVType()
874 return getOpTypeStruct(SType, MIRBuilder, EmitIR); in createSPIRVType()
/freebsd-head/contrib/llvm-project/llvm/lib/Analysis/
HDDependenceAnalysis.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-head/contrib/llvm-project/llvm/lib/TableGen/
HDTGParser.cpp1303 StringRecTy *SType = dyn_cast<StringRecTy>(LHSt->getType()); in ParseOperation() local
1305 if (!LType && !SType && !DType) { in ParseOperation()
1411 StringRecTy *SType = dyn_cast<StringRecTy>(ExprType->getType()); in ParseOperation() local
1412 if (!SType) { in ParseOperation()
/freebsd-head/contrib/llvm-project/clang/lib/CodeGen/
HDCGExprConstant.cpp1025 llvm::StructType *SType = in EmitArrayConstant() local
1027 return llvm::ConstantStruct::get(SType, Elements); in EmitArrayConstant()
/freebsd-head/contrib/llvm-project/llvm/tools/llvm-readobj/
HDELFDumper.cpp3857 static void printRelocHeaderFields(formatted_raw_ostream &OS, unsigned SType, in printRelocHeaderFields() argument
3860 bool IsRela = SType == ELF::SHT_RELA || SType == ELF::SHT_ANDROID_RELA; in printRelocHeaderFields()
3866 if (IsRela || (SType == ELF::SHT_CREL && (CrelHdr & CREL_HDR_ADDEND))) in printRelocHeaderFields()
/freebsd-head/contrib/llvm-project/llvm/lib/Target/Mips/
HDMipsISelLowering.cpp2596 unsigned SType = 0; in lowerATOMIC_FENCE() local
2599 DAG.getConstant(SType, DL, MVT::i32)); in lowerATOMIC_FENCE()
/freebsd-head/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
HDLegalizeDAG.cpp343 Type *SType = SVT.getTypeForEVT(*DAG.getContext()); in ExpandConstantFP() local
345 Instruction::FPTrunc, LLVMC, SType, DAG.getDataLayout())); in ExpandConstantFP()