Searched refs:Operand (Results 126 - 150 of 239) sorted by relevance

12345678910

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp78 uint64_t Operand = Upper26 | Lower6; local
79 return Operand;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h459 for (Use &Operand : I.operands())
460 if (auto *Inst = dyn_cast<Instruction>(Operand))
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp267 for (auto *Operand : NMD->operands())
268 Visited.insert(Operand);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp922 for (Value *Operand : I.operands()) {
923 if (auto *C = dyn_cast<Constant>(Operand))
H A DVPlan.cpp666 for (const VPValue *Operand : operands()) {
668 Operand->printAsOperand(O, SlotTracker);
/netbsd-current/sys/external/bsd/gnu-efi/dist/inc/
H A Defilib.h438 IN UINT64 Operand,
444 IN UINT64 Operand,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp838 MCParsedAsmOperand &Operand = *Operands[Operands.size() - Index - 1];
839 if (!Operand.isToken())
841 return static_cast<HexagonOperand &>(Operand).getToken().equals_lower(String);
1214 std::unique_ptr<HexagonOperand> Operand = local
1216 Operands.push_back(std::move(Operand));
1273 LLVM_DEBUG(dbgs() << "Unmatched Operand:");
/netbsd-current/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp1072 E->Operand = Record.readSubExpr();
1812 E->Operand = readTypeSourceInfo();
1814 E->Operand = Record.readSubExpr();
1826 E->Operand = Record.readSubExpr();
2094 E->Operand = Record.readSubExpr();
2223 E->Operand = readTypeSourceInfo();
2225 E->Operand = Record.readSubExpr();
/netbsd-current/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseExprCXX.cpp3333 ExprResult Operand(ParseCastExpression(AnyCastExpr));
3334 if (Operand.isInvalid())
3335 return Operand;
3337 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.get());
3994 ExprResult Operand = ParseExpression();
3999 if (Operand.isInvalid() || DeclaratorInfo.isInvalidType())
4002 return Actions.ActOnBuiltinBitCastExpr(KWLoc, DeclaratorInfo, Operand,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp1063 auto Operand = lookupOperandLeader(O);
1064 AllConstant = AllConstant && isa<Constant>(Operand);
1065 return Operand;
3820 for (auto &Operand : PHI->incoming_values())
3821 if (!ReachableEdges.count({PHI->getIncomingBlock(Operand), BB})) {
3824 << getBlockName(PHI->getIncomingBlock(Operand))
3826 Operand.set(UndefValue::get(PHI->getType()));
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp1597 // Operand must be a particular type.
1600 // Operand must be same as target pointer type.
1696 Record *Operand,
1700 if (Operand->isSubClassOf("unknown_class"))
1703 // The Operand class specifies a type directly.
1704 if (Operand->isSubClassOf("Operand")) {
1705 Record *R = Operand->getValueAsDef("Type");
1711 if (Operand->isSubClassOf("PointerLikeRegClass"))
1717 if (Operand
1695 UpdateNodeTypeFromInst(unsigned ResNo, Record *Operand, TreePattern &TP) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1168 Builder.markExprChild(S->getSubExpr(), syntax::NodeRole::Operand);
1278 Builder.markExprChild(S->getArg(0), syntax::NodeRole::Operand);
1286 Builder.markExprChild(S->getArg(0), syntax::NodeRole::Operand);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCoroutine.cpp425 OpaqueValueExpr *Operand = new (S.Context) local
430 ReadySuspendResumeResult Calls = {{}, Operand, /*IsInvalid=*/false};
436 ExprResult Result = buildMemberCall(S, Operand, Loc, Func, Arg);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugFrame.h495 /// Print \p Opcode's operand number \p OperandIdx which has value \p Operand.
499 uint64_t Operand) const;
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp69 Operand->dumpToStream(os);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h980 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue Operand);
988 SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue Operand,
1460 SDValue Operand);
1464 SDValue Operand, SDValue Subreg);
H A DTargetLowering.h3558 /// otherwise - N should be replaced by the returned Operand.
4280 virtual SDValue getSqrtEstimate(SDValue Operand, SelectionDAG &DAG, argument
4296 virtual SDValue getRecipEstimate(SDValue Operand, SelectionDAG &DAG, argument
4305 virtual SDValue getSqrtInputTest(SDValue Operand, SelectionDAG &DAG,
4310 virtual SDValue getSqrtResultForDenormInput(SDValue Operand, argument
4312 return DAG.getConstantFP(0.0, SDLoc(Operand), Operand.getValueType());
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineInstr.cpp1092 /// 0: Operand is not tied to anything.
1128 assert(MO.isTied() && "Operand isn't tied");
1503 const auto &Operand = getOperand(I);
1504 if (!Operand.isReg() || Operand.isDef())
1508 int TiedIdx = Operand.isTied() ? int(findTiedOperandIdx(I)) : -1;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp1381 SDValue Operand = StoredVal.getOperand(1);
1382 auto *OperandC = dyn_cast<ConstantSDNode>(Operand);
1390 Operand = CurDAG->getTargetConstant(OperandV, DL, MemVT);
1396 SDValue Ops[] = { Base, Disp, Operand, InputChain };
/netbsd-current/sys/arch/vax/vax/
H A Dintvec.S91 INTVEC(resopflt, KSTACK) # Reserved Operand/Boot Vector(?), 18
421 * 8(%sp): Operand 1
422 * 12(%sp): Operand 2
423 * 16(%sp): Operand 3
424 * 20(%sp): Operand 4
425 * 24(%sp): Operand 5
426 * 28(%sp): Operand 6
427 * 32(%sp): Operand 7 (unused)
428 * 36(%sp): Operand 8 (unused)
438 * 12(%sp): Operand
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp4021 void instrumentAsmArgument(Value *Operand, Instruction &I, IRBuilder<> &IRB,
4027 Type *OpType = Operand->getType();
4029 insertShadowCheck(Operand, &I);
4038 Value *Ptr = IRB.CreatePointerCast(Operand, IRB.getInt8PtrTy());
4096 Value *Operand = CB->getOperand(i);
4097 instrumentAsmArgument(Operand, I, IRB, DL, /*isOutput*/ false);
4103 Value *Operand = CB->getOperand(i);
4104 instrumentAsmArgument(Operand, I, IRB, DL, /*isOutput*/ true);
4123 Value *Operand = I.getOperand(i);
4124 if (Operand
[all...]
H A DAddressSanitizer.cpp2833 for (auto &Operand : InterestingOperands) {
2835 Value *Ptr = Operand.getPtr();
2839 if (Operand.MaybeMask) {
2847 OperandsToInstrument.push_back(Operand);
2884 for (auto &Operand : OperandsToInstrument) {
2886 instrumentMop(ObjSizeVis, Operand, UseCalls,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp1004 if (Optional<uint64_t> Operand =
1007 State.advanceAddr(*Operand, Opcode, OpcodeOffset);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp267 ICToken Operand = OperandStack.pop_back_val(); local
268 assert (Operand.first == IC_IMM &&
275 OperandStack.push_back(std::make_pair(IC_IMM, -Operand.second));
278 OperandStack.push_back(std::make_pair(IC_IMM, ~Operand.second));
1643 "Operand size mismatch");
4336 X86Operand &Operand = (X86Operand &)*Operands[ErrorInfo];
4337 if (Operand.getStartLoc().isValid()) {
4338 SMRange OperandRange = Operand.getLocRange();
4339 return Error(Operand.getStartLoc(), "invalid operand for instruction",
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp703 for (Value *Operand : J->operands())
704 if (memAddrUsesCTR(Operand, TM, Visited))

Completed in 509 milliseconds

12345678910