| /src/external/apache2/llvm/dist/llvm/lib/Passes/ |
| PassPlugin.cpp | 1 //===- lib/Passes/PassPluginLoader.cpp - Load Plugins for New PM Passes ---===// 16 Expected<PassPlugin> PassPlugin::Load(const std::string &Filename) { 21 return make_error<StringError>(Twine("Could not load library '") +
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_local_address_space_view.h | 12 // provides a simple interface to load memory from another process (i.e. 19 // load any pointers in instance methods. This implementation is effectively 34 // Load memory `sizeof(T) * num_elements` bytes of memory from the target 43 static const T *Load(const T *target_address, uptr num_elements = 1) { 49 // Load memory `sizeof(T) * num_elements` bytes of memory from the target 55 // by subsequent `Load()` or `LoadWritable()` calls provided the 57 // memory returned by previous calls to `Load()` will contain any performed 63 // Given the above it is recommended to load the largest possible object
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_local_address_space_view.h | 11 // provides a simple interface to load memory from another process (i.e. 18 // load any pointers in instance methods. This implementation is effectively 33 // Load memory `sizeof(T) * num_elements` bytes of memory from the target 42 static const T *Load(const T *target_address, uptr num_elements = 1) { 48 // Load memory `sizeof(T) * num_elements` bytes of memory from the target 54 // by subsequent `Load()` or `LoadWritable()` calls provided the 56 // memory returned by previous calls to `Load()` will contain any performed 62 // Given the above it is recommended to load the largest possible object
|
| sanitizer_stack_store.cpp | 53 StackTrace StackStore::Load(Id id) {
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_local_address_space_view.h | 11 // provides a simple interface to load memory from another process (i.e. 18 // load any pointers in instance methods. This implementation is effectively 33 // Load memory `sizeof(T) * num_elements` bytes of memory from the target 42 static const T *Load(const T *target_address, uptr num_elements = 1) { 48 // Load memory `sizeof(T) * num_elements` bytes of memory from the target 54 // by subsequent `Load()` or `LoadWritable()` calls provided the 56 // memory returned by previous calls to `Load()` will contain any performed 62 // Given the above it is recommended to load the largest possible object
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/ |
| TPCDynamicLibrarySearchGenerator.cpp | 15 TPCDynamicLibrarySearchGenerator::Load(TargetProcessControl &TPC,
|
| ExecutionUtils.cpp | 227 DynamicLibrarySearchGenerator::Load(const char *FileName, char GlobalPrefix, 272 StaticLibraryDefinitionGenerator::Load(ObjectLayer &L, const char *FileName) { 282 StaticLibraryDefinitionGenerator::Load(ObjectLayer &L, const char *FileName,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/ |
| SparcInstrInfo.h | 32 Load = (1<<1), 52 /// load from a stack slot, return the virtual or physical register number of
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| LoopLoadElimination.cpp | 1 //===- LoopLoadElimination.cpp - Loop Load Elimination Pass ---------------===// 9 // This file implement a loop-aware load elimination pass. 14 // of the corresponding load. This makes the load dead. 18 // load. 71 #define LLE_OPTION "loop-load-elim" 75 "runtime-check-per-loop-load-elim", cl::Hidden, 76 cl::desc("Max number of memchecks allowed per eliminated load on average"), 80 "loop-load-elimination-scev-check-threshold", cl::init(8), cl::Hidden, 82 "Load Elimination")) [all...] |
| ScalarizeMaskedMemIntrin.cpp | 113 // Translate a masked load intrinsic like 114 // <16 x i32 > @llvm.masked.load( <16 x i32>* %addr, i32 align, 121 // br i1 %2, label %cond.load, label %else 123 // cond.load: ; preds = %0 125 // %4 = load i32* %3 129 // else: ; preds = %0, %cond.load 130 // %res.phi.else = phi <16 x i32> [ %5, %cond.load ], [ undef, %0 ] 136 // %8 = load i32* %7 189 LoadInst *Load = Builder.CreateAlignedLoad(EltTy, Gep, AdjustedAlignVal); 190 VResult = Builder.CreateInsertElement(VResult, Load, Idx) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
| SymbolMap.cpp | 62 SymbolMapTranslator SymbolMapLoader::Load(StringRef InputFile,
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/ |
| hwasan_checks.h | 81 enum class AccessType { Load, Store };
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/ |
| CoroCleanup.cpp | 51 auto *Load = Builder.CreateLoad(FrameTy->getElementType(Index), Gep); 53 SubFn->replaceAllUsesWith(Load);
|
| CoroEarly.cpp | 96 auto *Load = Builder.CreateLoad(FrameTy, BCI); 97 auto *Cond = Builder.CreateICmpEQ(Load, NullPtr);
|
| /src/external/gpl3/gcc/dist/libsanitizer/hwasan/ |
| hwasan_checks.h | 24 enum class AccessType { Load, Store }; 50 .is_load = AT == AccessType::Load, 99 .is_load = AT == AccessType::Load,
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| ScheduleDAGSDNodes.cpp | 208 // Skip any load instruction that has a tied input. There may be an additional 276 SDNode *Load = O2SMap[Offset]; 277 if (!TII->shouldScheduleLoadsNear(BaseLoad, Load, BaseOff, Offset,NumLoads)) 279 Loads.push_back(Load); 294 SDNode *Load = Loads[I]; 298 if (AddGlue(Load, InGlue, OutGlue, DAG)) { 300 InGlue = SDValue(Load, Load->getNumValues() - 1);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| MipsISelLowering.h | 244 // Load/Store Left/Right nodes. 376 // (add (load (wrapper $gp, %got(sym)), %lo(sym)) 383 SDValue Load = 389 return DAG.getNode(ISD::ADD, DL, Ty, Load, Lo); 395 // (load (wrapper $gp, %got(sym))) 408 // (load (wrapper (add %hi(sym), $gp), %lo(sym))) 663 /// materialize the FP immediate as a load from a constant pool.
|
| MipsLegalizerInfo.cpp | 99 // therefore 4 byte load and store are legal and will use NoAlignRequirements. 140 assert(QueryMemSize != 32 && "4 byte load and store are legal"); 392 // This is anyextending load, use 4 byte lwr/lwl. 398 auto Load = MIRBuilder.buildLoad(s32, BaseAddr, *Load4MMO); 399 MIRBuilder.buildTrunc(Val, Load.getReg(0));
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| RelLookupTableConverter.cpp | 44 LoadInst *Load = dyn_cast<LoadInst>(GEP->use_begin()->getUser()); 45 if (!Load || !Load->hasOneUse()) 130 LoadInst *Load = cast<LoadInst>(GEP->use_begin()->getUser()); 151 // Create a call to load.relative intrinsic that computes the target address 157 if (Load->getType() != Builder.getInt8PtrTy()) 158 Result = Builder.CreateBitCast(Result, Load->getType(), "reltable.bitcast"); 160 // Replace load instruction with the new generated instruction sequence. 161 Load->replaceAllUsesWith(Result); 162 // Remove Load and GEP instructions [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| AMDGPULowerKernelArguments.cpp | 154 // Additionally widen any sub-dword load to i32 even if suitably aligned, 175 LoadInst *Load = 177 Load->setMetadata(LLVMContext::MD_invariant_load, MDNode::get(Ctx, {})); 183 Load->setMetadata(LLVMContext::MD_nonnull, MDNode::get(Ctx, {})); 187 Load->setMetadata( 196 Load->setMetadata( 205 Load->setMetadata( 217 Load : Builder.CreateLShr(Load, OffsetDiff * 8); 222 Arg.getName() + ".load"); [all...] |
| AMDGPULowerKernelAttributes.cpp | 99 auto *Load = dyn_cast<LoadInst>(*BCI->user_begin()); 100 if (!Load || !Load->isSimple()) 103 unsigned LoadSize = DL.getTypeStoreSize(Load->getType()); 109 WorkGroupSizeX = Load; 113 WorkGroupSizeY = Load; 117 WorkGroupSizeZ = Load; 121 GridSizeX = Load; 125 GridSizeY = Load; 129 GridSizeZ = Load; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/ |
| M68kCollapseMOVEMPass.cpp | 50 enum class AccessTy { None, Load, Store }; 141 void setLoad() { Access = AccessTy::Load; } 144 bool isLoad() const { return Access == AccessTy::Load; }
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/ |
| ObjCARCContract.cpp | 197 static StoreInst *findSafeStoreForStoreStrongContraction(LoadInst *Load, 204 // Get the location associated with Load. 205 MemoryLocation Loc = MemoryLocation::get(Load); 209 for (auto I = std::next(BasicBlock::iterator(Load)), 210 E = Load->getParent()->end(); 243 if (!CanUse(Inst, Load, PA, Class)) { 252 // our load location, if it can not, just ignore the instruction. 260 // understand writing to this memory implying we can not move the load 308 /// Attempt to merge an objc_release with a store, load, and objc_retain to form 315 /// ; Load old value [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/ |
| COFFAsmParser.cpp | 168 Load = 1 << 2, 190 SecFlags &= ~Load; 199 SecFlags |= Load; 204 SecFlags &= ~Load; 217 SecFlags |= Load; 224 SecFlags |= Load; 235 SecFlags |= Load; 258 if ((SecFlags & Alloc) && (SecFlags & Load) == 0)
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| HexagonShuffler.h | 87 // Flag whether the insn is a load or a store. 88 bool Load, Store; 93 void setLoad(bool f = true) { Load = f; } 103 bool mayLoad() const { return Load; }
|