/llvm-project/llvm/bindings/ocaml/executionengine/ |
H A D | executionengine_ocaml.c | 66 value llvm_ee_dispose(value EE) { in llvm_ee_dispose() 72 value llvm_ee_add_module(value M, value EE) { in llvm_ee_add_module() 78 value llvm_ee_remove_module(value M, value EE) { in llvm_ee_remove_module() 88 value llvm_ee_run_static_ctors(value EE) { in llvm_ee_run_static_ctors() 94 value llvm_ee_run_static_dtors(value EE) { in llvm_ee_run_static_dtors() 102 value llvm_ee_get_data_layout(value EE) { in llvm_ee_get_data_layout() 116 value llvm_ee_add_global_mapping(value Global, value Ptr, value EE) { in llvm_ee_add_global_mapping() 122 value llvm_ee_get_global_value_address(value Name, value EE) { in llvm_ee_get_global_value_address() 127 value llvm_ee_get_function_address(value Name, value EE) { in llvm_ee_get_function_address()
|
/llvm-project/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngineBindings.cpp | 111 *OutEE = wrap(EE); in LLVMCreateExecutionEngineForModule() local 216 delete unwrap(EE); in LLVMDisposeExecutionEngine() argument 220 unwrap(EE)->finalizeObject(); in LLVMRunStaticConstructors() argument 225 unwrap(EE)->finalizeObject(); in LLVMRunStaticDestructors() argument 230 LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE,LLVMValueRef F,unsigned ArgC,const char * const * ArgV,const char * const * EnvP) LLVMRunFunctionAsMain() argument 239 LLVMRunFunction(LLVMExecutionEngineRef EE,LLVMValueRef F,unsigned NumArgs,LLVMGenericValueRef * Args) LLVMRunFunction() argument 254 LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE,LLVMValueRef F) LLVMFreeMachineCodeForFunction() argument 257 LLVMAddModule(LLVMExecutionEngineRef EE,LLVMModuleRef M) LLVMAddModule() argument 261 LLVMRemoveModule(LLVMExecutionEngineRef EE,LLVMModuleRef M,LLVMModuleRef * OutMod,char ** OutError) LLVMRemoveModule() argument 269 LLVMFindFunction(LLVMExecutionEngineRef EE,const char * Name,LLVMValueRef * OutFn) LLVMFindFunction() argument 278 LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE,LLVMValueRef Fn) LLVMRecompileAndRelinkFunction() argument 283 LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE) LLVMGetExecutionEngineTargetData() argument 288 LLVMGetExecutionEngineTargetMachine(LLVMExecutionEngineRef EE) LLVMGetExecutionEngineTargetMachine() argument 292 LLVMAddGlobalMapping(LLVMExecutionEngineRef EE,LLVMValueRef Global,void * Addr) LLVMAddGlobalMapping() argument 297 LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE,LLVMValueRef Global) LLVMGetPointerToGlobal() argument 303 LLVMGetGlobalValueAddress(LLVMExecutionEngineRef EE,const char * Name) LLVMGetGlobalValueAddress() argument 307 LLVMGetFunctionAddress(LLVMExecutionEngineRef EE,const char * Name) LLVMGetFunctionAddress() argument 311 LLVMExecutionEngineGetErrMsg(LLVMExecutionEngineRef EE,char ** OutError) LLVMExecutionEngineGetErrMsg() argument [all...] |
H A D | ExecutionEngine.cpp | 414 unsigned PtrSize = EE->getDataLayout().getPointerSize(); in isTargetNullPtr() argument 335 reset(LLVMContext & C,ExecutionEngine * EE,const std::vector<std::string> & InputArgv) reset() argument 536 ExecutionEngine *EE = nullptr; create() local [all...] |
/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | SimpleConstraintManager.h | 24 ExprEngine *EE; variable
|
H A D | RangedConstraintManager.h | 409 RangedConstraintManager(ExprEngine *EE, SValBuilder &SB) in RangedConstraintManager()
|
/llvm-project/llvm/include/llvm/Support/ |
H A D | GraphWriter.h | 85 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local 191 child_iterator EE = GTraits::child_end(Node); in writeNode() local 279 child_iterator EE = GTraits::child_end(Node); in writeNode() local
|
/llvm-project/llvm/lib/ProfileData/ |
H A D | SymbolRemappingReader.cpp | 60 using EE = ItaniumManglingCanonicalizer::EquivalenceError; in read() typedef
|
/llvm-project/llvm/examples/HowToUseJIT/ |
H A D | HowToUseJIT.cpp | 129 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); in main() local
|
/llvm-project/llvm/lib/Target/XCore/ |
H A D | XCoreFrameToArgsOffsetElim.cpp | 52 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end(); runOnMachineFunction() local
|
/llvm-project/llvm/include/llvm/ExecutionEngine/ |
H A D | RTDyldMemoryManager.h | 47 virtual void notifyObjectLoaded(ExecutionEngine *EE, in notifyObjectLoaded()
|
/llvm-project/llvm/examples/ParallelJIT/ |
H A D | ParallelJIT.cpp | 132 ExecutionEngine* EE; member 271 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); in main() local
|
/llvm-project/llvm/examples/Fibonacci/ |
H A D | fibonacci.cpp | 118 ExecutionEngine *EE = in main() local
|
/llvm-project/clang/test/SemaCXX/ |
H A D | using-decl-1.cpp | 242 struct EE { int EE; }; member
|
/llvm-project/llvm/lib/Target/MSP430/ |
H A D | MSP430BranchSelector.cpp | 120 for (auto MI = MBB->begin(), EE = MBB->end(); MI != EE; ++MI) { in expandBranches() local
|
/llvm-project/clang/tools/clang-fuzzer/handle-llvm/ |
H A D | handle_llvm.cpp | 181 std::unique_ptr<ExecutionEngine> EE(builder.create()); in CreateAndRunJITFunc() local
|
/llvm-project/llvm/lib/Target/X86/ |
H A D | X86PartialReduction.cpp | 354 matchAddReduction(const ExtractElementInst & EE,bool & ReduceInOneBB) matchAddReduction() argument 516 auto *EE = dyn_cast<ExtractElementInst>(&I); runOnFunction() local
|
/llvm-project/clang/test/CXX/expr/expr.const/ |
H A D | p3-0x.cpp | 46 enum class EE { EE32 = ' ', EE65 = 'A', EE1 = (short)1, EE5 = E5 }; enum
|
/llvm-project/clang/test/Analysis/ |
H A D | pr22954.c | 217 struct EE { struct 223 struct EE E0 = {{{1, 2}, {3, 4}}, 0}; in f13() argument
|
/llvm-project/clang/test/CXX/drs/ |
H A D | cwg28xx.cpp | 146 template<class T> using EE = T; global() typedef
|
/llvm-project/llvm/unittests/XRay/ |
H A D | GraphTest.cpp | 187 auto EE = G.at({0, 0}); in TEST() local
|
/llvm-project/llvm/examples/Kaleidoscope/MCJIT/complete/ |
H A D | toy.cpp | 940 ExecutionEngine *EE = EngineBuilder(M) in compileModule() local 1013 ExecutionEngine *EE = compileModule(*it); in getPointerToFunction() local 1045 ExecutionEngine *EE = compileModule(*it); in getPointerToNamedFunction() local
|
/llvm-project/clang/test/CodeGen/ |
H A D | 2002-07-14-MiscTests3.c | 148 double EE, double FF, double GG, double HH, in MathFunc()
|
/llvm-project/llvm/lib/CodeGen/ |
H A D | ShadowStackGCLowering.cpp | 398 EscapeEnumerator EE(F, "gc_cleanup", /*HandleExceptions=*/true, DTU); runOnFunction() local
|
/llvm-project/llvm/lib/ObjectYAML/ |
H A D | MachOEmitter.cpp | 462 for (const auto &EE : Entry.Children) { dumpExportEntry() local 467 for (auto EE : Entry.Children) dumpExportEntry() local
|
/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | ThreadSanitizer.cpp | 482 EscapeEnumerator EE(F, "tsan_ignore_cleanup", ClHandleCxxExceptions); InsertRuntimeIgnores() local 576 EscapeEnumerator EE(F, "tsan_cleanup", ClHandleCxxExceptions); sanitizeFunction() local
|