Home
last modified time | relevance | path

Searched refs:NameStr (Results 1 – 25 of 67) sorted by relevance

123

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstructions.h179 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr = "",
181 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, BasicBlock *InsertAtEnd);
182 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
184 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
186 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
188 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
190 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
194 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
199 explicit LoadInst(Value *Ptr, const Twine &NameStr = "",
201 : LoadInst(Ptr->getType()->getPointerElementType(), Ptr, NameStr,
[all …]
/external/llvm-project/llvm/include/llvm/IR/
DInstructions.h191 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr,
193 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, BasicBlock *InsertAtEnd);
194 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
196 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
198 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
200 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
202 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
206 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
917 const Twine &NameStr, Instruction *InsertBefore);
920 const Twine &NameStr, BasicBlock *InsertAtEnd);
[all …]
/external/llvm/include/llvm/IR/
DInstructions.h173 LoadInst(Value *Ptr, const Twine &NameStr, Instruction *InsertBefore);
174 LoadInst(Value *Ptr, const Twine &NameStr, BasicBlock *InsertAtEnd);
175 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile = false,
177 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile = false,
180 NameStr, isVolatile, InsertBefore) {}
181 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
183 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile, unsigned Align,
186 NameStr, isVolatile, Align, InsertBefore) {}
187 LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
189 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
[all …]
/external/llvm/lib/Target/
DTargetLoweringObjectFile.cpp108 SmallString<60> NameStr; in getSymbolWithGlobalValueBase() local
109 NameStr += GV->getParent()->getDataLayout().getPrivateGlobalPrefix(); in getSymbolWithGlobalValueBase()
110 TM.getNameWithPrefix(NameStr, GV, Mang); in getSymbolWithGlobalValueBase()
111 NameStr.append(Suffix.begin(), Suffix.end()); in getSymbolWithGlobalValueBase()
112 return Ctx->getOrCreateSymbol(NameStr); in getSymbolWithGlobalValueBase()
DTargetMachine.cpp205 SmallString<128> NameStr; in getSymbol() local
206 getNameWithPrefix(NameStr, GV, Mang); in getSymbol()
208 return TLOF->getContext().getOrCreateSymbol(NameStr); in getSymbol()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DWasmException.cpp26 SmallString<60> NameStr; in endModule() local
27 Mangler::getNameWithPrefix(NameStr, "__cpp_exception", Asm->getDataLayout()); in endModule()
28 if (Asm->OutContext.lookupSymbol(NameStr)) { in endModule()
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DWasmException.cpp26 SmallString<60> NameStr; in endModule() local
27 Mangler::getNameWithPrefix(NameStr, "__cpp_exception", Asm->getDataLayout()); in endModule()
28 if (Asm->OutContext.lookupSymbol(NameStr)) { in endModule()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRTDyldMemoryManager.cpp265 const char *NameStr = Name.c_str(); in getSymbolAddressInProcess() local
270 if (NameStr[0] == '_') in getSymbolAddressInProcess()
271 ++NameStr; in getSymbolAddressInProcess()
274 return (uint64_t)sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr); in getSymbolAddressInProcess()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/
DTargetLoweringObjectFile.cpp120 SmallString<60> NameStr; in getSymbolWithGlobalValueBase() local
121 NameStr += GV->getParent()->getDataLayout().getPrivateGlobalPrefix(); in getSymbolWithGlobalValueBase()
122 TM.getNameWithPrefix(NameStr, GV, *Mang); in getSymbolWithGlobalValueBase()
123 NameStr.append(Suffix.begin(), Suffix.end()); in getSymbolWithGlobalValueBase()
124 return Ctx->getOrCreateSymbol(NameStr); in getSymbolWithGlobalValueBase()
DTargetMachine.cpp261 SmallString<128> NameStr; in getSymbol() local
262 getNameWithPrefix(NameStr, GV, TLOF->getMangler()); in getSymbol()
263 return TLOF->getContext().getOrCreateSymbol(NameStr); in getSymbol()
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
DRTDyldMemoryManager.cpp270 const char *NameStr = Name.c_str(); in getSymbolAddressInProcess() local
275 if (NameStr[0] == '_') in getSymbolAddressInProcess()
276 ++NameStr; in getSymbolAddressInProcess()
279 return (uint64_t)sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr); in getSymbolAddressInProcess()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRTDyldMemoryManager.cpp278 const char *NameStr = Name.c_str(); in getSymbolAddressInProcess() local
283 if (NameStr[0] == '_') in getSymbolAddressInProcess()
284 ++NameStr; in getSymbolAddressInProcess()
287 return (uint64_t)sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr); in getSymbolAddressInProcess()
/external/llvm-project/llvm/lib/Target/
DTargetLoweringObjectFile.cpp131 SmallString<60> NameStr; in getSymbolWithGlobalValueBase() local
132 NameStr += GV->getParent()->getDataLayout().getPrivateGlobalPrefix(); in getSymbolWithGlobalValueBase()
133 TM.getNameWithPrefix(NameStr, GV, *Mang); in getSymbolWithGlobalValueBase()
134 NameStr.append(Suffix.begin(), Suffix.end()); in getSymbolWithGlobalValueBase()
135 return getContext().getOrCreateSymbol(NameStr); in getSymbolWithGlobalValueBase()
DTargetMachine.cpp243 SmallString<128> NameStr; in getSymbol() local
244 getNameWithPrefix(NameStr, GV, TLOF->getMangler()); in getSymbol()
245 return TLOF->getContext().getOrCreateSymbol(NameStr); in getSymbol()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DThreading.inc144 StringRef NameStr = Name.toNullTerminatedStringRef(Storage);
153 NameStr = NameStr.take_back(get_max_thread_name_length() - 1);
154 (void)NameStr;
158 ::pthread_setname_np(::pthread_self(), NameStr.data());
162 ::pthread_set_name_np(::pthread_self(), NameStr.data());
165 const_cast<char *>(NameStr.data()));
167 ::pthread_setname_np(NameStr.data());
/external/llvm-project/llvm/lib/Support/Unix/
DThreading.inc156 StringRef NameStr = Name.toNullTerminatedStringRef(Storage);
165 NameStr = NameStr.take_back(get_max_thread_name_length() - 1);
166 (void)NameStr;
170 ::pthread_setname_np(::pthread_self(), NameStr.data());
174 ::pthread_set_name_np(::pthread_self(), NameStr.data());
177 const_cast<char *>(NameStr.data()));
179 ::pthread_setname_np(NameStr.data());
/external/llvm/lib/Transforms/Instrumentation/
DEfficiencySanitizer.cpp167 StructType *StructTy, SmallString<MaxStructCounterNameSize> &NameStr);
296 StructType *StructTy, SmallString<MaxStructCounterNameSize> &NameStr) { in createStructCounterName() argument
300 NameStr += StructTy->getName(); in createStructCounterName()
302 NameStr += "struct.anon"; in createStructCounterName()
307 NameStr += "#"; in createStructCounterName()
308 Twine(StructTy->getNumElements()).toVector(NameStr); in createStructCounterName()
311 NameStr += "#"; in createStructCounterName()
312 Twine(StructTy->getElementType(i)->getTypeID()).toVector(NameStr); in createStructCounterName()
313 if (NameStr.size() >= MaxStructCounterNameSize) in createStructCounterName()
318 NameStr += "#"; in createStructCounterName()
/external/clang/tools/diagtool/
DDiagnosticNames.h20 const char *NameStr; member
25 return llvm::StringRef(NameStr, NameLen); in getName()
/external/llvm-project/clang/tools/diagtool/
DDiagnosticNames.h19 const char *NameStr; member
24 return llvm::StringRef(NameStr, NameLen); in getName()
/external/clang/lib/AST/
DTemplateName.cpp211 std::string NameStr; in operator <<() local
212 raw_string_ostream OS(NameStr); in operator <<()
220 return DB << NameStr; in operator <<()
/external/llvm-project/clang/lib/AST/
DTemplateName.cpp259 std::string NameStr; in operator <<() local
260 llvm::raw_string_ostream OS(NameStr); in operator <<()
268 return DB << NameStr; in operator <<()
/external/llvm/tools/llvm-pdbdump/
DVariableDumper.cpp165 std::string NameStr(Name.begin(), Name.end()); in tryDumpFunctionPointer() local
166 Dumper.start(*FunctionSig, NameStr.c_str(), PT); in tryDumpFunctionPointer()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DInstructions.cpp194 const Twine &NameStr, Instruction *InsertBefore) in LandingPadInst() argument
196 init(NumReservedValues, NameStr); in LandingPadInst()
200 const Twine &NameStr, BasicBlock *InsertAtEnd) in LandingPadInst() argument
202 init(NumReservedValues, NameStr); in LandingPadInst()
219 const Twine &NameStr, in Create() argument
221 return new LandingPadInst(RetTy, NumReservedClauses, NameStr, InsertBefore); in Create()
225 const Twine &NameStr, in Create() argument
227 return new LandingPadInst(RetTy, NumReservedClauses, NameStr, InsertAtEnd); in Create()
230 void LandingPadInst::init(unsigned NumReservedValues, const Twine &NameStr) { in init() argument
234 setName(NameStr); in init()
[all …]
/external/llvm/lib/IR/
DInstructions.cpp180 const Twine &NameStr, Instruction *InsertBefore) in LandingPadInst() argument
182 init(NumReservedValues, NameStr); in LandingPadInst()
186 const Twine &NameStr, BasicBlock *InsertAtEnd) in LandingPadInst() argument
188 init(NumReservedValues, NameStr); in LandingPadInst()
205 const Twine &NameStr, in Create() argument
207 return new LandingPadInst(RetTy, NumReservedClauses, NameStr, InsertBefore); in Create()
211 const Twine &NameStr, in Create() argument
213 return new LandingPadInst(RetTy, NumReservedClauses, NameStr, InsertAtEnd); in Create()
216 void LandingPadInst::init(unsigned NumReservedValues, const Twine &NameStr) { in init() argument
220 setName(NameStr); in init()
[all …]
/external/llvm-project/llvm/lib/Transforms/ObjCARC/
DObjCARCContract.cpp311 const Twine &NameStr, Instruction *InsertBefore, in createCallInst() argument
322 return CallInst::Create(FTy, Func, Args, OpBundles, NameStr, InsertBefore); in createCallInst()
326 createCallInst(FunctionCallee Func, ArrayRef<Value *> Args, const Twine &NameStr, in createCallInst() argument
329 return createCallInst(Func.getFunctionType(), Func.getCallee(), Args, NameStr, in createCallInst()

123