Home
last modified time | relevance | path

Searched refs:BaseName (Results 1 – 11 of 11) sorted by relevance

/freebsd-9-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileWrapper.cpp137 char* BaseName = 0; in checkForOProfileProcEntry() local
145 BaseName = ExeName; in checkForOProfileProcEntry()
159 BaseName = ExeName + Idx + 1; in checkForOProfileProcEntry()
166 if (BaseName != 0 && (!strcmp("oprofiled", BaseName) || in checkForOProfileProcEntry()
167 !strcmp("operf", BaseName))) { in checkForOProfileProcEntry()
/freebsd-9-stable/contrib/llvm/lib/Transforms/Utils/
DSSAUpdater.cpp326 SSAUpdater &S, StringRef BaseName) : SSA(S) { in LoadAndStorePromoter() argument
335 if (BaseName.empty()) in LoadAndStorePromoter()
336 BaseName = SomeVal->getName(); in LoadAndStorePromoter()
337 SSA.Initialize(SomeVal->getType(), BaseName); in LoadAndStorePromoter()
/freebsd-9-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp327 StringRef BaseName = F->getName(); in getPointerToFunction() local
328 if (BaseName[0] == '\1') in getPointerToFunction()
329 return (void*)Dyld.getSymbolLoadAddress(BaseName.substr(1)); in getPointerToFunction()
331 + BaseName).str()); in getPointerToFunction()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Driver/
DDriver.cpp1588 StringRef BaseName, types::ID FileType) { in MakeCLOutputFilename() argument
1593 Filename = BaseName; in MakeCLOutputFilename()
1596 llvm::sys::path::append(Filename, BaseName); in MakeCLOutputFilename()
1639 StringRef BaseName = llvm::sys::path::filename(BaseInput); in GetNamedOutputPath() local
1641 return C.addResultFile(MakeCLOutputFilename(C.getArgs(), FaValue, BaseName, in GetNamedOutputPath()
1658 StringRef BaseName; in GetNamedOutputPath() local
1662 BaseName = BasePath; in GetNamedOutputPath()
1664 BaseName = llvm::sys::path::filename(BasePath); in GetNamedOutputPath()
1673 NamedOutput = MakeCLOutputFilename(C.getArgs(), Val, BaseName, in GetNamedOutputPath()
1679 NamedOutput = MakeCLOutputFilename(C.getArgs(), Val, BaseName, in GetNamedOutputPath()
[all …]
/freebsd-9-stable/contrib/llvm/lib/Target/PowerPC/
DPPC.td119 // Instructions with the same BaseName and Interpretation64Bit values
121 let RowFields = ["BaseName", "Interpretation64Bit"];
132 // Instructions with the same BaseName and Interpretation64Bit values
134 let RowFields = ["BaseName", "Interpretation64Bit"];
DPPCInstrInfo.td591 let BaseName = asmbase in {
605 let BaseName = asmbase in {
620 let BaseName = asmbase in {
634 let BaseName = asmbase in {
649 let BaseName = asmbase in {
663 let BaseName = asmbase in {
677 let BaseName = asmbase in {
692 let BaseName = asmbase in {
706 let BaseName = asmbase in {
721 let BaseName = asmbase in {
[all …]
DPPCInstrFormats.td40 string BaseName = "";
94 string BaseName = "";
/freebsd-9-stable/contrib/llvm/tools/clang/utils/TableGen/
DClangASTNodesEmitter.cpp76 std::string BaseName = macroName(Base->getName()); in EmitNode() local
93 << BaseName << "(Type, Base)\n"; in EmitNode()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/
DASTMatchers.h1499 AST_MATCHER_P_OVERLOAD(CXXRecordDecl, isDerivedFrom, StringRef, BaseName, 1) {
1500 assert(!BaseName.empty());
1501 return isDerivedFrom(hasName(BaseName)).matches(Node, Finder, Builder);
1514 AST_MATCHER_P_OVERLOAD(CXXRecordDecl, isSameOrDerivedFrom, StringRef, BaseName,
1516 assert(!BaseName.empty());
1517 return isSameOrDerivedFrom(hasName(BaseName)).matches(Node, Finder, Builder);
/freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/
DItaniumMangle.cpp2184 const char *BaseName = 0; in mangleNeonVectorType() local
2188 BaseName = "__simd64_"; in mangleNeonVectorType()
2191 BaseName = "__simd128_"; in mangleNeonVectorType()
2193 Out << strlen(BaseName) + strlen(EltName); in mangleNeonVectorType()
2194 Out << BaseName << EltName; in mangleNeonVectorType()
/freebsd-9-stable/contrib/llvm/lib/Target/Hexagon/
DHexagonInstrInfo.td311 multiclass TFR64_base<string BaseName> {
312 let BaseOpcode = BaseName in {