| /netbsd-src/external/apache2/llvm/dist/llvm/lib/FuzzMutate/ |
| H A D | Operations.cpp | 18 void llvm::describeFuzzerIntOps(std::vector<fuzzerop::OpDescriptor> &Ops) { in describeFuzzerIntOps() argument 19 Ops.push_back(binOpDescriptor(1, Instruction::Add)); in describeFuzzerIntOps() 20 Ops.push_back(binOpDescriptor(1, Instruction::Sub)); in describeFuzzerIntOps() 21 Ops.push_back(binOpDescriptor(1, Instruction::Mul)); in describeFuzzerIntOps() 22 Ops.push_back(binOpDescriptor(1, Instruction::SDiv)); in describeFuzzerIntOps() 23 Ops.push_back(binOpDescriptor(1, Instruction::UDiv)); in describeFuzzerIntOps() 24 Ops.push_back(binOpDescriptor(1, Instruction::SRem)); in describeFuzzerIntOps() 25 Ops.push_back(binOpDescriptor(1, Instruction::URem)); in describeFuzzerIntOps() 26 Ops.push_back(binOpDescriptor(1, Instruction::Shl)); in describeFuzzerIntOps() 27 Ops.push_back(binOpDescriptor(1, Instruction::LShr)); in describeFuzzerIntOps() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGBuiltin.cpp | 5341 Value *CodeGenFunction::EmitNeonCall(Function *F, SmallVectorImpl<Value*> &Ops, in EmitNeonCall() argument 5351 Ops[j] = EmitNeonShiftVector(Ops[j], ai->getType(), rightshift); in EmitNeonCall() 5353 Ops[j] = Builder.CreateBitCast(Ops[j], ai->getType(), name); in EmitNeonCall() 5357 return Builder.CreateConstrainedFPCall(F, Ops, name); in EmitNeonCall() 5359 return Builder.CreateCall(F, Ops, name); in EmitNeonCall() 6292 SmallVectorImpl<Value *> &Ops, const CallExpr *E) { in EmitCommonNeonSISDBuiltinExpr() argument 6314 std::swap(Ops[0], Ops[1]); in EmitCommonNeonSISDBuiltinExpr() 6330 if (Ops[j]->getType()->getPrimitiveSizeInBits() == in EmitCommonNeonSISDBuiltinExpr() 6334 assert(ArgTy->isVectorTy() && !Ops[j]->getType()->isVectorTy()); in EmitCommonNeonSISDBuiltinExpr() 6337 Ops[j] = CGF.Builder.CreateTruncOrBitCast( in EmitCommonNeonSISDBuiltinExpr() [all …]
|
| H A D | CGExprScalar.cpp | 710 Value *EmitMul(const BinOpInfo &Ops) { in EmitMul() argument 711 if (Ops.Ty->isSignedIntegerOrEnumerationType()) { in EmitMul() 714 return Builder.CreateMul(Ops.LHS, Ops.RHS, "mul"); in EmitMul() 717 return Builder.CreateNSWMul(Ops.LHS, Ops.RHS, "mul"); in EmitMul() 720 if (CanElideOverflowCheck(CGF.getContext(), Ops)) in EmitMul() 721 return Builder.CreateNSWMul(Ops.LHS, Ops.RHS, "mul"); in EmitMul() 722 return EmitOverflowCheckedBinOp(Ops); in EmitMul() 726 if (Ops.Ty->isConstantMatrixType()) { in EmitMul() 730 auto *BO = cast<BinaryOperator>(Ops.E); in EmitMul() 735 CodeGenFunction::CGFPOptionsRAII FPOptsRAII(CGF, Ops.FPFeatures); in EmitMul() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | Reassociate.cpp | 77 static void PrintOps(Instruction *I, const SmallVectorImpl<ValueEntry> &Ops) { in PrintOps() argument 80 << *Ops[0].Op->getType() << '\t'; in PrintOps() 81 for (unsigned i = 0, e = Ops.size(); i != e; ++i) { in PrintOps() 83 Ops[i].Op->printAsOperand(dbgs(), false, M); in PrintOps() 84 dbgs() << ", #" << Ops[i].Rank << "] "; in PrintOps() 454 SmallVectorImpl<RepeatedValue> &Ops) { in LinearizeExprTree() argument 619 Ops.push_back(std::make_pair(V, Weight)); in LinearizeExprTree() 625 if (Ops.empty()) { in LinearizeExprTree() 628 Ops.emplace_back(Identity, APInt(Bitwidth, 1)); in LinearizeExprTree() 637 SmallVectorImpl<ValueEntry> &Ops) { in RewriteExprTree() argument [all …]
|
| H A D | Float2Int.cpp | 255 Op = [](ArrayRef<ConstantRange> Ops) { in walkForwards() argument 256 assert(Ops.size() == 1 && "FNeg is a unary operator!"); in walkForwards() 257 unsigned Size = Ops[0].getBitWidth(); in walkForwards() 259 return Zero.sub(Ops[0]); in walkForwards() 266 Op = [I](ArrayRef<ConstantRange> Ops) { in walkForwards() argument 267 assert(Ops.size() == 2 && "its a binary operator!"); in walkForwards() 269 return Ops[0].binaryOp(BinOp, Ops[1]); in walkForwards() 279 Op = [I](ArrayRef<ConstantRange> Ops) { in walkForwards() argument 280 assert(Ops.size() == 1 && "FPTo[US]I is a unary operator!"); in walkForwards() 284 return Ops[0].castOp(CastOp, MaxIntegerBW+1); in walkForwards() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | MDBuilder.cpp | 63 SmallVector<Metadata *, 8> Ops; in createFunctionEntryCount() local 65 Ops.push_back(createString("synthetic_function_entry_count")); in createFunctionEntryCount() 67 Ops.push_back(createString("function_entry_count")); in createFunctionEntryCount() 68 Ops.push_back(createConstant(ConstantInt::get(Int64Ty, Count))); in createFunctionEntryCount() 73 Ops.push_back(createConstant(ConstantInt::get(Int64Ty, ID))); in createFunctionEntryCount() 75 return MDNode::get(Context, Ops); in createFunctionEntryCount() 101 SmallVector<Metadata *, 4> Ops; in createCallees() local 103 Ops.push_back(createConstant(F)); in createCallees() 104 return MDNode::get(Context, Ops); in createCallees() 110 SmallVector<Metadata *, 4> Ops; in createCallbackEncoding() local [all …]
|
| H A D | DebugInfoMetadata.cpp | 76 SmallVector<Metadata *, 2> Ops; in getImpl() local 77 Ops.push_back(Scope); in getImpl() 79 Ops.push_back(InlinedAt); in getImpl() 80 return storeImpl(new (Ops.size()) DILocation(Context, Storage, Line, Column, in getImpl() 81 Ops, ImplicitCode), in getImpl() 365 Metadata *Ops[] = {CountNode, LB, UB, Stride}; in getImpl() local 366 DEFINE_GETIMPL_STORE_NO_CONSTRUCTOR_ARGS(DISubrange, Ops); in getImpl() 459 Metadata *Ops[] = {CountNode, LB, UB, Stride}; in getImpl() local 460 DEFINE_GETIMPL_STORE_NO_CONSTRUCTOR_ARGS(DIGenericSubrange, Ops); in getImpl() 536 Metadata *Ops[] = {Name}; in getImpl() local [all …]
|
| H A D | ConstantsContext.h | 516 ArrayRef<Constant *> Ops; 540 ConstantExprKeyType(unsigned Opcode, ArrayRef<Constant *> Ops, 547 SubclassData(SubclassData), Ops(Ops), Indexes(Indexes), 553 SubclassData(CE->isCompare() ? CE->getPredicate() : 0), Ops(Operands), 567 Ops = Storage; 572 SubclassOptionalData == X.SubclassOptionalData && Ops == X.Ops && 582 if (Ops.size() != CE->getNumOperands()) 586 for (unsigned I = 0, E = Ops.size(); I != E; ++I) 587 if (Ops[I] != CE->getOperand(I)) 601 hash_combine_range(Ops.begin(), Ops.end()), [all …]
|
| H A D | IRBuilder.cpp | 72 static CallInst *createCallHelper(Function *Callee, ArrayRef<Value *> Ops, in createCallHelper() argument 77 CallInst *CI = Builder->CreateCall(Callee, Ops, OpBundles, Name); 118 Value *Ops[] = {Ptr, Val, Size, getInt1(isVolatile)}; in CreateMemSet() local 123 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemSet() 146 Value *Ops[] = {Ptr, Val, Size, getInt32(ElementSize)}; in CreateElementUnorderedAtomicMemSet() local 152 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateElementUnorderedAtomicMemSet() 176 Value *Ops[] = {Dst, Src, Size, getInt1(isVolatile)}; in CreateMemTransferInst() local 181 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemTransferInst() 213 Value *Ops[] = {Dst, Src, Size, IsVolatile}; in CreateMemCpyInline() local 219 CallInst *CI = createCallHelper(TheFn, Ops, this); in CreateMemCpyInline() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | riscv_vector.td | 555 IntrinsicTypes = {ResultType, Ops[1]->getType()}; 556 Ops[0] = Builder.CreateBitCast(Ops[0], ResultType->getPointerTo()); 560 std::rotate(Ops.begin(), Ops.begin() + 1, Ops.end() - 1); 561 IntrinsicTypes = {ResultType, Ops[3]->getType()}; 562 Ops[1] = Builder.CreateBitCast(Ops[1], ResultType->getPointerTo()); 590 IntrinsicTypes = {ResultType, Ops[2]->getType()}; 591 Ops[0] = Builder.CreateBitCast(Ops[0], ResultType->getPointerTo()); 592 Value *NewVL = Ops[1]; 593 Ops.erase(Ops.begin() + 1); 595 llvm::Value *LoadValue = Builder.CreateCall(F, Ops, ""); [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMISelDAGToDAG.cpp | 224 void AddMVEPredicateToOps(SDValueVector &Ops, SDLoc Loc, 227 void AddMVEPredicateToOps(SDValueVector &Ops, SDLoc Loc, 231 void AddEmptyMVEPredicateToOps(SDValueVector &Ops, SDLoc Loc); 233 void AddEmptyMVEPredicateToOps(SDValueVector &Ops, SDLoc Loc, EVT InactiveTy); 1630 SDValue Ops[]= { Base, AMOpc, getAL(CurDAG, SDLoc(N)), in tryARMIndexedLoad() local 1633 MVT::Other, Ops); in tryARMIndexedLoad() 1640 SDValue Ops[]= { Base, Offset, AMOpc, getAL(CurDAG, SDLoc(N)), in tryARMIndexedLoad() local 1643 MVT::Other, Ops); in tryARMIndexedLoad() 1671 SDValue Ops[]= { Base, getAL(CurDAG, SDLoc(N)), in tryT1IndexedLoad() local 1674 MVT::i32, MVT::Other, Ops); in tryT1IndexedLoad() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMUnwindOpAsm.h | 27 SmallVector<uint8_t, 32> Ops; 38 Ops.clear(); in Reset() 63 Ops.insert(Ops.end(), Opcodes.begin(), Opcodes.end()); in EmitRaw() 73 Ops.push_back(Opcode & 0xff); in EmitInt8() 78 Ops.push_back((Opcode >> 8) & 0xff); in EmitInt16() 79 Ops.push_back(Opcode & 0xff); in EmitInt16() 84 Ops.insert(Ops.end(), Opcode, Opcode + Size); in emitBytes()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/XCore/ |
| H A D | XCoreISelDAGToDAG.cpp | 163 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), in Select() local 166 MVT::i32, Ops)); in Select() 170 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), in Select() local 173 MVT::i32, Ops)); in Select() 177 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), in Select() local 180 MVT::i32, Ops)); in Select() 184 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), in Select() local 187 MVT::i32, Ops)); in Select() 191 SDValue Ops[] = { N->getOperand(0), N->getOperand(1), in Select() local 194 MVT::i32, Ops)); in Select() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/Utils/ |
| H A D | AArch64BaseInfo.cpp | 138 SmallVector<StringRef, 5> Ops; in parseGenericRegister() local 139 if (!GenericRegPattern.match(UpperName, &Ops)) in parseGenericRegister() 144 Ops[1].getAsInteger(10, Op0); in parseGenericRegister() 145 Ops[2].getAsInteger(10, Op1); in parseGenericRegister() 146 Ops[3].getAsInteger(10, CRn); in parseGenericRegister() 147 Ops[4].getAsInteger(10, CRm); in parseGenericRegister() 148 Ops[5].getAsInteger(10, Op2); in parseGenericRegister()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/FuzzMutate/ |
| H A D | Operations.h | 25 void describeFuzzerIntOps(std::vector<fuzzerop::OpDescriptor> &Ops); 26 void describeFuzzerFloatOps(std::vector<fuzzerop::OpDescriptor> &Ops); 27 void describeFuzzerControlFlowOps(std::vector<fuzzerop::OpDescriptor> &Ops); 28 void describeFuzzerPointerOps(std::vector<fuzzerop::OpDescriptor> &Ops); 29 void describeFuzzerAggregateOps(std::vector<fuzzerop::OpDescriptor> &Ops); 30 void describeFuzzerVectorOps(std::vector<fuzzerop::OpDescriptor> &Ops);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineNegator.cpp | 124 std::array<Value *, 2> Ops{I->getOperand(0), I->getOperand(1)}; in getSortedOperandsOfBinOp() local 127 std::swap(Ops[0], Ops[1]); in getSortedOperandsOfBinOp() 128 return Ops; in getSortedOperandsOfBinOp() 176 std::array<Value *, 2> Ops = getSortedOperandsOfBinOp(I); in visitImpl() local 178 if (match(Ops[1], m_One())) in visitImpl() 179 return Builder.CreateNot(Ops[0], I->getName() + ".neg"); in visitImpl() 368 std::array<Value *, 2> Ops = getSortedOperandsOfBinOp(I); in visitImpl() local 371 if (match(Ops[1], m_One())) in visitImpl() 372 return Builder.CreateNot(Ops[0], I->getName() + ".neg"); in visitImpl() 406 std::array<Value *, 2> Ops = getSortedOperandsOfBinOp(I); in visitImpl() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | IntrinsicLowering.cpp | 340 Value *Ops[3]; in LowerIntrinsicCall() local 341 Ops[0] = CI->getArgOperand(0); in LowerIntrinsicCall() 342 Ops[1] = CI->getArgOperand(1); in LowerIntrinsicCall() 343 Ops[2] = Size; in LowerIntrinsicCall() 344 ReplaceCallWith("memcpy", CI, Ops, Ops+3, CI->getArgOperand(0)->getType()); in LowerIntrinsicCall() 351 Value *Ops[3]; in LowerIntrinsicCall() local 352 Ops[0] = CI->getArgOperand(0); in LowerIntrinsicCall() 353 Ops[1] = CI->getArgOperand(1); in LowerIntrinsicCall() 354 Ops[2] = Size; in LowerIntrinsicCall() 355 ReplaceCallWith("memmove", CI, Ops, Ops+3, CI->getArgOperand(0)->getType()); in LowerIntrinsicCall() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86PartialReduction.cpp | 254 SmallVector<Value *, 4> Ops(NumSplits); in trySADReplacement() local 260 Ops[i] = Builder.CreateCall(PSADBWFn, {ExtractOp0, ExtractOp1}); in trySADReplacement() 261 Ops[i] = Builder.CreateBitCast(Ops[i], I32Ty); in trySADReplacement() 268 cast<FixedVectorType>(Ops[0]->getType())->getNumElements() * 2; in trySADReplacement() 272 Ops[i] = Builder.CreateShuffleVector(Ops[i*2], Ops[i*2+1], ConcatMask); in trySADReplacement() 281 Ops[0] = Builder.CreateShuffleVector(Ops[0], Ops[0], ArrayRef<int>{0, 1}); in trySADReplacement() 285 cast<FixedVectorType>(Ops[0]->getType())->getNumElements(); in trySADReplacement() 291 Value *Zero = Constant::getNullValue(Ops[0]->getType()); in trySADReplacement() 292 Ops[0] = Builder.CreateShuffleVector(Ops[0], Zero, ConcatMask); in trySADReplacement() 295 SI->replaceAllUsesWith(Ops[0]); in trySADReplacement()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | StatepointLowering.cpp | 77 static void pushStackMapConstant(SmallVectorImpl<SDValue>& Ops, in pushStackMapConstant() argument 80 Ops.push_back(Builder.DAG.getTargetConstant(StackMaps::ConstantOp, L, in pushStackMapConstant() 82 Ops.push_back(Builder.DAG.getTargetConstant(Value, L, MVT::i64)); in pushStackMapConstant() 416 SmallVectorImpl<SDValue> &Ops, in lowerIncomingStatepointValue() argument 427 Ops.push_back(Builder.DAG.getTargetFrameIndex(FI->getIndex(), in lowerIncomingStatepointValue() 443 pushStackMapConstant(Ops, Builder, 0xFEFEFEFE); in lowerIncomingStatepointValue() 452 pushStackMapConstant(Ops, Builder, C->getSExtValue()); in lowerIncomingStatepointValue() 455 pushStackMapConstant(Ops, Builder, in lowerIncomingStatepointValue() 473 Ops.push_back(Incoming); in lowerIncomingStatepointValue() 482 Ops.push_back(std::get<0>(Res)); in lowerIncomingStatepointValue() [all …]
|
| H A D | SelectionDAG.cpp | 567 ArrayRef<SDValue> Ops) { in AddNodeIDOperands() argument 568 for (auto& Op : Ops) { in AddNodeIDOperands() 576 ArrayRef<SDUse> Ops) { in AddNodeIDOperands() argument 577 for (auto& Op : Ops) { in AddNodeIDOperands() 1075 SDValue Ops[] = { Op }; in FindModifiedNodeSlot() local 1077 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops); in FindModifiedNodeSlot() 1095 SDValue Ops[] = { Op1, Op2 }; in FindModifiedNodeSlot() local 1097 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops); in FindModifiedNodeSlot() 1109 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, ArrayRef<SDValue> Ops, in FindModifiedNodeSlot() argument 1115 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops); in FindModifiedNodeSlot() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 847 static void GroupByComplexity(SmallVectorImpl<const SCEV *> &Ops, in GroupByComplexity() argument 849 if (Ops.size() < 2) return; // Noop in GroupByComplexity() 860 if (Ops.size() == 2) { in GroupByComplexity() 863 const SCEV *&LHS = Ops[0], *&RHS = Ops[1]; in GroupByComplexity() 870 llvm::stable_sort(Ops, [&](const SCEV *LHS, const SCEV *RHS) { in GroupByComplexity() 878 for (unsigned i = 0, e = Ops.size(); i != e-2; ++i) { in GroupByComplexity() 879 const SCEV *S = Ops[i]; in GroupByComplexity() 884 for (unsigned j = i+1; j != e && Ops[j]->getSCEVType() == Complexity; ++j) { in GroupByComplexity() 885 if (Ops[j] == S) { // Found a duplicate. in GroupByComplexity() 887 std::swap(Ops[i+1], Ops[j]); in GroupByComplexity() [all …]
|
| H A D | ConstantFolding.cpp | 152 Constant *Ops = C; // don't take the address of C! in FoldBitCast() local 153 return FoldBitCast(ConstantVector::get(Ops), DestTy, DL); in FoldBitCast() 803 Constant *CastGEPIndices(Type *SrcElemTy, ArrayRef<Constant *> Ops, in CastGEPIndices() argument 811 for (unsigned i = 1, e = Ops.size(); i != e; ++i) { in CastGEPIndices() 814 SrcElemTy, Ops.slice(1, i - 1)))) && in CastGEPIndices() 815 Ops[i]->getType()->getScalarType() != IntIdxScalarTy) { in CastGEPIndices() 817 Type *NewType = Ops[i]->getType()->isVectorTy() in CastGEPIndices() 820 NewIdxs.push_back(ConstantExpr::getCast(CastInst::getCastOpcode(Ops[i], in CastGEPIndices() 824 Ops[i], NewType)); in CastGEPIndices() 826 NewIdxs.push_back(Ops[i]); in CastGEPIndices() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAG.h | 747 SDValue Ops[] = { Chain, getRegister(Reg, N.getValueType()), N, Glue }; 749 makeArrayRef(Ops, Glue.getNode() ? 4 : 3)); 756 SDValue Ops[] = { Chain, Reg, N, Glue }; 758 makeArrayRef(Ops, Glue.getNode() ? 4 : 3)); 763 SDValue Ops[] = { Chain, getRegister(Reg, VT) }; 764 return getNode(ISD::CopyFromReg, dl, VTs, Ops); 773 SDValue Ops[] = { Chain, getRegister(Reg, VT), Glue }; 775 makeArrayRef(Ops, Glue.getNode() ? 3 : 2)); 790 SDValue getBuildVector(EVT VT, const SDLoc &DL, ArrayRef<SDValue> Ops) { 792 return getNode(ISD::BUILD_VECTOR, DL, VT, Ops); [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| H A D | PoisonChecking.cpp | 90 static Value *buildOrChain(IRBuilder<> &B, ArrayRef<Value*> Ops) { in buildOrChain() argument 91 if (Ops.size() == 0) in buildOrChain() 94 for (; i < Ops.size() && isConstantFalse(Ops[i]); i++) {} in buildOrChain() 95 if (i == Ops.size()) in buildOrChain() 97 Value *Accum = Ops[i++]; in buildOrChain() 98 for (; i < Ops.size(); i++) in buildOrChain() 99 if (!isConstantFalse(Ops[i])) in buildOrChain() 100 Accum = B.CreateOr(Accum, Ops[i]); in buildOrChain()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 300 DISubrange(LLVMContext &C, StorageType Storage, ArrayRef<Metadata *> Ops) in DISubrange() argument 301 : DINode(C, DISubrangeKind, Storage, dwarf::DW_TAG_subrange_type, Ops) {} in DISubrange() 367 ArrayRef<Metadata *> Ops) in DIGenericSubrange() argument 369 dwarf::DW_TAG_generic_subrange, Ops) {} in DIGenericSubrange() 418 bool IsUnsigned, ArrayRef<Metadata *> Ops) in DIEnumerator() argument 419 : DINode(C, DIEnumeratorKind, Storage, dwarf::DW_TAG_enumerator, Ops), in DIEnumerator() 424 bool IsUnsigned, ArrayRef<Metadata *> Ops) in DIEnumerator() argument 426 Ops) {} in DIEnumerator() 479 ArrayRef<Metadata *> Ops) in DIScope() argument 480 : DINode(C, ID, Storage, Tag, Ops) {} in DIScope() [all …]
|