| /src/sys/external/bsd/acpica/dist/parser/ |
| pswalk.c | 3 * Module Name: pswalk - Parser routines to walk parsed op tree(s) 70 ACPI_PARSE_OBJECT *Op = SubtreeRoot; 83 while (Op) 85 if (Op != Parent) 94 AcpiPsGetOpcodeName (Op->Common.AmlOpcode), Op); 96 if (Op->Named.AmlOpcode == AML_INT_NAMEPATH_OP) 98 AcpiOsPrintf (" %4.4s", Op->Common.Value.String); 100 if (Op->Named.AmlOpcode == AML_STRING_OP) 102 AcpiOsPrintf (" %s", Op->Common.Value.String) [all...] |
| psloop.c | 71 ACPI_PARSE_OBJECT *Op); 79 * AmlOpStart - Op start in AML 80 * Op - Current Op 84 * DESCRIPTION: Get arguments for passed Op. 92 ACPI_PARSE_OBJECT *Op) 102 "Get arguments for opcode [%s]\n", Op->Common.AmlOpName)); 104 switch (Op->Common.AmlOpcode) 115 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), Op); 121 &(WalkState->ParserState), Op, ACPI_POSSIBLE_METHOD_CALL) [all...] |
| psopinfo.c | 174 const ACPI_OPCODE_INFO *Op; 177 Op = AcpiPsGetOpcodeInfo (Opcode); 181 return __UNCONST(Op->Name);
|
| psxface.c | 135 ACPI_PARSE_OBJECT *Op; 175 Op = AcpiPsCreateScopeOp (Info->ObjDesc->Method.AmlStart); 176 if (!Op) 193 Status = AcpiDsInitAmlWalk (WalkState, Op, Info->Node, 249 AcpiPsDeleteParseTree (Op); 301 ACPI_PARSE_OBJECT *Op = NULL; 310 Op = AcpiPsCreateScopeOp (Info->ObjDesc->Method.AmlStart); 311 if (!Op) 327 Status = AcpiDsInitAmlWalk (WalkState, Op, Info->Node, 368 if (Op) [all...] |
| psobject.c | 182 * AmlOpStart - Begin of named Op in AML 183 * UnnamedOp - Early Op (not a named Op) 184 * Op - Returned Op 188 * DESCRIPTION: Parse a named Op 197 ACPI_PARSE_OBJECT **Op) 257 WalkState->Op = NULL; 259 Status = WalkState->DescendingCallback (WalkState, Op); 269 if (!*Op) [all...] |
| psutils.c | 62 * DESCRIPTION: Create a Scope and associated namepath op with the root name 88 * PARAMETERS: Op - A newly allocated Op object 89 * Opcode - Opcode to store in the Op 93 * DESCRIPTION: Initialize a parse (Op) object 99 ACPI_PARSE_OBJECT *Op, 105 Op->Common.DescriptorType = ACPI_DESC_TYPE_PARSER; 106 Op->Common.AmlOpcode = Opcode; 108 ACPI_DISASM_ONLY_MEMBERS (AcpiUtSafeStrncpy (Op->Common.AmlOpName, 110 sizeof (Op->Common.AmlOpName))) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| Disasm.cpp | 51 auto Op = PC.read<Opcode>(); 53 switch (Op) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| AMDGPUGlobalISelUtils.cpp | 24 const MachineOperand &Op = Def->getOperand(1); 25 if (Op.isImm()) 26 Offset = Op.getImm(); 28 Offset = Op.getCImm()->getZExtValue();
|
| /src/sys/external/bsd/acpica/dist/compiler/ |
| asllength.c | 57 ACPI_PARSE_OBJECT *Op, 62 ACPI_PARSE_OBJECT *Op); 68 ACPI_PARSE_OBJECT *Op, 89 ACPI_PARSE_OBJECT *Op, 94 Op->Asl.AmlSubtreeLength = 0; 122 ACPI_PARSE_OBJECT *Op, 129 CgGenerateAmlLengths (Op); 133 if ((Op->Asl.Parent) && 134 (Op->Asl.ParseOpcode != PARSEOP_DEFAULT_ARG)) 136 Op->Asl.Parent->Asl.AmlSubtreeLength += [all...] |
| aslnamesp.c | 175 ACPI_PARSE_OBJECT *Op; 184 Op = Node->Op; 187 if (!Op) 227 if (Op->Asl.ParseOpcode == PARSEOP_NAME) 229 Op = Op->Asl.Child; 232 if ((Op->Asl.ParseOpcode == PARSEOP_NAMESEG) || 233 (Op->Asl.ParseOpcode == PARSEOP_NAMESTRING)) 235 Op = Op->Asl.Next [all...] |
| aslmaputils.c | 77 ACPI_PARSE_OBJECT *Op; 82 Op = HidNode->Op; 83 if (!Op) 90 switch (Op->Asl.ParseOpcode) 94 Arg = Op->Asl.Child; /* Get the NameSeg/NameString node */ 232 * PARAMETERS: Op - Parse Op to be examined 238 * DESCRIPTION: Find the parent Device or Scope Op, get the full pathname to 245 ACPI_PARSE_OBJECT *Op, [all...] |
| /src/sys/external/bsd/acpica/dist/disassembler/ |
| dmdeferred.c | 59 ACPI_PARSE_OBJECT *Op, 81 ACPI_PARSE_OBJECT *Op = Root; 90 while (Op) 92 OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode); 95 Op = AcpiPsGetDepthNext (Root, Op); 101 switch (Op->Common.AmlOpcode) 109 Op, Op->Named.Data, Op->Named.Length) [all...] |
| /src/sys/external/bsd/acpica/dist/dispatcher/ |
| dsargs.c | 88 ACPI_PARSE_OBJECT *Op; 95 /* Allocate a new parser op to be the root of the parsed tree */ 97 Op = AcpiPsAllocOp (AML_INT_EVAL_SUBTREE_OP, AmlStart); 98 if (!Op) 105 Op->Common.Node = ScopeNode; 116 Status = AcpiDsInitAmlWalk (WalkState, Op, NULL, AmlStart, 137 /* Get and init the Op created above */ 139 Op->Common.Node = Node; 140 AcpiPsDeleteParseTree (Op); 144 Op = AcpiPsAllocOp (AML_INT_EVAL_SUBTREE_OP, AmlStart) [all...] |
| dswexec.c | 121 Status = AcpiDsCreateOperand (WalkState, WalkState->Op, 0); 196 "Completed a predicate eval=%X Op=%p\n", 197 WalkState->ControlState->Common.Value, WalkState->Op)); 223 * OutOp - Where to return op if a new one is created 238 ACPI_PARSE_OBJECT *Op; 246 Op = WalkState->Op; 247 if (!Op) 255 Op = *OutOp; 256 WalkState->Op = Op [all...] |
| dswload.c | 135 * OutOp - Where to return op if a new one is created 148 ACPI_PARSE_OBJECT *Op; 156 ACPI_FUNCTION_TRACE_PTR (DsLoad1BeginOp, WalkState->Op); 159 Op = WalkState->Op; 160 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Op=%p State=%p\n", Op, WalkState)); 164 if (Op) 168 *OutOp = Op; 174 if (Op->Common.Node [all...] |
| dswload2.c | 65 * OutOp - Where to return op if a new one is created 78 ACPI_PARSE_OBJECT *Op; 89 Op = WalkState->Op; 90 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Op=%p State=%p\n", Op, WalkState)); 92 if (Op) 117 /* For Namepath op, get the path string */ 119 BufferPtr = Op->Common.Value.String; 129 /* Get name from the op */ [all...] |
| /src/sys/external/bsd/acpica/dist/tools/acpihelp/ |
| ahaml.c | 51 const AH_AML_OPCODE *Op); 55 const AH_AML_TYPE *Op); 76 const AH_AML_OPCODE *Op; 84 for (Op = Gbl_AmlOpcodeInfo; Op->OpcodeString; Op++) 86 if (!Op->OpcodeName) /* Unused opcodes */ 93 AhDisplayAmlOpcode (Op); 100 strcpy (Gbl_Buffer, Op->OpcodeName); 105 AhDisplayAmlOpcode (Op); [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| DivZeroChecker.cpp | 59 BinaryOperator::Opcode Op = B->getOpcode(); 60 if (Op != BO_Div && 61 Op != BO_Rem && 62 Op != BO_DivAssign && 63 Op != BO_RemAssign)
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/Utils/ |
| Local.h | 47 Value *Op = *i; 50 if (Constant *OpC = dyn_cast<Constant>(Op)) { 76 if (IntIdxTy->isVectorTy() && !Op->getType()->isVectorTy()) 77 Op = Builder->CreateVectorSplat( 78 cast<FixedVectorType>(IntIdxTy)->getNumElements(), Op); 81 if (Op->getType() != IntIdxTy) 82 Op = Builder->CreateIntCast(Op, IntIdxTy, true, Op->getName().str()+".c"); 85 Op = Builder->CreateMul(Op, ConstantInt::get(IntIdxTy, Size) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| TypeMetadataUtils.cpp | 143 unsigned Op = SL->getElementContainingOffset(Offset); 144 return getPointerAtOffset(cast<Constant>(I->getOperand(Op)), 145 Offset - SL->getElementOffset(Op), M); 151 unsigned Op = Offset / ElemSize; 152 if (Op >= C->getNumOperands()) 155 return getPointerAtOffset(cast<Constant>(I->getOperand(Op)),
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/ |
| ARMMCTargetDesc.h | 53 const auto &Op = MI.getOperand(I); 54 if (Op.isReg() && Op.getReg() == BaseReg) 119 inline bool isVpred(OperandType op) { 120 return op == OPERAND_VPRED_R || op == OPERAND_VPRED_N; 122 inline bool isVpred(uint8_t op) { 123 return isVpred(static_cast<OperandType>(op));
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/ |
| AVRInstPrinter.cpp | 121 const MCOperand &Op = MI->getOperand(OpNo); 123 if (Op.isReg()) { 129 O << getRegisterName(Op.getReg(), AVR::ptr); 131 O << getPrettyRegisterName(Op.getReg(), MRI); 133 } else if (Op.isImm()) { 134 O << formatImm(Op.getImm()); 136 assert(Op.isExpr() && "Unknown operand kind in printOperand"); 137 O << *Op.getExpr(); 155 const MCOperand &Op = MI->getOperand(OpNo); 157 if (Op.isImm()) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/MCTargetDesc/ |
| BPFInstPrinter.cpp | 54 const MCOperand &Op = MI->getOperand(OpNo); 55 if (Op.isReg()) { 56 O << getRegisterName(Op.getReg()); 57 } else if (Op.isImm()) { 58 O << formatImm((int32_t)Op.getImm()); 60 assert(Op.isExpr() && "Expected an expression"); 61 printExpr(Op.getExpr(), O); 88 const MCOperand &Op = MI->getOperand(OpNo); 89 if (Op.isImm()) 90 O << formatImm(Op.getImm()) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/MCTargetDesc/ |
| MSP430InstPrinter.cpp | 39 const MCOperand &Op = MI->getOperand(OpNo); 40 if (Op.isImm()) { 41 int64_t Imm = Op.getImm() * 2 + 2; 47 assert(Op.isExpr() && "unknown pcrel immediate operand"); 48 Op.getExpr()->print(O, &MAI); 55 const MCOperand &Op = MI->getOperand(OpNo); 56 if (Op.isReg()) { 57 O << getRegisterName(Op.getReg()); 58 } else if (Op.isImm()) { 59 O << '#' << Op.getImm() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTXInstrInfo.cpp | 43 unsigned Op; 45 Op = NVPTX::IMOV1rr; 47 Op = NVPTX::IMOV16rr; 49 Op = (SrcRC == &NVPTX::Int32RegsRegClass ? NVPTX::IMOV32rr 52 Op = (SrcRC == &NVPTX::Int64RegsRegClass ? NVPTX::IMOV64rr 55 Op = (SrcRC == &NVPTX::Float16RegsRegClass ? NVPTX::FMOV16rr 58 Op = NVPTX::IMOV32rr; 60 Op = (SrcRC == &NVPTX::Float32RegsRegClass ? NVPTX::FMOV32rr 63 Op = (SrcRC == &NVPTX::Float64RegsRegClass ? NVPTX::FMOV64rr 68 BuildMI(MBB, I, DL, get(Op), DestReg [all...] |