| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/DirectX/ |
| H A D | DXILOpBuilder.h | 32 CallInst *createDXILOpCall(dxil::OpCode OpCode, Type *OverloadTy, 34 Type *getOverloadTy(dxil::OpCode OpCode, FunctionType *FT, 36 static const char *getOpCodeName(dxil::OpCode DXILOp);
|
| H A D | DXILOpBuilder.cpp | 128 dxil::OpCode OpCode; member 238 static FunctionCallee getOrCreateDXILOpFunction(dxil::OpCode DXILOp, in getOrCreateDXILOpFunction() 261 CallInst *DXILOpBuilder::createDXILOpCall(dxil::OpCode OpCode, Type *OverloadTy, in createDXILOpCall() argument 263 auto Fn = getOrCreateDXILOpFunction(OpCode, OverloadTy, M); in createDXILOpCall() 265 FullArgs.emplace_back(B.getInt32((int32_t)OpCode)); in createDXILOpCall() 270 Type *DXILOpBuilder::getOverloadTy(dxil::OpCode OpCode, FunctionType *FT, in getOverloadTy() argument 273 const OpCodeProperty *Prop = getOpCodeProperty(OpCode); in getOverloadTy() 321 const char *DXILOpBuilder::getOpCodeName(dxil::OpCode DXILOp) { in getOpCodeName()
|
| H A D | DXILOpLowering.cpp | 32 static void lowerIntrinsic(dxil::OpCode DXILOp, Function &F, Module &M) { in lowerIntrinsic()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMBranchTargets.cpp | 98 unsigned OpCode = ARM::t2BTI; in addBTI() local 112 OpCode = ARM::t2PACBTI; in addBTI() 121 << (OpCode == ARM::t2BTI ? "BTI" : "PACBTI") in addBTI() 124 BuildMI(MBB, MBBI, MBB.findDebugLoc(MBBI), TII.get(OpCode)) in addBTI()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SPIRV/MCTargetDesc/ |
| H A D | SPIRVInstPrinter.cpp | 108 const unsigned OpCode = MI->getOpcode(); in printInst() local 111 if (OpCode == SPIRV::OpDecorate) { in printInst() 113 } else if (OpCode == SPIRV::OpExtInstImport) { in printInst() 115 } else if (OpCode == SPIRV::OpExtInst) { in printInst() 119 const MCInstrDesc &MCDesc = MII.get(OpCode); in printInst() 129 switch (OpCode) { in printInst() 159 switch (OpCode) { in printInst()
|
| H A D | SPIRVMCCodeEmitter.cpp | 113 const uint64_t OpCode = getBinaryCodeForInstr(MI, Fixups, STI); in encodeInstruction() local 115 const uint32_t FirstWord = (NumWords << 16) | OpCode; in encodeInstruction()
|
| /freebsd-14.2/contrib/lua/src/ |
| H A D | lcode.c | 41 static int codesJ (FuncState *fs, OpCode o, int sj, int k); 208 OpCode op; in luaK_ret() 418 int luaK_codeAsBx (FuncState *fs, OpCode o, int a, int bc) { in luaK_codeAsBx() 1364 l_sinline OpCode binopr2op (BinOpr opr, BinOpr baser, OpCode base) { in binopr2op() 1375 l_sinline OpCode unopr2op (UnOpr opr) { in unopr2op() 1412 OpCode mmop, TMS event) { in finishbinexpval() 1430 OpCode op = binopr2op(opr, OPR_ADD, OP_ADD); in codebinexpval() 1443 static void codebini (FuncState *fs, OpCode op, in codebini() 1459 OpCode op = binopr2op(opr, OPR_ADD, OP_ADDK); in codebinK() 1560 OpCode op; in codeorder() [all …]
|
| H A D | lcode.h | 63 LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx); 64 LUAI_FUNC int luaK_codeAsBx (FuncState *fs, OpCode o, int A, int Bx); 65 LUAI_FUNC int luaK_codeABCk (FuncState *fs, OpCode o, int A,
|
| H A D | lopcodes.h | 114 #define GET_OPCODE(i) (cast(OpCode, ((i)>>POS_OP) & MASK1(SIZE_OP,0))) 310 } OpCode; typedef
|
| /freebsd-14.2/sys/contrib/openzfs/module/lua/ |
| H A D | lcode.c | 75 static int condjump (FuncState *fs, OpCode op, int A, int B, int C) { in condjump() 228 int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) { in luaK_codeABC() 237 int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) { in luaK_codeABx() 396 OpCode op = OP_GETTABUP; /* assume 't' is in an upvalue */ in luaK_dischargevars() 572 OpCode op = (var->u.ind.vt == VLOCAL) ? OP_SETTABLE : OP_SETTABUP; in luaK_storevar() 714 static int constfolding (OpCode op, expdesc *e1, expdesc *e2) { in constfolding() 730 static void codearith (FuncState *fs, OpCode op, in codearith() 752 static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1, in codecomp() 852 codearith(fs, cast(OpCode, op - OPR_ADD + OP_ADD), e1, e2, line); in luaK_posfix() 856 codecomp(fs, cast(OpCode, op - OPR_EQ + OP_EQ), 1, e1, e2); in luaK_posfix() [all …]
|
| H A D | lcode.h | 47 LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx); 48 LUAI_FUNC int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C);
|
| H A D | lopcodes.h | 89 #define GET_OPCODE(i) (cast(OpCode, ((i)>>POS_OP) & MASK1(SIZE_OP,0))) 225 } OpCode; typedef
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | MacOSKeychainAPIChecker.cpp | 506 BinaryOperator::Opcode OpCode = CondBSE->getOpcode(); in evalAssume() local 507 if (OpCode != BO_EQ && OpCode != BO_NE) in evalAssume() 515 bool ErrorIsReturned = (OpCode == BO_EQ && RHS != NoErr) || in evalAssume() 516 (OpCode == BO_NE && RHS == NoErr); in evalAssume()
|
| H A D | CheckObjCDealloc.cpp | 421 BinaryOperator::Opcode OpCode = CondBSE->getOpcode(); in evalAssume() local 423 if (OpCode != BO_EQ) in evalAssume() 426 if (OpCode != BO_NE) in evalAssume()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCoreRegisterInfo.cpp | 169 unsigned OpCode = MI.getOpcode(); in InsertSPConstInst() local 172 if (OpCode==XCore::STWFI) { in InsertSPConstInst() 184 switch (OpCode) { in InsertSPConstInst()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyIndVar.cpp | 1132 unsigned OpCode) const; 1356 unsigned OpCode) const { in getSCEVByOpCode() 1357 switch (OpCode) { in getSCEVByOpCode() 1379 const unsigned OpCode = DU.NarrowUse->getOpcode(); in getExtendedOperandRecurrence() local 1381 if (OpCode != Instruction::Add && OpCode != Instruction::Sub && in getExtendedOperandRecurrence() 1382 OpCode != Instruction::Mul) in getExtendedOperandRecurrence() 1433 dyn_cast<SCEVAddRecExpr>(getSCEVByOpCode(lhs, rhs, OpCode)); in getExtendedOperandRecurrence() 1563 const unsigned OpCode = NarrowUse->getOpcode(); in widenWithVariantUse() local 1565 if (OpCode != Instruction::Add && OpCode != Instruction::Sub && in widenWithVariantUse() 1566 OpCode != Instruction::Mul) in widenWithVariantUse() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MIRFormatter.h | 50 virtual bool parseImmMnemonic(const unsigned OpCode, const unsigned OpIdx, in parseImmMnemonic() argument
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
| H A D | MIParser.cpp | 140 unsigned &OpCode) { in parseInstrName() argument 145 OpCode = InstrInfo->getValue(); in parseInstrName() 495 bool parseMachineOperandAndTargetFlags(const unsigned OpCode, 546 bool parseInstruction(unsigned &OpCode, unsigned &Flags); 1064 unsigned OpCode, Flags = 0; in parse() local 1065 if (Token.isError() || parseInstruction(OpCode, Flags)) in parse() 1169 const auto &MCID = MF.getSubtarget().getInstrInfo()->get(OpCode); in parse() 1513 if (PFS.Target.parseInstrName(InstrName, OpCode)) in parseInstruction() 1838 bool MIParser::parseTargetImmMnemonic(const unsigned OpCode, in parseTargetImmMnemonic() argument 1861 if (MF.parseImmMnemonic(OpCode, OpIdx, Src, Val, in parseTargetImmMnemonic() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVReader.h | 231 LVOperation *createOperation(LVSmall OpCode, ArrayRef<LVUnsigned> Operands) { in LV_CREATE_OBJECT() 232 return new (AllocatedOperation.Allocate()) LVOperation(OpCode, Operands); in LV_CREATE_OBJECT()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVModuleAnalysis.cpp | 351 const unsigned OpCode = MI.getOpcode(); in processOtherInstrs() local 352 if (OpCode == SPIRV::OpName || OpCode == SPIRV::OpMemberName) { in processOtherInstrs() 354 } else if (OpCode == SPIRV::OpEntryPoint) { in processOtherInstrs() 363 } else if (OpCode == SPIRV::OpFunction) { in processOtherInstrs() 365 } else if (OpCode == SPIRV::OpTypeForwardPointer) { in processOtherInstrs()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Value.cpp | 61 unsigned OpCode = 0; in Value() local 63 OpCode = SubclassID - InstructionVal; in Value() 64 if (OpCode == Instruction::Call || OpCode == Instruction::Invoke || in Value() 65 OpCode == Instruction::CallBr) in Value()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeFunctionSymbol.cpp | 69 switch (Annot.OpCode) { in inlineSiteContainsAddress()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/ |
| H A D | MIParser.h | 104 bool parseInstrName(StringRef InstrName, unsigned &OpCode);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/ |
| H A D | MipsAsmParser.cpp | 3696 unsigned OpCode = 0; in expandBranchImm() local 3699 OpCode = Mips::BNE; in expandBranchImm() 4612 unsigned OpCode; in expandSge() local 4618 OpCode = Mips::SLT; in expandSge() 4621 OpCode = Mips::SLTu; in expandSge() 4703 unsigned OpCode; in expandSgtImm() local 4710 OpCode = Mips::SLT; in expandSgtImm() 4714 OpCode = Mips::SLTu; in expandSgtImm() 4749 unsigned OpCode; in expandSle() local 4755 OpCode = Mips::SLT; in expandSle() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCInstrInfo.cpp | 976 const unsigned OpCode = MCI.getOpcode(); in requiresSlot() local 978 const bool NoSlotReqd = Hexagon::A4_ext == OpCode || in requiresSlot() 979 (IsTiny && Hexagon::A2_nop == OpCode) || in requiresSlot() 980 (IsTiny && Hexagon::J4_hintjumpr == OpCode); in requiresSlot()
|