| /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 | 96 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/Target/SPIRV/ |
| H A D | SPIRVGlobalRegistry.cpp | 1055 if (auto SType = dyn_cast<StructType>(Ty)) { in createSPIRVType() local 1056 if (SType->isOpaque()) in createSPIRVType() 1057 return getOpTypeOpaque(SType, MIRBuilder); in createSPIRVType() 1061 Decorator = [&MIRBuilder, SType, this](Register Reg) { in createSPIRVType() 1062 addStructOffsetDecorations(Reg, const_cast<StructType *>(SType), in createSPIRVType() 1066 return getOpTypeStruct(SType, MIRBuilder, AccQual, Decorator, EmitIR); in createSPIRVType()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | DependenceAnalysis.cpp | 1119 auto *SType = dyn_cast<IntegerType>(S->getType()); in isKnownLessThan() local 1121 if (!SType || !SizeType) in isKnownLessThan() 1124 (SType->getBitWidth() >= SizeType->getBitWidth()) ? SType : SizeType; in isKnownLessThan() 3465 if (auto *SType = dyn_cast<IntegerType>(S->getType())) { in tryDelinearizeFixedSize() local 3467 ConstantInt::get(SType, DimensionSizes[I - 1], false)); in tryDelinearizeFixedSize()
|
| /freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | TGParser.cpp | 1435 const auto *SType = dyn_cast<StringRecTy>(ExprType->getType()); in ParseOperation() local 1436 if (!SType) { in ParseOperation() 1474 const auto *SType = dyn_cast<StringRecTy>(RegexType->getType()); in ParseOperation() local 1475 if (!SType) { in ParseOperation()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExprConstant.cpp | 1111 llvm::StructType *SType = in EmitArrayConstant() local 1113 return llvm::ConstantStruct::get(SType, Elements); in EmitArrayConstant()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | ELFDumper.cpp | 3922 static void printRelocHeaderFields(formatted_raw_ostream &OS, unsigned SType, in printRelocHeaderFields() argument 3925 bool IsRela = SType == ELF::SHT_RELA || SType == ELF::SHT_ANDROID_RELA; in printRelocHeaderFields() 3931 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 | 2748 unsigned SType = 0; in lowerATOMIC_FENCE() local 2751 DAG.getConstant(SType, DL, MVT::i32)); in lowerATOMIC_FENCE()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeDAG.cpp | 353 Type *SType = SVT.getTypeForEVT(*DAG.getContext()); in ExpandConstantFP() local 355 Instruction::FPTrunc, LLVMC, SType, DAG.getDataLayout())); in ExpandConstantFP()
|