Searched refs:Operand (Results 1 - 25 of 159) sorted by relevance

1234567

/freebsd-12-stable/sys/contrib/dev/acpica/components/executer/
H A Dexoparg1.c272 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
286 Status = AcpiExReleaseMutex (Operand[0], WalkState);
291 Status = AcpiExSystemResetEvent (Operand[0]);
296 Status = AcpiExSystemSignalEvent (Operand[0]);
301 Status = AcpiExSystemDoSleep (Operand[0]->Integer.Value);
306 Status = AcpiExSystemDoStall ((UINT32) Operand[0]->Integer.Value);
311 Status = AcpiExUnloadTable (Operand[0]);
344 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
357 Status = AcpiExLoadOp (Operand[0], Operand[
393 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
735 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
[all...]
H A Dexoparg2.c206 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
224 Node = (ACPI_NAMESPACE_NODE *) Operand[0];
228 Value = (UINT32) Operand[1]->Integer.Value;
280 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
315 Operand[0]->Integer.Value,
316 Operand[1]->Integer.Value,
336 Status = AcpiExStore (ReturnDesc2, Operand[2], WalkState);
342 Status = AcpiExStore (ReturnDesc1, Operand[3], WalkState);
390 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
416 Operand[
651 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
[all...]
H A Dexoparg6.c333 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
354 if ((Operand[1]->Integer.Value > MAX_MATCH_OPERATOR) ||
355 (Operand[3]->Integer.Value > MAX_MATCH_OPERATOR))
364 Index = Operand[5]->Integer.Value;
365 if (Index >= Operand[0]->Package.Count)
369 ACPI_FORMAT_UINT64 (Index), Operand[0]->Package.Count));
396 for ( ; Index < Operand[0]->Package.Count; Index++)
400 ThisElement = Operand[0]->Package.Elements[Index];
414 if (!AcpiExDoMatch ((UINT32) Operand[1]->Integer.Value,
415 ThisElement, Operand[
[all...]
H A Dexoparg3.c203 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
219 (UINT32) Operand[0]->Integer.Value,
220 (UINT32) Operand[1]->Integer.Value,
221 (UINT32) Operand[2]->Integer.Value));
226 Fatal->Type = (UINT32) Operand[0]->Integer.Value;
227 Fatal->Code = (UINT32) Operand[1]->Integer.Value;
228 Fatal->Argument = (UINT32) Operand[2]->Integer.Value;
285 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
305 (Operand[0])->Common.Type);
314 Index = Operand[
[all...]
H A Dexcreate.c492 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
510 ObjDesc->Processor.ProcId = (UINT8) Operand[1]->Integer.Value;
511 ObjDesc->Processor.Length = (UINT8) Operand[3]->Integer.Value;
512 ObjDesc->Processor.Address = (ACPI_IO_ADDRESS) Operand[2]->Integer.Value;
516 Status = AcpiNsAttachObject ((ACPI_NAMESPACE_NODE *) Operand[0],
544 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
562 ObjDesc->PowerResource.SystemLevel = (UINT8) Operand[1]->Integer.Value;
563 ObjDesc->PowerResource.ResourceOrder = (UINT16) Operand[2]->Integer.Value;
567 Status = AcpiNsAttachObject ((ACPI_NAMESPACE_NODE *) Operand[0],
597 ACPI_OPERAND_OBJECT **Operand local
[all...]
H A Dexconfig.c243 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; local
258 Operand[0]->String.Pointer,
259 Operand[1]->String.Pointer,
260 Operand[2]->String.Pointer, &TableIndex);
288 if (Operand[3]->String.Length > 0)
295 Operand[3]->String.Pointer, ACPI_NS_SEARCH_PARENT,
305 if (Operand[4]->String.Length > 0)
307 if ((Operand[4]->String.Pointer[0] != AML_ROOT_PREFIX) &&
308 (Operand[4]->String.Pointer[0] != AML_PARENT_PREFIX))
320 Operand[
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFExpression.cpp133 for (unsigned Operand = 0; Operand < 2; ++Operand) {
134 unsigned Size = Desc.Op[Operand];
142 Operands[Operand] = Data.getU8(&Offset);
144 Operands[Operand] = (int8_t)Operands[Operand];
147 Operands[Operand] = Data.getU16(&Offset);
149 Operands[Operand] = (int16_t)Operands[Operand];
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h180 struct Operand { struct in class:lldb_private::Instruction
189 std::vector<Operand> m_children;
197 static Operand BuildRegister(ConstString &r);
198 static Operand BuildImmediate(lldb::addr_t imm, bool neg);
199 static Operand BuildImmediate(int64_t imm);
200 static Operand BuildDereference(const Operand &ref);
201 static Operand BuildSum(const Operand &lhs, const Operand
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVVMReflect.cpp143 const Value *Operand = cast<Constant>(Sym)->getOperand(0); local
144 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Operand)) {
150 Operand = Initializer;
153 assert(isa<ConstantDataSequential>(Operand) &&
155 assert(cast<ConstantDataSequential>(Operand)->isCString() &&
158 StringRef ReflectArg = cast<ConstantDataSequential>(Operand)->getAsString();
H A DNVPTXGenericToNVVM.cpp112 Value *Operand = II->getOperand(i); local
113 if (isa<Constant>(Operand)) {
115 i, remapConstant(&M, &*I, cast<Constant>(Operand), Builder));
204 Value *Operand = C->getOperand(i); local
205 Value *NewOperand = remapConstant(M, F, cast<Constant>(Operand), Builder);
206 OperandChanged |= Operand != NewOperand;
243 Value *Operand = C->getOperand(i); local
244 Value *NewOperand = remapConstant(M, F, cast<Constant>(Operand), Builder);
245 OperandChanged |= Operand != NewOperand;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrBuilder.h19 // (Operand), Base, Scale, Index, Displacement.
93 unsigned Operand) {
95 const MachineOperand &Op0 = MI->getOperand(Operand);
104 const MachineOperand &Op1 = MI->getOperand(Operand + 1);
107 const MachineOperand &Op2 = MI->getOperand(Operand + 2);
110 const MachineOperand &Op3 = MI->getOperand(Operand + 3);
132 static inline void setDirectAddressInInstr(MachineInstr *MI, unsigned Operand, argument
135 MI->getOperand(Operand).ChangeToRegister(Reg, /*isDef=*/false);
136 MI->getOperand(Operand + 1).setImm(1);
137 MI->getOperand(Operand
92 getAddressFromInstr(const MachineInstr *MI, unsigned Operand) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp452 static std::pair<Operand, llvm::StringRef::const_iterator>
455 Operand ret;
456 ret.m_type = Operand::Type::Register;
464 return std::make_pair(Operand(), osi);
474 return std::make_pair(Operand(), osi);
481 return std::make_pair(Operand(), osi);
493 static std::pair<Operand, llvm::StringRef::const_iterator>
496 Operand ret;
497 ret.m_type = Operand::Type::Immediate;
510 return std::make_pair(Operand(), os
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp1352 Instruction::Operand Instruction::Operand::BuildRegister(ConstString &r) {
1353 Operand ret;
1359 Instruction::Operand Instruction::Operand::BuildImmediate(lldb::addr_t imm,
1361 Operand ret;
1368 Instruction::Operand Instruction::Operand::BuildImmediate(int64_t imm) {
1369 Operand ret;
1381 Instruction::Operand
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanValue.h138 for (VPValue *Operand : Operands)
139 addOperand(Operand);
156 void addOperand(VPValue *Operand) { argument
157 Operands.push_back(Operand);
158 Operand->addUser(*this);
163 assert(N < Operands.size() && "Operand index out of bounds");
/freebsd-12-stable/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DRandomIRBuilder.cpp70 static bool isCompatibleReplacement(const Instruction *I, const Use &Operand, argument
72 if (Operand->getType() != Replacement->getType())
80 if (Operand.getOperandNo() >= 1)
86 if (Operand.getOperandNo() >= 2)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DCodeMetrics.cpp35 for (const Value *Operand : U->operands())
36 if (Visited.insert(Operand).second)
37 if (isSafeToSpeculativelyExecute(Operand))
38 Worklist.push_back(Operand);
/freebsd-12-stable/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsopcode.c633 ACPI_OPERAND_OBJECT **Operand; local
663 Operand = &WalkState->Operands[0];
679 Operand[0]->String.Pointer,
680 Operand[1]->String.Pointer,
681 Operand[2]->String.Pointer, &TableIndex);
688 Operand[0]->String.Pointer,
689 Operand[1]->String.Pointer,
690 Operand[2]->String.Pointer));
720 AcpiUtRemoveReference (Operand[0]);
721 AcpiUtRemoveReference (Operand[
[all...]
/freebsd-12-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutmath.c238 * PARAMETERS: Operand - 64-bit shift operand
248 UINT64 Operand,
258 OperandOvl.Full = Operand;
283 * PARAMETERS: Operand - 64-bit shift operand
293 UINT64 Operand,
303 OperandOvl.Full = Operand;
367 UINT64 Operand,
379 *OutResult = Operand << Count;
397 UINT64 Operand,
409 *OutResult = Operand >> Coun
247 AcpiUtShortShiftLeft( UINT64 Operand, UINT32 Count, UINT64 *OutResult) argument
292 AcpiUtShortShiftRight( UINT64 Operand, UINT32 Count, UINT64 *OutResult) argument
366 AcpiUtShortShiftLeft( UINT64 Operand, UINT32 Count, UINT64 *OutResult) argument
396 AcpiUtShortShiftRight( UINT64 Operand, UINT32 Count, UINT64 *OutResult) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp1240 std::pair<const Instruction::Operand *, int64_t>
1241 GetBaseExplainingValue(const Instruction::Operand &operand,
1244 case Instruction::Operand::Type::Dereference:
1245 case Instruction::Operand::Type::Immediate:
1246 case Instruction::Operand::Type::Invalid:
1247 case Instruction::Operand::Type::Product:
1250 case Instruction::Operand::Type::Sum: {
1251 const Instruction::Operand *immediate_child = nullptr;
1252 const Instruction::Operand *variable_child = nullptr;
1253 if (operand.m_children[0].m_type == Instruction::Operand
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp27 enum MapKind { Operand, Imm, Reg }; enumerator in enum:__anon5933::PseudoLoweringEmitter::OpData::MapKind
30 unsigned Operand; // Operand number mapped to. member in union:__anon5933::PseudoLoweringEmitter::OpData::__anon5934
101 OperandMap[BaseIdx + i + I].Kind = OpData::Operand;
172 LLVM_DEBUG(dbgs() << " Operand mapping:\n");
176 if (OperandMap[Insn.Operands[i].MIOperandNo].Kind != OpData::Operand)
187 OperandMap[Insn.Operands[i].MIOperandNo + I].Data.Operand =
224 o << " // Operand: " << DestOperand.Name << "\n";
227 case OpData::Operand:
230 .Operand]
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h766 llvm::PointerUnion<Stmt *, TypeSourceInfo *> Operand; member in class:clang::CXXTypeidExpr
770 CXXTypeidExpr(QualType Ty, TypeSourceInfo *Operand, SourceRange R) argument
776 Operand->getType()->isDependentType(),
777 Operand->getType()->isInstantiationDependentType(),
778 Operand->getType()->containsUnexpandedParameterPack()),
779 Operand(Operand), Range(R) {}
781 CXXTypeidExpr(QualType Ty, Expr *Operand, SourceRange R) argument
787 Operand->isTypeDependent() || Operand
1002 llvm::PointerUnion<Stmt *, TypeSourceInfo *> Operand; member in class:clang::CXXUuidofExpr
1007 CXXUuidofExpr(QualType Ty, TypeSourceInfo *Operand, StringRef UuidStr, SourceRange R) argument
1015 CXXUuidofExpr(QualType Ty, Expr *Operand, StringRef UuidStr, SourceRange R) argument
1144 Stmt *Operand; member in class:clang::CXXThrowExpr
1151 CXXThrowExpr(Expr *Operand, QualType Ty, SourceLocation Loc, bool IsThrownVariableInScope) argument
3961 Stmt *Operand; member in class:clang::CXXNoexceptExpr
3965 CXXNoexceptExpr(QualType Ty, Expr *Operand, CanThrowResult Val, SourceLocation Keyword, SourceLocation RParen) argument
4703 CoawaitExpr(SourceLocation CoawaitLoc, Expr *Operand, Expr *Ready, Expr *Suspend, Expr *Resume, OpaqueValueExpr *OpaqueValue, bool IsImplicit = false) argument
4711 CoawaitExpr(SourceLocation CoawaitLoc, QualType Ty, Expr *Operand, bool IsImplicit = false) argument
4790 CoyieldExpr(SourceLocation CoyieldLoc, Expr *Operand, Expr *Ready, Expr *Suspend, Expr *Resume, OpaqueValueExpr *OpaqueValue) argument
4794 CoyieldExpr(SourceLocation CoyieldLoc, QualType Ty, Expr *Operand) argument
[all...]
/freebsd-12-stable/sys/contrib/edk2/Include/Library/
H A DBaseLib.h3199 This function shifts the 64-bit value Operand to the left by Count bits. The
3204 @param Operand The 64-bit operand to shift left.
3207 @return Operand << Count.
3213 IN UINT64 Operand,
3222 This function shifts the 64-bit value Operand to the right by Count bits. The
3227 @param Operand The 64-bit operand to shift right.
3230 @return Operand >> Count
3236 IN UINT64 Operand,
3245 This function shifts the 64-bit value Operand to the right by Count bits. The
3246 high Count bits are set to bit 63 of Operand
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DTruncInstCombine.cpp120 for (Value *Operand : Operands)
121 Worklist.push_back(Operand);
174 for (auto *Operand : Operands)
175 if (auto *IOp = dyn_cast<Instruction>(Operand))
189 for (auto *Operand : Operands)
190 if (auto *IOp = dyn_cast<Instruction>(Operand)) {
/freebsd-12-stable/sys/contrib/dev/acpica/components/disassembler/
H A Ddmcstyle.c182 ACPI_PARSE_OBJECT *Operand,
1071 * Operand - An operand associated with expression
1085 ACPI_PARSE_OBJECT *Operand,
1096 if (Target->Common.AmlOpcode != Operand->Common.AmlOpcode)
1103 if (Target->Common.Node != Operand->Common.Node)
1110 OpInfo = AcpiPsGetOpcodeInfo (Operand->Common.AmlOpcode);
1114 Operand->Common.Value.Arg, FALSE);
1127 Operand->Common.Next, FALSE);
1138 Operand->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
1083 AcpiDmIsTargetAnOperand( ACPI_PARSE_OBJECT *Target, ACPI_PARSE_OBJECT *Operand, BOOLEAN TopLevel) argument
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCloneModule.cpp193 for (const auto* Operand : NewNMD->operands())
194 Visited.insert(Operand);
195 for (const auto* Operand : NMD.operands()) {
196 auto* MappedOperand = MapMetadata(Operand, VMap);

Completed in 309 milliseconds

1234567