Searched refs:ExtName (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFFImportFile.h79 std::string ExtName; member in struct:llvm::object::COFFShortExport
96 return L.Name == R.Name && L.ExtName == R.ExtName &&
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/
H A DDlltoolDriver.cpp151 // If ExtName is set (if the "ExtName = Name" syntax was used), overwrite
152 // Name with ExtName and clear ExtName. When only creating an import
155 // symbol decoration onto ExtName.
157 if (!E.ExtName.empty()) {
158 E.Name = E.ExtName;
159 E.ExtName.clear();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DCOFFModuleDefinition.cpp238 E.ExtName = E.Name;
247 if (!E.ExtName.empty() && !isDecorated(E.ExtName, MingwDef))
248 E.ExtName = (std::string("_").append(E.ExtName));
H A DCOFFImportFile.cpp92 static ImportNameType getNameType(StringRef Sym, StringRef ExtName, argument
100 if (ExtName.startswith("_") && ExtName.contains('@') && !MinGW)
102 if (Sym != ExtName)
602 Expected<std::string> Name = E.ExtName.empty()
604 : replace(SymbolName, E.Name, E.ExtName);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAArch64TargetParser.h81 const ARM::ExtName AArch64ARCHExtNames[] = {
H A DARMTargetParser.h59 struct ExtName { struct in namespace:llvm::ARM
69 const ExtName ARCHExtNames[] = {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp103 std::string ExtName = "lle_"; local
105 ExtName += getTypeID(FT->getReturnType());
107 ExtName += getTypeID(T);
108 ExtName += ("_" + F->getName()).str();
111 ExFunc FnPtr = (*FuncNames)[ExtName];
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangOpenCLBuiltinEmitter.cpp442 << " \"" << FE->getValueAsString("ExtName") << "\",\n";
500 StringRef ExtName = Overload.first->getValueAsDef("Extension")->getName(); local
506 << FunctionExtensionIndex[ExtName] << ", "
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DDriver.cpp759 e2.ExtName = e1.extName;
844 // and set as "ExtName = Name". If Name has the form "OtherDll.Func",
847 if (e1.ExtName != e1.Name && StringRef(e1.Name).contains('.')) {
848 e2.name = saver.save(e1.ExtName);
854 e2.extName = saver.save(e1.ExtName);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp3393 SmallString<256> ExtName; local
3394 llvm::raw_svector_ostream(ExtName) << Interface->getName() << '_'
3415 Values.add(emitMethodList(ExtName, MethodListType::CategoryInstanceMethods,
3417 Values.add(emitMethodList(ExtName, MethodListType::CategoryClassMethods,
3421 EmitProtocolList("OBJC_CATEGORY_PROTOCOLS_" + ExtName.str(),
3430 Values.add(EmitPropertyList("_OBJC_$_PROP_LIST_" + ExtName.str(),
3432 Values.add(EmitPropertyList("_OBJC_$_CLASS_PROP_LIST_" + ExtName.str(),
3440 CreateMetadataVar("OBJC_CATEGORY_" + ExtName.str(), Values,
3444 DefinedCategoryNames.insert(llvm::CachedHashString(ExtName));
6722 SmallString<256> ExtName; local
[all...]

Completed in 152 milliseconds