/freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
H A D | llvm-debuginfo-analyzer.cpp | 119 std::vector<std::string> Objs = expandBundle(Filename); in main() local 120 Objects.insert(Objects.end(), Objs.begin(), Objs.end()); in main()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | IRSymtab.cpp | 107 void writeRange(storage::Range<T> &R, const std::vector<T> &Objs) { in writeRange() 109 R.Size = Objs.size(); in writeRange() 110 Symtab.insert(Symtab.end(), reinterpret_cast<const char *>(Objs.data()), in writeRange() 111 reinterpret_cast<const char *>(Objs.data() + Objs.size())); in writeRange()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsDelaySlotFiller.cpp | 499 SmallVector<ValueType, 4> Objs; in hasHazard_() local 500 if (getUnderlyingObjects(MI, Objs)) { in hasHazard_() 501 for (ValueType VT : Objs) in hasHazard_() 541 SmallVector<const Value *, 4> Objs; in getUnderlyingObjects() local 542 ::getUnderlyingObjects(V, Objs); in getUnderlyingObjects() 544 for (const Value *UValue : Objs) { in getUnderlyingObjects()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ScheduleDAGInstrs.cpp | 158 SmallVector<Value *, 4> Objs; in getUnderlyingObjectsForInstr() local 159 if (!getUnderlyingObjectsForCodeGen(V, Objs)) in getUnderlyingObjectsForInstr() 162 for (Value *V : Objs) { in getUnderlyingObjectsForInstr() 949 UnderlyingObjectsVector Objs; in buildSchedGraph() local 950 bool ObjsFound = getUnderlyingObjectsForInstr(&MI, MFI, Objs, in buildSchedGraph() 966 for (const UnderlyingObject &UnderlObj : Objs) { in buildSchedGraph() 976 for (const UnderlyingObject &UnderlObj : Objs) { in buildSchedGraph() 996 for (const UnderlyingObject &UnderlObj : Objs) { in buildSchedGraph()
|
H A D | StackColoring.cpp | 1066 SmallVector<Value *, 4> Objs; in remapInstructions() local 1067 getUnderlyingObjectsForCodeGen(MMOV, Objs); in remapInstructions() 1069 if (Objs.empty()) in remapInstructions() 1072 for (Value *V : Objs) { in remapInstructions()
|
H A D | MachinePipeliner.cpp | 819 SmallVectorImpl<const Value *> &Objs) { in getUnderlyingObjects() argument 825 getUnderlyingObjects(MM->getValue(), Objs); in getUnderlyingObjects() 826 for (const Value *V : Objs) { in getUnderlyingObjects() 828 Objs.clear(); in getUnderlyingObjects() 847 SmallVector<const Value *, 4> Objs; in addLoopCarriedDependences() local 848 ::getUnderlyingObjects(&MI, Objs); in addLoopCarriedDependences() 849 if (Objs.empty()) in addLoopCarriedDependences() 850 Objs.push_back(UnknownValue); in addLoopCarriedDependences() 851 for (const auto *V : Objs) { in addLoopCarriedDependences() 856 SmallVector<const Value *, 4> Objs; in addLoopCarriedDependences() local [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Edit/ |
H A D | RewriteObjCFoundationAPI.cpp | 441 SmallVectorImpl<const Expr *> &Objs) { in getNSArrayObjects() argument 464 Objs.push_back(Msg->getArg(0)); in getNSArrayObjects() 477 Objs.push_back(Msg->getArg(i)); in getNSArrayObjects() 483 Objs.push_back(ArrLit->getElement(i)); in getNSArrayObjects()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | DataFlowSanitizer.cpp | 2258 SmallVector<const Value *, 2> Objs; in loadShadowOriginSansLoadTracking() local 2259 getUnderlyingObjects(Addr, Objs); in loadShadowOriginSansLoadTracking() 2261 for (const Value *Obj : Objs) { in loadShadowOriginSansLoadTracking()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXISelDAGToDAG.cpp | 747 SmallVector<const Value *, 8> Objs; in canLowerToLDG() local 748 getUnderlyingObjects(N->getMemOperand()->getValue(), Objs); in canLowerToLDG() 750 return all_of(Objs, [&](const Value *V) { in canLowerToLDG()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ValueTracking.cpp | 6703 SmallVector<const Value *, 4> Objs; in getUnderlyingObjectsForCodeGen() local 6704 getUnderlyingObjects(V, Objs); in getUnderlyingObjectsForCodeGen() 6706 for (const Value *V : Objs) { in getUnderlyingObjectsForCodeGen()
|