HomeSort by relevance Sort by last modified time
    Searched defs:Aliases (Results 1 - 9 of 9) sorted by null

  /external/clang/lib/Basic/
TargetInfo.cpp 350 // Now check aliases.
351 const GCCRegAlias *Aliases;
354 getGCCRegAliases(Aliases, NumAliases);
356 for (unsigned j = 0 ; j < llvm::array_lengthof(Aliases[i].Aliases); j++) {
357 if (!Aliases[i].Aliases[j])
359 if (Aliases[i].Aliases[j] == Name)
403 // Now check aliases
    [all...]
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 119 // aliases, so struct assignments must use conservative TBAA nodes. There's
297 bool Aliases(const MDNode *A, const MDNode *B) const;
337 /// Aliases - Test whether the type represented by A may alias the
340 TypeBasedAliasAnalysis::Aliases(const MDNode *A,
463 if (Aliases(AM, BM))
519 if (!Aliases(L, M))
535 if (!Aliases(M1, M2))
  /external/llvm/lib/CodeGen/
JumpInstrTables.cpp 278 // the alias, we replace all uses of aliases that target jumptable functions.
279 // Note that there's no need to create these functions, since only aliases
282 DenseMap<GlobalAlias *, Function *> Aliases;
283 for (GlobalAlias &GA : M.aliases()) {
288 Aliases[&GA] = it->second;
297 for (auto &KV : Aliases)
  /external/llvm/utils/TableGen/
CodeGenSchedule.h 56 RecVec Aliases;
87 assert((!IsAlias || Aliases.empty()) && "Alias cannot have aliases");
CodeGenRegisters.cpp 140 std::vector<Record*> Aliases = TheDef->getValueAsListOfDefs("Aliases");
141 for (unsigned i = 0, e = Aliases.size(); i != e; ++i) {
142 CodeGenRegister *Reg = RegBank.getReg(Aliases[i]);
395 // Finally, create units for leaf registers without ad hoc aliases. Note that
396 // a leaf register with ad hoc aliases doesn't get its own unit - it isn't
642 Field == "Aliases") {
    [all...]
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 331 // class or any of its aliases.
352 // E are aliases, even though neither is a typedef of the other.
591 const std::set<const TypedefNameDecl *> &Aliases =
594 It = Aliases.begin(), End = Aliases.end();
  /external/clang/include/clang/Basic/
TargetInfo.h 590 const char * const Aliases[5];
801 virtual void getGCCRegAliases(const GCCRegAlias *&Aliases,
  /external/clang/lib/CodeGen/
CodeGenModule.h 330 std::vector<GlobalDecl> Aliases;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 325 /// looking for aliasing nodes and adding them to the Aliases vector.
327 SmallVectorImpl<SDValue> &Aliases);
    [all...]

Completed in 268 milliseconds