/freebsd/contrib/bearssl/T0/ |
H A D | SType.cs | 9 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 D | T0Comp.cs | 310 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 …]
|
H A D | Word.cs | 73 internal SType StackEffect { 81 StackEffect = SType.UNKNOWN; in Word() 152 SType se = StackEffect;
|
H A D | WordInterpreted.cs | 178 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 D | WordData.cs | 41 StackEffect = new SType(0, 1); in WordData() 50 StackEffect = new SType(0, 1); in WordData()
|
H A D | WordBuilder.cs | 48 internal SType StackEffect { 65 StackEffect = SType.UNKNOWN; in WordBuilder()
|
H A D | WordNative.cs | 49 SType stackEffect, NativeRun code) in WordNative()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/GISel/ |
H A D | M68kCallLowering.cpp | 81 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/ |
H A D | X86CallLowering.cpp |
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/GISel/ |
H A D | X86CallLowering.cpp | 97 LLT SType = LLT::scalar(DL.getPointerSizeInBits(0)); in getStackAddress() local 101 auto OffsetReg = MIRBuilder.buildConstant(SType, Offset); in getStackAddress()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVGlobalRegistry.cpp | 871 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/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | DependenceAnalysis.cpp | 1100 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 D | TGParser.cpp | 1303 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/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGExprConstant.cpp | 1025 llvm::StructType *SType = in EmitArrayConstant() local 1027 return llvm::ConstantStruct::get(SType, Elements); in EmitArrayConstant()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | ELFDumper.cpp | 3857 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/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsISelLowering.cpp | 2596 unsigned SType = 0; in lowerATOMIC_FENCE() local 2599 DAG.getConstant(SType, DL, MVT::i32)); in lowerATOMIC_FENCE()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeDAG.cpp | 343 Type *SType = SVT.getTypeForEVT(*DAG.getContext()); in ExpandConstantFP() local 345 Instruction::FPTrunc, LLVMC, SType, DAG.getDataLayout())); in ExpandConstantFP()
|