| /llvm-project-15.0.7/libcxxabi/src/ |
| H A D | cxa_guard.cpp | 38 SelectedImplementation imp(raw_guard_object); in __cxa_guard_acquire() local 39 return static_cast<int>(imp.cxa_guard_acquire()); in __cxa_guard_acquire() 43 SelectedImplementation imp(raw_guard_object); in __cxa_guard_release() local 44 imp.cxa_guard_release(); in __cxa_guard_release() 48 SelectedImplementation imp(raw_guard_object); in __cxa_guard_abort() local 49 imp.cxa_guard_abort(); in __cxa_guard_abort()
|
| /llvm-project-15.0.7/libcxx/test/std/strings/basic.string/string.cons/ |
| H A D | copy_alloc.pass.cpp | 46 alloc_imp *imp; member 48 TEST_CONSTEXPR poca_alloc(alloc_imp *imp_) : imp (imp_) {} in poca_alloc() 51 TEST_CONSTEXPR poca_alloc(const poca_alloc<U>& other) : imp(other.imp) {} in poca_alloc() 53 T* allocate (std::size_t n) { return imp->allocate<T>(n);} in allocate() 54 void deallocate(T* p, std::size_t n) { imp->deallocate(p, n); } in deallocate() 60 return lhs.imp == rhs.imp; in operator ==() 66 return lhs.imp != rhs.imp; in operator !=()
|
| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/help/ |
| H A D | Tool.py | 9 import imp 44 module_info = imp.find_module(internal_name, [tools_directory]) 45 tool_doc = imp.load_module(internal_name, 59 module_info = imp.find_module(tool_name, [tools_directory]) 60 module = imp.load_module(tool_name, *module_info)
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/MachO/ |
| H A D | macho-objc-meta-data.test | 234 OBJC2_32BIT_EXE: imp 0x23c0 237 OBJC2_32BIT_EXE: imp 0x25f0 240 OBJC2_32BIT_EXE: imp 0x2640 243 OBJC2_32BIT_EXE: imp 0x2690 246 OBJC2_32BIT_EXE: imp 0x26e0 249 OBJC2_32BIT_EXE: imp 0x2730 252 OBJC2_32BIT_EXE: imp 0x2780 255 OBJC2_32BIT_EXE: imp 0x2a70 258 OBJC2_32BIT_EXE: imp 0x2a00 261 OBJC2_32BIT_EXE: imp 0x2a30 [all …]
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | SymbolTable.cpp | 329 Defined *imp = impSymbol(name); in handleMinGWAutomaticImport() local 330 if (!imp) in handleMinGWAutomaticImport() 340 if (isa<DefinedImportData>(imp)) { in handleMinGWAutomaticImport() 344 } else if (isa<DefinedRegular>(imp)) { in handleMinGWAutomaticImport() 346 toString(cast<DefinedRegular>(imp)->file)); in handleMinGWAutomaticImport() 354 sym->replaceKeepingName(imp, impSize); in handleMinGWAutomaticImport() 369 refptr->replaceKeepingName(imp, impSize); in handleMinGWAutomaticImport() 393 if (Symbol *imp = localImports->lookup(b)) in reportProblemSymbols() local 447 if (imp && isa<Defined>(imp)) in reportUnresolvable() 495 if (imp && isa<Defined>(imp)) { in resolveRemainingUndefines() [all …]
|
| H A D | DLL.cpp | 297 ThunkChunkX64(Defined *i, Chunk *tm) : imp(i), tailMerge(tm) {} in ThunkChunkX64() 303 write32le(buf + 3, imp->getRVA() - rva - 7); in writeTo() 307 Defined *imp = nullptr; member in lld::coff::__anon1c8397240111::ThunkChunkX64 335 write32le(buf + 1, imp->getRVA() + config->imageBase); in writeTo() 343 Defined *imp = nullptr; member in lld::coff::__anon1c8397240111::ThunkChunkX86 369 ThunkChunkARM(Defined *i, Chunk *tm) : imp(i), tailMerge(tm) { in ThunkChunkARM() 377 applyMOV32T(buf + 0, imp->getRVA() + config->imageBase); in writeTo() 385 Defined *imp = nullptr; member in lld::coff::__anon1c8397240111::ThunkChunkARM 421 applyArm64Addr(buf + 0, imp->getRVA(), rva + 0, 12); in writeTo() 422 applyArm64Imm(buf + 4, imp->getRVA() & 0xfff, 0); in writeTo() [all …]
|
| H A D | Symbols.cpp | 81 if (auto *imp = dyn_cast<DefinedImportData>(this)) in isLive() local 82 return imp->file->live; in isLive() 83 if (auto *imp = dyn_cast<DefinedImportThunk>(this)) in isLive() local 84 return imp->wrappedSym->file->thunkLive; in isLive()
|
| H A D | MinGW.cpp | 250 Symbol *imp = ctx.symtab.find(("__imp_" + w.sym->getName()).str()); in wrapSymbols() local 255 if (imp) { in wrapSymbols() 259 map[imp] = wrapimp; in wrapSymbols()
|
| H A D | InputFiles.cpp | 1185 auto *imp = reinterpret_cast<coff_import_header *>(p); in makeImport() local 1186 p += sizeof(*imp); in makeImport() 1187 imp->Sig2 = 0xFFFF; in makeImport() 1188 imp->Machine = coffObj->getMachine(); in makeImport() 1189 imp->SizeOfData = impSize; in makeImport() 1190 imp->OrdinalHint = 0; // Only linking by name in makeImport() 1191 imp->TypeInfo = (s->nameType << 2) | s->importType; in makeImport()
|
| /llvm-project-15.0.7/lldb/scripts/ |
| H A D | use_lldb_suite.py | 19 import imp 20 fp, pathname, desc = imp.find_module("use_lldb_suite_root", [lldb_root]) 22 imp.load_module("use_lldb_suite_root", fp, pathname, desc)
|
| /llvm-project-15.0.7/lldb/test/API/ |
| H A D | use_lldb_suite.py | 21 import imp 22 fp, pathname, desc = imp.find_module("use_lldb_suite_root", [lldb_root]) 24 imp.load_module("use_lldb_suite_root", fp, pathname, desc)
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/GlobalISel/ |
| H A D | load-wro-addressing-modes.mir | 347 ; CHECK: %imp:gpr64 = IMPLICIT_DEF 348 ; CHECK: %and:gpr64common = ANDXri %imp, 4103 353 %imp:gpr(s64) = G_IMPLICIT_DEF 355 %and:gpr(s64) = G_AND %imp, %bad_mask 381 ; CHECK: %imp:gpr64 = IMPLICIT_DEF 382 ; CHECK: %and:gpr64common = ANDXri %imp, 4111 387 %imp:gpr(s64) = G_IMPLICIT_DEF 389 %and:gpr(s64) = G_AND %imp, %bad_mask 414 ; CHECK: %imp:gpr64 = IMPLICIT_DEF 421 %imp:gpr(s64) = G_IMPLICIT_DEF [all …]
|
| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/ |
| H A D | Main.py | 13 import imp 130 module_info = imp.find_module(tool_name, [tools_directory]) 132 return imp.load_module(tool_name, *module_info)
|
| /llvm-project-15.0.7/lld/test/COFF/ |
| H A D | locally-imported-warn-multiple.s | 4 …pe=obj -triple=x86_64-windows-msvc -o %T/locally-imported-imp1.obj %S/Inputs/locally-imported-imp.s 5 …pe=obj -triple=x86_64-windows-msvc -o %T/locally-imported-imp2.obj %S/Inputs/locally-imported-imp.s
|
| /llvm-project-15.0.7/clang/test/Parser/ |
| H A D | cxx-class.cpp | 302 template<class> struct imp; 303 …template<class T> struct is_member_function_pointer : undeclared<imp<T>::member> {}; // expected-e…
|
| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/ |
| H A D | LLDB.py | 10 import imp 82 module_info = imp.find_module('lldb', [pythonpath]) 83 return imp.load_module('lldb', *module_info)
|
| /llvm-project-15.0.7/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/ |
| H A D | p3-0x.cpp | 47 auto imp = m.getImplementation<int, int, int>(); in f() local
|
| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/visualstudio/ |
| H A D | VisualStudio.py | 10 import imp 26 module_info = imp.find_module( 29 return imp.load_module('ComInterface', *module_info)
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | 2010-02-23-DIV8rDefinesAX.ll | 5 ; The DIV8r must have the right imp-defs for that to work.
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/ |
| H A D | machine_cse_impdef_killflags.ll | 5 ; imp-def'd registers.
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGObjCGNU.cpp | 698 return imp; in LookupIMP() 792 return imp; in LookupIMP() 2067 llvm::CallBase *imp; in LookupIMP() local 2074 return imp; in LookupIMP() 2621 imp = EnforceType(Builder, imp, MSI.MessengerType); in GenerateMessageSendSuper() 2630 CGCallee callee(CGCalleeInfo(), imp); in GenerateMessageSendSuper() 2775 llvm::Value *imp; in GenerateMessageSend() local 2787 imp = in GenerateMessageSend() 2794 imp = in GenerateMessageSend() 2808 imp = EnforceType(Builder, imp, MSI.MessengerType); in GenerateMessageSend() [all …]
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/unittests/ |
| H A D | SemanticHighlightingTests.cpp | 865 #include "imp.h" in TEST() 876 #include "imp.h" in TEST()
|
| /llvm-project-15.0.7/clang/utils/check_cfc/ |
| H A D | check_cfc.py | 52 import imp 88 imp.is_frozen("__main__")) # tools/freeze
|
| /llvm-project-15.0.7/clang/tools/scan-view/bin/ |
| H A D | scan-view | 9 import imp
|
| /llvm-project-15.0.7/llvm/test/CodeGen/ARM/ |
| H A D | vldm-liveness.mir | 11 # imp-use of Q0, which is undefined.
|