Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/bearssl/T0/
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
DT0Comp.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 …]
DWord.cs73 internal SType StackEffect {
81 StackEffect = SType.UNKNOWN; in Word()
152 SType se = StackEffect;
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()
DWordData.cs41 StackEffect = new SType(0, 1); in WordData()
50 StackEffect = new SType(0, 1); in WordData()
DWordBuilder.cs48 internal SType StackEffect {
65 StackEffect = SType.UNKNOWN; in WordBuilder()
DWordNative.cs49 SType stackEffect, NativeRun code) in WordNative()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
DX86CallLowering.cpp95 LLT SType = LLT::scalar(DL.getPointerSizeInBits(0)); in getStackAddress() local
99 auto OffsetReg = MIRBuilder.buildConstant(SType, Offset); in getStackAddress()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DDependenceAnalysis.cpp1015 auto *SType = dyn_cast<IntegerType>(S->getType()); in isKnownLessThan() local
1017 if (!SType || !SizeType) in isKnownLessThan()
1020 (SType->getBitWidth() >= SizeType->getBitWidth()) ? SType : SizeType; in isKnownLessThan()
3371 if (auto *SType = dyn_cast<IntegerType>(S->getType())) { in tryDelinearizeFixedSize() local
3373 ConstantInt::get(SType, DimensionSizes[I - 1], false)); in tryDelinearizeFixedSize()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGExprConstant.cpp984 llvm::StructType *SType = in EmitArrayConstant() local
986 return llvm::ConstantStruct::get(SType, Elements); in EmitArrayConstant()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
DELFDumper.cpp3461 static void printRelocHeaderFields(formatted_raw_ostream &OS, unsigned SType) { in printRelocHeaderFields() argument
3462 bool IsRela = SType == ELF::SHT_RELA || SType == ELF::SHT_ANDROID_RELA; in printRelocHeaderFields()
3463 bool IsRelr = SType == ELF::SHT_RELR || SType == ELF::SHT_ANDROID_RELR; in printRelocHeaderFields()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
DTGParser.cpp1012 StringRecTy *SType = dyn_cast<StringRecTy>(LHSt->getType()); in ParseOperation() local
1014 if (!LType && !SType && !DType) { in ParseOperation()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
DMipsISelLowering.cpp2559 unsigned SType = 0; in lowerATOMIC_FENCE() local
2562 DAG.getConstant(SType, DL, MVT::i32)); in lowerATOMIC_FENCE()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp320 Type *SType = SVT.getTypeForEVT(*DAG.getContext()); in ExpandConstantFP() local
321 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType)); in ExpandConstantFP()