Searched refs:S2 (Results 51 - 75 of 85) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstrTypes.h194 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
196 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
218 static BinaryOperator *Create(BinaryOps Op, Value *S1, Value *S2,
226 static BinaryOperator *Create(BinaryOps Op, Value *S1, Value *S2,
786 Value *S2, const Twine &Name = "",
794 Value *S2, const Twine &Name, BasicBlock *InsertAtEnd);
H A DLegacyPassManagers.h375 enum PassDebuggingString S2, StringRef Msg);
H A DInstructions.h1691 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, argument
1695 init(C, S1, S2);
1699 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, argument
1703 init(C, S1, S2);
1707 void init(Value *C, Value *S1, Value *S2) { argument
1708 assert(!areInvalidOperands(C, S1, S2) && "Invalid operands for select");
1711 Op<2>() = S2;
1721 static SelectInst *Create(Value *C, Value *S1, Value *S2, argument
1725 SelectInst *Sel = new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
1731 static SelectInst *Create(Value *C, Value *S1, Value *S2, argument
[all...]
/freebsd-13-stable/sys/mips/mips/
H A Dexception.S292 SAVE_REG(s2, S2, sp) ;\
352 RESTORE_REG(s2, S2, sp) ;\
452 SAVE_U_PCB_REG(s2, S2, k1)
544 RESTORE_U_PCB_REG(s2, S2, k1)
721 SAVE_U_PCB_REG(s2, S2, k1)
803 RESTORE_U_PCB_REG(s2, S2, k1)
H A Dswtch.S118 RESTORE_U_PCB_REG(s2, S2, k1)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp2382 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, argument
2390 Op<1>() = S2;
2395 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, argument
2403 Op<1>() = S2;
2476 BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2, argument
2479 assert(S1->getType() == S2->getType() &&
2481 return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
2484 BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2, argument
2487 BinaryOperator *Res = Create(Op, S1, S2, Name);
3603 CmpInst::Create(OtherOps Op, Predicate predicate, Value *S1, Value *S2, argument
3623 Create(OtherOps Op, Predicate predicate, Value *S1, Value *S2, const Twine &Name, BasicBlock *InsertAtEnd) argument
[all...]
H A DLegacyPassManager.cpp1267 enum PassDebuggingString S2,
1286 switch (S2) {
1266 dumpPassInfo(Pass *P, enum PassDebuggingString S1, enum PassDebuggingString S2, StringRef Msg) argument
/freebsd-13-stable/contrib/tnftp/src/
H A Dmain.c893 goto S2; /* slurp next character */
907 S2:
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGVTables.cpp1349 std::string S2;
1350 llvm::raw_string_ostream O2(S2);
1355 if (S1 < S2)
1357 if (S1 != S2)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp2530 const APFloat &S2) {
2534 if (abs(S2) >= abs(S0) && abs(S2) >= abs(S1)) {
2535 if (S2.isNegative() && S2.isNonZero() && !S2.isNaN()) {
2536 // S2 < 0
2543 MA = S2;
2549 TC = -S2;
2552 TC = S2;
2527 ConstantFoldAMDGCNCubeIntrinsic(Intrinsic::ID IntrinsicID, const APFloat &S0, const APFloat &S1, const APFloat &S2) argument
[all...]
/freebsd-13-stable/usr.sbin/moused/
H A Dmoused.c454 #define S2 2 /* button 3 delayed down */ macro
474 { { S0, S2, S1, S3, S0 }, 0, ~(MOUSE_BUTTON1DOWN | MOUSE_BUTTON3DOWN), FALSE },
476 { { S4, S2, S1, S3, S5 }, 0, ~MOUSE_BUTTON1DOWN, FALSE },
477 /* S2 */
478 { { S8, S2, S1, S3, S6 }, 0, ~MOUSE_BUTTON3DOWN, FALSE },
482 { { S0, S2, S1, S3, S0 }, MOUSE_BUTTON1DOWN, ~0, TRUE },
484 { { S0, S2, S5, S7, S5 }, MOUSE_BUTTON1DOWN, ~0, FALSE },
490 { { S0, S2, S1, S3, S0 }, MOUSE_BUTTON3DOWN, ~0, TRUE },
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp234 static BinaryOperator *CreateAdd(Value *S1, Value *S2, const Twine &Name, argument
237 return BinaryOperator::CreateAdd(S1, S2, Name, InsertBefore);
240 BinaryOperator::CreateFAdd(S1, S2, Name, InsertBefore);
246 static BinaryOperator *CreateMul(Value *S1, Value *S2, const Twine &Name, argument
249 return BinaryOperator::CreateMul(S1, S2, Name, InsertBefore);
252 BinaryOperator::CreateFMul(S1, S2, Name, InsertBefore);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMCallingConv.cpp155 static const MCPhysReg SRegList[] = { ARM::S0, ARM::S1, ARM::S2, ARM::S3,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PBQPRegAlloc.cpp97 case AArch64::S2:
/freebsd-13-stable/crypto/openssl/crypto/ec/asm/
H A Decp_nistz256-x86_64.pl3469 $U1,$U2,$S1,$S2,
3593 lea $S2(%rsp), $r_ptr # S2 = Z1^3
3594 call __ecp_nistz256_mul_mont$x # p256_mul_mont(S2, Z1sqr, in1_z);
3600 `&load_for_mul("$S2(%rsp)", "$in2_y(%rsp)", "$src0")`
3601 lea $S2(%rsp), $r_ptr # S2 = Y2*Z1^3
3602 call __ecp_nistz256_mul_mont$x # p256_mul_mont(S2, S2, in2_y);
3605 lea $R(%rsp), $r_ptr # R = S2
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerTracePC.cpp375 // Finds min of (strlen(S1), strlen(S2)).
377 static size_t InternalStrnlen2(const char *S1, const char *S2) {
379 for (; S1[Len] && S2[Len]; Len++) {}
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMicroMipsSizeReduction.cpp382 Mips::T7, Mips::S0, Mips::S1, Mips::S2, Mips::S3, Mips::S4, Mips::S5,
576 Reg == Mips::S0 || Reg == Mips::S1 || Reg == Mips::S2 ||
H A DMipsAsmPrinter.cpp1091 // mov the return address to S2.
1093 // We need to make sure that the enclosing function knows to save S2
1098 EmitInstrRegRegReg(*STI, Mips::OR, Mips::S2, Mips::RA, Mips::ZERO);
1113 EmitInstrReg(*STI, Mips::JR, Mips::S2);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCTargetDesc.cpp133 {codeview::RegisterId::ARM64_S2, AArch64::S2},
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp917 ProgramStateRef S2) const override {
918 return S1->get<ConstraintRange>() == S2->get<ConstraintRange>();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp1535 const MachineOperand &S2 = DI->getOperand(2); local
1537 if (!checkForImmediate(S1, V1) || !checkForImmediate(S2, V2))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp1714 SmallSetVector<SUnit *, 8> S2; local
1715 if (N2.empty() || !succ_L(N2, S2))
1717 if (isSubset(S1, S2) && S1.size() == S2.size()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp2137 const std::pair<GlobalClassesTy::iterator, unsigned> &S2) {
2138 return S1.second < S2.second;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1940 [](StringRef S1, StringRef S2) { return S1.size() < S2.size(); });
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/Disassembler/
H A DMipsDisassembler.cpp2426 unsigned Regs[] = {Mips::S0, Mips::S1, Mips::S2, Mips::S3, Mips::S4, Mips::S5,
2454 unsigned Regs[] = {Mips::S0, Mips::S1, Mips::S2, Mips::S3};

Completed in 413 milliseconds

1234