HomeSort by: relevance | last modified time | path
    Searched refs:Objs (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Object/
IRSymtab.cpp 100 void writeRange(storage::Range<T> &R, const std::vector<T> &Objs) {
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()));
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 156 SmallVector<Value *, 4> Objs;
157 if (!getUnderlyingObjectsForCodeGen(V, Objs))
160 for (Value *V : Objs) {
939 // Find the underlying objects for MI. The Objs vector is either
942 UnderlyingObjectsVector Objs;
943 bool ObjsFound = getUnderlyingObjectsForInstr(&MI, MFI, Objs,
959 for (const UnderlyingObject &UnderlObj : Objs) {
969 for (const UnderlyingObject &UnderlObj : Objs) {
989 for (const UnderlyingObject &UnderlObj : Objs) {
StackColoring.cpp 1094 SmallVector<Value *, 4> Objs;
1095 getUnderlyingObjectsForCodeGen(MMOV, Objs);
1097 if (Objs.empty())
1100 for (Value *V : Objs) {
MachinePipeliner.cpp 720 SmallVectorImpl<const Value *> &Objs) {
726 getUnderlyingObjects(MM->getValue(), Objs);
727 for (const Value *V : Objs) {
729 Objs.clear();
732 Objs.push_back(V);
749 SmallVector<const Value *, 4> Objs;
750 ::getUnderlyingObjects(&MI, Objs);
751 if (Objs.empty())
752 Objs.push_back(UnknownValue);
753 for (auto V : Objs) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 501 SmallVector<ValueType, 4> Objs;
502 if (getUnderlyingObjects(MI, Objs)) {
503 for (ValueType VT : Objs)
543 SmallVector<const Value *, 4> Objs;
544 ::getUnderlyingObjects(V, Objs);
546 for (const Value *UValue : Objs) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-gsymutil/
llvm-gsymutil.cpp 420 auto Objs = expandBundle(ConvertFilename);
421 llvm::append_range(Objects, Objs);
  /src/external/apache2/llvm/dist/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 440 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));
  /src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp 678 auto Objs = expandBundle(F);
679 llvm::append_range(Objects, Objs);
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.cpp 706 SmallVector<const Value *, 8> Objs;
707 getUnderlyingObjects(N->getMemOperand()->getValue(), Objs);
709 return all_of(Objs, [&](const Value *V) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 2295 SmallVector<const Value *, 2> Objs;
2296 getUnderlyingObjects(Addr, Objs);
2298 for (const Value *Obj : Objs) {
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp 4437 SmallVector<const Value *, 4> Objs;
4438 getUnderlyingObjects(V, Objs);
4440 for (const Value *V : Objs) {

Completed in 55 milliseconds