Searched refs:getName (Results 1 - 25 of 584) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/llvm/utils/TableGen/
H A DDisassemblerEmitter.cpp108 emitSourceFileHeader(" * " + Target.getName() + " Disassembler", OS);
111 if (Target.getName() == "X86") {
129 if (Target.getName() == "ARM" ||
130 Target.getName() == "Thumb" ||
131 Target.getName() == "AArch64") {
132 EmitFixedLenDecoder(Records, OS, Target.getName() == "AArch64" ? "AArch64" : "ARM",
140 EmitFixedLenDecoder(Records, OS, Target.getName(),
H A DCodeGenInstruction.cpp36 if (Init->getDef()->getName() != "outs")
37 PrintFatalError(R->getName() + ": invalid def name for output list: use 'outs'");
39 PrintFatalError(R->getName() + ": invalid output list: use 'outs'");
45 if (Init->getDef()->getName() != "ins")
46 PrintFatalError(R->getName() + ": invalid def name for input list: use 'ins'");
48 PrintFatalError(R->getName() + ": invalid input list: use 'ins'");
65 PrintFatalError("Illegal operand for the '" + R->getName() + "' instruction!");
84 cast<DefInit>(MIOpInfo->getOperator())->getDef()->getName() != "ops")
85 PrintFatalError("Bad value for MIOperandInfo in operand '" + Rec->getName() +
97 } else if (Rec->getName()
[all...]
H A DCodeGenMapTable.cpp102 Name = MapRec->getName();
133 MapRec->getName() + "' has empty " + "`ValueCols' field!");
141 PrintFatalError(MapRec->getLoc(), "Record `" + MapRec->getName() +
148 std::string getName() const { function in class:__anon3647::InstrMap
347 PrintFatalError("Multiple matches found for `" + KeyInstr->getName() +
348 "', for the relation `" + InstrMapDesc.getName());
365 std::string TargetName = Target.getName();
371 OS << "static const uint16_t "<<InstrMapDesc.getName();
387 OutStr += ColInstrs[j]->getName();
392 OS << " { " << TargetName << "::" << CurInstr->getName();
[all...]
H A DCodeGenTarget.cpp42 std::string llvm::getName(MVT::SimpleValueType T) { function in class:llvm
123 if (Namespace.empty()) return R->getName();
124 return Namespace + "::" + R->getName();
145 const std::string &CodeGenTarget::getName() const { function in class:CodeGenTarget
146 return TargetRec->getName();
292 return Rec1->TheDef->getName() < Rec2->TheDef->getName();
375 if (PropList[i]->getName() == "SDNPHasChain") {
377 } else if (PropList[i]->getName() == "SDNPOptInGlue") {
379 } else if (PropList[i]->getName()
[all...]
H A DPseudoLoweringEmitter.cpp81 DI->getDef()->getName() == "zero_reg") {
94 "Pseudo operand type '" + DI->getDef()->getName() +
96 Insn.Operands[BaseIdx + i].Rec->getName() + "'");
122 DEBUG(dbgs() << "Pseudo definition: " << Rec->getName() << "\n");
132 PrintFatalError(Rec->getLoc(), Rec->getName() +
136 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
142 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
146 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
201 o << "bool " << Target.getName() + "AsmPrinter" << "::\n"
211 << Source.TheDef->getName() << "
[all...]
H A DAsmWriterInst.cpp128 CGI.TheDef->getName() + "'!");
167 + CGI.TheDef->getName() + "'");
174 + CGI.TheDef->getName() + "'");
182 PrintFatalError("Bad operand modifier name in '"+ CGI.TheDef->getName() + "'");
187 + CGI.TheDef->getName() + "'");
191 PrintFatalError("Stray '$' in '" + CGI.TheDef->getName() +
/freebsd-10.0-release/contrib/llvm/tools/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp50 return R.getName() + BaseSuffix;
76 std::string BaseName = macroName(Base->getName());
89 std::string NodeName = macroName(R->getName());
97 OS << "ABSTRACT_" << macroName(Root.getName()) << "(" << NodeName << "("
98 << R->getName() << ", " << baseName(*Base) << "))\n";
100 OS << NodeName << "(" << R->getName() << ", "
125 OS << "LAST_" << macroName(Root.getName()) << "_RANGE(";
127 OS << macroName(Root.getName()) << "_RANGE(";
128 OS << Base->getName() << ", " << First->getName() << ", "
[all...]
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DMachinePassRegistry.cpp25 if (R->getName() == Name) {
39 if (Listener) Listener->NotifyAdd(Node->getName(),
50 if (Listener) Listener->NotifyRemove(Node->getName());
H A DMachineModuleInfoImpls.cpp31 return LHSS->getName().compare(RHSS->getName());
/freebsd-10.0-release/contrib/llvm/lib/Target/MBlaze/
H A DMBlazeIntrinsicInfo.h22 std::string getName(unsigned IntrID, Type **Tys = 0,
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DTargetAttributesSema.cpp65 if (Attr.getName()->getName() == "interrupt") {
111 if (Attr.getName()->getName() == "interrupt_handler") {
114 } else if (Attr.getName()->getName() == "save_volatiles") {
146 << Attr.getName() << /* function */0;
183 << Attr.getName() << 2 /*variable and function*/;
225 << Attr.getName() << 2 /*variable and function*/;
261 (Attr.getName()
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestGetAggregate.java74 if (!included.contains(a.getName())) {
75 throw new IllegalStateException("@" + a.getName() +
113 if (!firstValues.containsKey(a.getName())) {
116 firstValues.put(a.getName(), value);
124 firstValue = firstValues.get(a.getName());
126 if (cleared.contains(a.getName())) {
130 "@" + a.getName() + " should have " +
138 "@" + a.getName() + " should have " +
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerOptInfo.h32 StringRef getName() const { return Name; } function in class:clang::ento::CheckerOptInfo
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCSymbol.cpp71 if (!NameNeedsQuoting(getName())) {
72 OS << getName();
76 OS << '"' << getName() << '"';
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Utils/
H A DDemoteRegToStack.cpp34 I.getName()+".reg2mem", AllocaPoint);
37 Slot = new AllocaInst(I.getType(), 0, I.getName()+".reg2mem",
60 V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads,
68 Value *V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, U);
119 P->getName()+".reg2mem", AllocaPoint);
122 Slot = new AllocaInst(P->getType(), 0, P->getName()+".reg2mem",
142 Value *V = new LoadInst(Slot, P->getName()+".reload", InsertPt);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DFileRemapper.cpp138 SmallString<200> origPath = StringRef(origFE->getName());
144 SmallString<200> newPath = StringRef(FE->getName());
150 tempPath = path::filename(origFE->getName());
152 tempPath += path::extension(origFE->getName());
164 infoOut << newE->getName() << '\n';
180 if (fs::copy_file(newFE->getName(), origFE->getName(),
182 return report(StringRef("Could not copy file '") + newFE->getName() +
183 "' to file '" + origFE->getName() + "'", Diag);
187 fs::exists(origFE->getName(), fileExist
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DPathProfileVerifier.cpp113 DEBUG(dbgs() << "function '" << F->getName() << "' ran "
139 DEBUG(dbgs() << source->getName() << " --{" << duplicateNumber
140 << "}--> " << target->getName());
145 errs() << " error [" << F->getName() << "()]: source '"
146 << source->getName()
149 errs() << " error [" << F->getName() << "()]: target '"
150 << target->getName()
153 errs() << " error [" << F->getName() << "()]: edge "
154 << source->getName() << " -> " << target->getName()
[all...]
H A DCFGPrinter.cpp79 std::string Filename = "cfg." + F.getName().str() + ".dot";
113 std::string Filename = "cfg." + F.getName().str() + ".dot";
145 ViewGraph(this, "cfg" + getName());
154 ViewGraph(this, "cfg" + getName(), true);
H A DTrace.cpp37 O << "; Trace from function " << F->getName() << ", blocks:\n";
/freebsd-10.0-release/contrib/llvm/lib/Transforms/IPO/
H A DInternalize.cpp127 !ExternalNames.count(I->getName())) {// Not marked to keep external?
133 DEBUG(dbgs() << "Internalizing func " << I->getName() << "\n");
159 !ExternalNames.count(I->getName())) {
163 DEBUG(dbgs() << "Internalized gvar " << I->getName() << "\n");
172 !ExternalNames.count(I->getName())) {
176 DEBUG(dbgs() << "Internalized alias " << I->getName() << "\n");
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCocoaConventions.cpp29 StringRef TDName = TD->getDecl()->getIdentifier()->getName();
85 if (ID->getIdentifier()->getName() == "NSObject")
96 StringRef functionName = ident->getName();
/freebsd-10.0-release/contrib/llvm/tools/opt/
H A DPrintSCC.cpp76 errs() << "SCCs for Function " << F.getName() << " in PostOrder:";
83 errs() << (*I)->getName() << ", ";
104 errs() << ((*I)->getFunction() ? (*I)->getFunction()->getName()
/freebsd-10.0-release/contrib/llvm/include/llvm/Analysis/
H A DCFGPrinter.h32 return "CFG for '" + F->getName().str() + "' function";
37 if (!Node->getName().empty())
38 return Node->getName().str();
52 if (Node->getName().empty()) {
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCInstrInfo.h53 /// getName - Returns the name for the instructions with the given opcode.
54 const char *getName(unsigned Opcode) const {
/freebsd-10.0-release/contrib/llvm/include/llvm/Target/
H A DTargetIntrinsicInfo.h43 virtual std::string getName(unsigned IID, Type **Tys = 0,

Completed in 281 milliseconds

1234567891011>>