HomeSort by: relevance | last modified time | path
    Searched defs:Super (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/MCA/
InstrBuilder.cpp 48 // Track cycles contributed by resources that are in a "Super" relationship.
53 // contributed by a "Super" resource to a group.
55 // part of a group, and it is also used as the "Super" of other resources.
57 // part of a "Super" resource. The key value is the "Super" resource mask ID.
91 uint64_t Super = ProcResourceMasks[PR.SuperIdx];
92 SuperResources[Super] += PRE->Cycles;
171 // Identify extra buffers that are consumed through super resources.
684 // underlying super-registers using an APInt.
688 // register writes implicitly clear the upper portion of a super-register
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
NestedNameSpecifier.h 101 Super
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 609 const MemRegion *Super = SR->getSuperRegion();
610 if (!scan(Super))
614 if (isa<MemSpaceRegion>(Super)) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LiveVariables.cpp 228 /// super-register.
267 // Last def defines the super register, add an implicit def of reg.
431 // Kill the largest clobbered super-register.
433 unsigned Super = Reg;
436 Super = *SR;
437 HandlePhysRegKill(Super, nullptr);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86RegisterInfo.cpp 110 // Don't allow super-classes of GR8_NOREX. This class is only used after
123 const TargetRegisterClass *Super = RC;
126 switch (Super->getID()) {
131 getRegSizeInBits(*Super) == getRegSizeInBits(*RC))
132 return Super;
138 getRegSizeInBits(*Super) == getRegSizeInBits(*RC))
139 return Super;
145 getRegSizeInBits(*Super) == getRegSizeInBits(*RC))
146 return Super;
152 getRegSizeInBits(*Super) == getRegSizeInBits(*RC)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 247 const TargetRegisterClass *Super = RC;
250 switch (Super->getID()) {
255 return Super;
260 return Super;
262 Super = *I++;
263 } while (Super);
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenRegisters.cpp 178 // Also compute leading super-registers. Each register has a list of
179 // covered-by-subregs super-registers where it appears as the first explicit
468 // Look at the leading super-registers of each sub-register. Those are the
485 "Super-register has no sub-registers");
547 // Make sure all sub-registers have been visited first, so the super-reg
552 // Now add this as a super-register on all sub-registers.
671 // Copy Proto super-classes.
808 // Most properties will be inherited from the closest super-class after the
826 assert(!SuperClasses.empty() && "Synthesized class without super class");
828 // The last super-class is the smallest one
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 952 // the super-region.
975 // do not invalidate its super region.
2366 // First build sets for the changed regions and their super-regions.
2386 // Is this entry for a super-region of a changed region?
2393 const MemRegion *Super = MR;
2394 while (const SubRegion *SR = dyn_cast<SubRegion>(Super)) {
2395 Super = SR->getSuperRegion();
2396 if (Invalidated.count(Super)) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclObjC.cpp 436 // and prepare for warning on missing super calls.
1107 /// typedef'ed use for a qualified super class and adds them to the list
2002 // Check that super class name is valid class name
2021 // super class.
2669 static void findProtocolsWithExplicitImpls(const ObjCInterfaceDecl *Super,
2671 if (!Super)
2674 for (const auto *I : Super->all_referenced_protocols())
2677 findProtocolsWithExplicitImpls(Super->getSuperClass(), PNS);
2695 ObjCInterfaceDecl *Super = IDecl->getSuperClass();
2699 // then we should check if any class in the super class hierarchy als
    [all...]
SemaCodeComplete.cpp 2609 // Add "super", if we're in an Objective-C class with a superclass.
2620 Builder.AddTypedTextChunk("super");
7018 // Avoid passing in IsRootClass since root classes won't have super classes.
7206 ObjCInterfaceDecl *Super = IFace->getSuperClass();
7220 .Case("superclass", Super)
7228 .Case("superclass", Super)
7232 // Add a special completion for a message send to "super", which fills in the
7239 /// the "super" keyword. Otherwise, we just need to provide the arguments.
7242 /// provided as arguments for a send to "super".
7247 /// this "super" completion. If NULL, no completion was added
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
gmock-matchers.h 557 // super type of the type of 'variable'.
576 // Super below) can be instantiated to either a const type or a
584 template <typename Super>
585 operator Matcher<Super&>() const {
586 // By passing object_ (type T&) to Impl(), which expects a Super&,
587 // we make sure that Super is a super type of T. In particular,
591 return MakeMatcher(new Impl<Super>(object_));
595 template <typename Super>
596 class Impl : public MatcherInterface<Super&>
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
ItaniumCXXABI.cpp 3898 ObjCInterfaceDecl *Super = Class->getSuperClass();
3901 if (!Super) return;
3903 QualType SuperTy = CGM.getContext().getObjCInterfaceType(Super);
CGObjCMac.cpp 116 /// id objc_msgSendSuper(struct objc_super *super, SEL op, ...)
118 /// The messenger used for super calls, which have different dispatch
128 /// id objc_msgSendSuper2(struct objc_super *super, SEL op, ...)
130 /// A slightly different messenger used for super calls. The class
139 /// void objc_msgSendSuper_stret(void *stretAddr, struct objc_super *super,
142 /// The messenger used for super calls which return an aggregate indirectly.
150 /// void objc_msgSendSuper2_stret(void * stretAddr, struct objc_super *super,
1404 /// SuperClassReferences - uniqued super class references.
1518 /// for the given super class reference.
1570 // and ivar belongs to instance method's class and one of its super class
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIInstrInfo.cpp 662 MCRegister Super = RI.get32BitRegister(RegToFix);
663 assert(RI.getSubReg(Super, AMDGPU::lo16) == RegToFix);
664 RegToFix = Super;
917 // If there is an overlap, we can't kill the super-register on the last
4546 // Just in case the super register is itself a sub-register, copy it to a new
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 1173 // Issue callbacks for super class.
1207 // Issue callbacks for super class.
1378 case NestedNameSpecifier::Super:
1418 case NestedNameSpecifier::Super:
4630 const ObjCInterfaceDecl *Super = getCursorObjCSuperClassRef(C).first;
4631 return cxstring::createRef(Super->getIdentifier()->getNameStart());

Completed in 55 milliseconds