Searched refs:Name (Results 1 - 25 of 633) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DLangOptions.cpp20 #define LANGOPT(Name, Bits, Default, Description) Name = Default;
21 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) set##Name(Default);
28 #define LANGOPT(Name, Bits, Default, Description)
29 #define BENIGN_LANGOPT(Name, Bits, Default, Description) Name = Default;
30 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
31 Name = Default;
H A DOpenMPKinds.cpp25 #define OPENMP_DIRECTIVE(Name) \
26 .Case(#Name, OMPD_##Name)
36 #define OPENMP_DIRECTIVE(Name) \
37 case OMPD_##Name : return #Name;
H A DTargetInfo.cpp196 static StringRef removeGCCRegisterPrefix(StringRef Name) { argument
197 if (Name[0] == '%' || Name[0] == '#')
198 Name = Name.substr(1);
200 return Name;
206 bool TargetInfo::isValidClobber(StringRef Name) const {
207 return (isValidGCCRegisterName(Name) ||
208 Name == "memory" || Name
324 const char *Name = Info.getConstraintStr().c_str(); local
382 resolveSymbolicName(const char *&Name, ConstraintInfo *OutputConstraints, unsigned NumOutputs, unsigned &Index) const argument
409 const char *Name = Info.ConstraintStr.c_str(); local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DDiagnosticOptions.h39 #define DIAGOPT(Name, Bits, Default) unsigned Name : Bits;
40 #define ENUM_DIAGOPT(Name, Type, Bits, Default)
46 #define DIAGOPT(Name, Bits, Default)
47 #define ENUM_DIAGOPT(Name, Type, Bits, Default) unsigned Name : Bits;
63 #define DIAGOPT(Name, Bits, Default)
64 #define ENUM_DIAGOPT(Name, Type, Bits, Default) \
65 Type get##Name() const { return static_cast<Type>(Name); } \
[all...]
H A DMacroBuilder.h29 /// Append a \#define line for macro of the form "\#define Name Value\n".
30 void defineMacro(const Twine &Name, const Twine &Value = "1") { argument
31 Out << "#define " << Name << ' ' << Value << '\n';
34 /// Append a \#undef line for Name. Name should be of the form XXX
36 void undefineMacro(const Twine &Name) { argument
37 Out << "#undef " << Name << '\n'; local
H A DOpenMPKinds.h25 #define OPENMP_DIRECTIVE(Name) \
26 OMPD_##Name,
H A DOperatorKinds.h24 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
25 OO_##Name,
H A DLangOptions.h40 #define LANGOPT(Name, Bits, Default, Description) unsigned Name : Bits;
41 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description)
48 #define LANGOPT(Name, Bits, Default, Description)
49 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
50 unsigned Name : Bits;
89 #define LANGOPT(Name, Bits, Default, Description)
90 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
91 Type get##Name() const { return static_cast<Type>(Name); } \
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DCodeGenOptions.h26 #define CODEGENOPT(Name, Bits, Default) unsigned Name : Bits;
27 #define ENUM_CODEGENOPT(Name, Type, Bits, Default)
31 #define CODEGENOPT(Name, Bits, Default)
32 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) unsigned Name : Bits;
127 #define CODEGENOPT(Name, Bits, Default)
128 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) \
129 Type get##Name() const { return static_cast<Type>(Name); } \
[all...]
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DAutoUpgrade.cpp48 StringRef Name = F->getName(); local
49 if (Name.size() <= 8 || !Name.startswith("llvm."))
51 Name = Name.substr(5); // Strip off "llvm."
53 switch (Name[0]) {
56 if (Name.startswith("arm.neon.vclz")) {
66 "llvm.ctlz." + Name.substr(14), F->getParent());
69 if (Name.startswith("arm.neon.vcnt")) {
77 if (Name
174 StringRef Name = F->getName(); local
304 std::string Name = CI->getName().str(); local
[all...]
H A DModule.cpp111 GlobalValue *Module::getNamedValue(StringRef Name) const {
112 return cast_or_null<GlobalValue>(getValueSymbolTable().lookup(Name));
117 unsigned Module::getMDKindID(StringRef Name) const {
118 return Context.getMDKindID(Name);
138 Constant *Module::getOrInsertFunction(StringRef Name, argument
142 GlobalValue *F = getNamedValue(Name);
145 Function *New = Function::Create(Ty, GlobalVariable::ExternalLinkage, Name);
157 Constant *NewF = getOrInsertFunction(Name, Ty);
158 F->setName(Name);
171 Constant *Module::getOrInsertTargetIntrinsic(StringRef Name, argument
188 getOrInsertFunction(StringRef Name, FunctionType *Ty) argument
198 getOrInsertFunction(StringRef Name, AttributeSet AttributeList, Type *RetTy, ...) argument
217 getOrInsertFunction(StringRef Name, Type *RetTy, ...) argument
253 getGlobalVariable(StringRef Name, bool AllowLocal) const argument
268 getOrInsertGlobal(StringRef Name, Type *Ty) argument
311 getOrInsertNamedMetadata(StringRef Name) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerOptInfo.h24 StringRef Name; member in class:clang::ento::CheckerOptInfo
30 : Name(name), Enable(enable), Claimed(false) { }
32 StringRef getName() const { return Name; }
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCFixupKindInfo.h28 const char *Name; member in struct:llvm::MCFixupKindInfo
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h70 typedef StringRef Name; typedef in class:clang::thread_safety::ThreadSafetyHandler
83 virtual void handleUnmatchedUnlock(Name LockName, SourceLocation Loc) {}
89 virtual void handleDoubleLock(Name LockName, SourceLocation Loc) {}
103 virtual void handleMutexHeldEndOfScope(Name LockName,
115 virtual void handleExclusiveAndShared(Name LockName, SourceLocation Loc1,
135 ProtectedOperationKind POK, Name LockName,
137 Name *PossibleMatch=0) {}
145 virtual void handleFunExcludesLock(Name FunName, Name LockName,
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DCommentCommandTraits.cpp34 const CommandInfo *CommandTraits::getCommandInfoOrNULL(StringRef Name) const {
35 if (const CommandInfo *Info = getBuiltinCommandInfo(Name))
37 return getRegisteredCommandInfo(Name);
47 char *Name = Allocator.Allocate<char>(CommandName.size() + 1); local
48 memcpy(Name, CommandName.data(), CommandName.size());
49 Name[CommandName.size()] = '\0';
53 Info->Name = Name;
82 StringRef Name) const {
84 if (RegisteredCommands[i]->Name
[all...]
/freebsd-10.0-release/contrib/llvm/tools/llvm-diff/
H A Dllvm-diff.cpp35 static Module *ReadModule(LLVMContext &Context, StringRef Name) { argument
37 Module *M = ParseIRFile(Name, Diag, Context);
44 StringRef Name) {
46 if (Name.startswith("@")) Name = Name.substr(1);
48 Function *LFn = L->getFunction(Name);
49 Function *RFn = R->getFunction(Name);
53 errs() << "No function named @" << Name << " in either module\n";
55 errs() << "No function named @" << Name << " i
43 diffGlobal(DifferenceEngine &Engine, Module *L, Module *R, StringRef Name) argument
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DIRBuilder.h40 void InsertHelper(Instruction *I, const Twine &Name, argument
44 I->setName(Name);
200 /// Name is specified, it is the name of the global variable created.
201 Value *CreateGlobalString(StringRef Str, const Twine &Name = "");
452 InstTy *Insert(InstTy *I, const Twine &Name = "") const {
453 this->InsertHelper(I, Name, BB, InsertPt);
532 BasicBlock *UnwindDest, const Twine &Name = "") {
535 Name);
539 const Twine &Name = "") {
541 Name);
571 CreateInsertNUWNSWBinOp(BinaryOperator::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name, bool HasNUW, bool HasNSW) argument
856 CreateLoad(Value *Ptr, const char *Name) argument
871 CreateAlignedLoad(Value *Ptr, unsigned Align, const char *Name) argument
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/components/disassembler/
H A Ddmnames.c3 * Module Name: dmnames - AML disassembler, names, namestrings, pathnames
70 * PARAMETERS: Name - 4 character ACPI name
80 UINT32 Name)
89 *ACPI_CAST_PTR (UINT32, &NewName[0]) = Name;
206 * PARAMETERS: Name - ACPI Name string to store
216 char *Name)
221 if (!Name)
228 while (ACPI_IS_ROOT_PREFIX (ACPI_GET8 (Name)) ||
229 ACPI_IS_PARENT_PREFIX (ACPI_GET8 (Name)))
79 AcpiDmDumpName( UINT32 Name) argument
215 AcpiDmNamestring( char *Name) argument
301 UINT32 Name; local
414 AcpiDmValidateName( char *Name, ACPI_PARSE_OBJECT *Op) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/MBlaze/
H A DMBlazeIntrinsicInfo.cpp60 lookupName(const char *Name, unsigned Len) const {
61 if (Len < 5 || Name[4] != '.' || Name[0] != 'l' || Name[1] != 'l'
62 || Name[2] != 'v' || Name[3] != 'm')
72 lookupGCCName(const char *Name) const {
73 return mblazeIntrinsic::getIntrinsicForGCCBuiltin("mblaze",Name);
H A DMBlazeIntrinsicInfo.h24 unsigned lookupName(const char *Name, unsigned Len) const;
25 unsigned lookupGCCName(const char *Name) const;
/freebsd-10.0-release/usr.sbin/ctm/ctm/
H A Dctm_syntax.c16 #define Name CTM_F_Name macro
35 { Name|File|New|Subst, Uid, Gid, Mode,
39 { Name|File|Subst, Uid, Gid, Mode,
43 { Name|File|Subst, Uid, Gid, Mode,
47 { Name|File|Subst, MD5|Before, 0 };
50 { Name|Subst, Uid, Gid, Mode, 0 };
53 { Name|Dir|New , Uid, Gid, Mode, 0 };
56 { Name|Dir, 0 };
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp40 StringRef Name) {
46 if (Name.empty())
49 if (BName.find(Name) != StringRef::npos)
74 if (Name.empty())
78 if (FName.equals(Name))
81 if (FName.startswith("__inline") && (FName.find(Name) != StringRef::npos))
85 FName.find(Name) != StringRef::npos)
39 isCLibraryFunction(const FunctionDecl *FD, StringRef Name) argument
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Utils/
H A DMetaRenamer.cpp76 StringRef Name = AI->getName(); local
77 if (Name.startswith("llvm.") || (!Name.empty() && Name[0] == 1))
86 StringRef Name = GI->getName(); local
87 if (Name.startswith("llvm.") || (!Name.empty() && Name[0] == 1))
108 StringRef Name = FI->getName(); local
109 if (Name
[all...]
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCSectionCOFF.cpp21 bool MCSectionCOFF::ShouldOmitSectionDirective(StringRef Name, argument
25 if (Name == ".text" || Name == ".data" || Name == ".bss")
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DTool.cpp15 const ToolChain &TC) : Name(_Name), ShortName(_ShortName),

Completed in 311 milliseconds

1234567891011>>