Searched refs:Objs (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DIRSymtab.cpp100 void writeRange(storage::Range<T> &R, const std::vector<T> &Objs) { argument
102 R.Size = Objs.size();
103 Symtab.insert(Symtab.end(), reinterpret_cast<const char *>(Objs.data()),
104 reinterpret_cast<const char *>(Objs.data() + Objs.size()));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp156 SmallVector<Value *, 4> Objs;
157 if (!getUnderlyingObjectsForCodeGen(V, Objs, DL))
160 for (Value *V : Objs) {
933 // Find the underlying objects for MI. The Objs vector is either
936 UnderlyingObjectsVector Objs; local
937 bool ObjsFound = getUnderlyingObjectsForInstr(&MI, MFI, Objs,
953 for (const UnderlyingObject &UnderlObj : Objs) {
963 for (const UnderlyingObject &UnderlObj : Objs) {
983 for (const UnderlyingObject &UnderlObj : Objs) {
H A DStackColoring.cpp1050 SmallVector<Value *, 4> Objs; local
1051 getUnderlyingObjectsForCodeGen(MMOV, Objs, MF->getDataLayout());
1053 if (Objs.empty())
1056 for (Value *V : Objs) {
H A DMachinePipeliner.cpp708 SmallVectorImpl<const Value *> &Objs,
715 GetUnderlyingObjects(MM->getValue(), Objs, DL);
716 for (const Value *V : Objs) {
718 Objs.clear();
721 Objs.push_back(V);
738 SmallVector<const Value *, 4> Objs; local
739 getUnderlyingObjects(&MI, Objs, MF.getDataLayout());
740 if (Objs.empty())
741 Objs.push_back(UnknownValue);
742 for (auto V : Objs) {
707 getUnderlyingObjects(const MachineInstr *MI, SmallVectorImpl<const Value *> &Objs, const DataLayout &DL) argument
747 SmallVector<const Value *, 4> Objs; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp502 SmallVector<ValueType, 4> Objs; local
503 if (getUnderlyingObjects(MI, Objs)) {
504 for (ValueType VT : Objs)
544 SmallVector<const Value *, 4> Objs; local
545 GetUnderlyingObjects(V, Objs, DL);
547 for (const Value *UValue : Objs) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp440 SmallVectorImpl<const Expr *> &Objs) {
463 Objs.push_back(Msg->getArg(0));
476 Objs.push_back(Msg->getArg(i));
482 Objs.push_back(ArrLit->getElement(i));
439 getNSArrayObjects(const Expr *E, const NSAPI &NS, SmallVectorImpl<const Expr *> &Objs) argument
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp672 auto Objs = expandBundle(F); local
673 Objects.insert(Objects.end(), Objs.begin(), Objs.end());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp1259 SmallVector<const Value *, 2> Objs; local
1260 GetUnderlyingObjects(Addr, Objs, Pos->getModule()->getDataLayout());
1262 for (const Value *Obj : Objs) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp706 SmallVector<const Value *, 8> Objs; local
708 Objs, F->getDataLayout());
710 return all_of(Objs, [&](const Value *V) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp4272 SmallVector<const Value *, 4> Objs; local
4273 GetUnderlyingObjects(V, Objs, DL);
4275 for (const Value *V : Objs) {

Completed in 111 milliseconds