HomeSort by relevance Sort by last modified time
    Searched refs:Objs (Results 1 - 15 of 15) sorted by null

  /external/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp 162 auto Objs = expandBundle(F);
163 Objects.insert(Objects.end(), Objs.begin(), Objs.end());
  /external/llvm/unittests/ExecutionEngine/Orc/
ObjectLinkingLayerTest.cpp 85 std::vector<object::ObjectFile*> Objs;
86 Objs.push_back(OwningObj.getBinary());
101 auto H = ObjLayer.addObjectSet(Objs, &SMMW, &*Resolver);
110 auto H = ObjLayer.addObjectSet(Objs, &SMMW, &*Resolver);
  /external/llvm/lib/ExecutionEngine/Orc/
OrcMCJITReplacement.h 175 std::vector<std::unique_ptr<object::ObjectFile>> Objs;
176 Objs.push_back(std::move(O));
177 ObjectLayer.addObjectSet(std::move(Objs), &MemMgr, &Resolver);
181 std::vector<std::unique_ptr<object::OwningBinary<object::ObjectFile>>> Objs;
182 Objs.push_back(
185 ObjectLayer.addObjectSet(std::move(Objs), &MemMgr, &Resolver);
  /build/soong/cc/
object.go 58 deps.ObjFiles = append(deps.ObjFiles, object.Properties.Objs...)
73 flags Flags, deps PathDeps, objs Objects) android.Path {
75 objs = objs.Append(deps.Objs)
78 if len(objs.objFiles) == 1 {
79 outputFile = objs.objFiles[0]
82 TransformObjsToObj(ctx, objs.objFiles, flagsToBuilderFlags(flags), output)
cc.go 84 Objs Objects
135 Objs []string `android:"arch_variant"`
227 link(ctx ModuleContext, flags Flags, deps PathDeps, objs Objects) android.Path
539 var objs Objects
541 objs = c.compiler.compile(ctx, flags, deps)
548 outputFile := c.linker.link(ctx, flags, deps, objs)
953 depPaths.Objs = depPaths.Objs.Append(l.reuseObjs())
1014 depPaths.WholeStaticLibObjs = depPaths.WholeStaticLibObjs.Append(staticLib.objs())
1018 depPaths.Objs.objFiles = append(depPaths.Objs.objFiles, linkFile.Path()
    [all...]
library.go 365 objs := library.baseCompiler.compile(ctx, flags, deps)
366 library.reuseObjects = objs
371 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceStaticLibrary,
375 objs = objs.Append(compileObjs(ctx, buildFlags, android.DeviceSharedLibrary,
379 return objs
385 objs() Objects
460 flags Flags, deps PathDeps, objs Objects) android.Path {
463 library.objects = library.objects.Append(objs)
677 func (library *libraryDecorator) objs() Objects { func
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
ObjectLinkingLayer.h 253 const ObjSetT &Objs,
257 for (auto &Obj : Objs)
262 this->NotifyLoaded(H, Objs, LoadedObjInfos);
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 469 SmallVector<ValueType, 4> Objs;
472 if (getUnderlyingObjects(MI, Objs)) {
473 for (SmallVectorImpl<ValueType>::const_iterator I = Objs.begin();
474 I != Objs.end(); ++I)
517 SmallVector<Value *, 4> Objs;
518 GetUnderlyingObjects(const_cast<Value *>(V), Objs, DL);
520 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), E = Objs.end();
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 142 SmallVector<Value *, 4> Objs;
143 GetUnderlyingObjects(const_cast<Value *>(V), Objs, DL);
145 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end();
193 SmallVector<Value *, 4> Objs;
194 getUnderlyingObjects(V, Objs, DL);
196 for (Value *V : Objs) {
    [all...]
MachinePipeliner.cpp     [all...]
  /prebuilts/go/darwin-x86/src/debug/gosym/
symtab.go 91 // The exact method of division of a binary into separate Objs is an internal detail
122 Objs []Obj // nil for Go 1.2 and later binaries
357 t.Objs = make([]Obj, 1)
358 obj = &t.Objs[0]
361 t.Objs = make([]Obj, 0, nz)
382 n := len(t.Objs)
383 t.Objs = t.Objs[0 : n+1]
384 obj = &t.Objs[n]
  /prebuilts/go/linux-x86/src/debug/gosym/
symtab.go 91 // The exact method of division of a binary into separate Objs is an internal detail
122 Objs []Obj // nil for Go 1.2 and later binaries
357 t.Objs = make([]Obj, 1)
358 obj = &t.Objs[0]
361 t.Objs = make([]Obj, 0, nz)
382 n := len(t.Objs)
383 t.Objs = t.Objs[0 : n+1]
384 obj = &t.Objs[n]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 441 SmallVectorImpl<const Expr *> &Objs) {
464 Objs.push_back(Msg->getArg(0));
477 Objs.push_back(Msg->getArg(i));
483 Objs.push_back(ArrLit->getElement(i));
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.cpp 581 SmallVector<Value *, 8> Objs;
583 Objs, F->getDataLayout());
584 for (Value *Obj : Objs) {
    [all...]

Completed in 359 milliseconds