HomeSort by: relevance | last modified time | path
    Searched refs:Load (Results 1 - 25 of 336) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueLatticeUtils.cpp 36 if (auto *Load = dyn_cast<LoadInst>(U))
37 return !Load->isVolatile();
  /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
  /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/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
riscv64-unwind-prologue-with-ld-lw-foo.s 56 lla a5,__canary # Load the fake canary address.
57 lw t4,0(a5) # Load a 32 bit canary (use t4 to force the use of
59 ld t4,0(a5) # Load a 64 bit canary (use t4 to force the use of
61 c.lw a4,0(a5) # Load a 32 bit canary using the compressed insn.
62 c.ld a4,0(a5) # Load a 64 bit canary using the compressed insn.
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
riscv64-unwind-prologue-with-ld-lw-foo.s 56 lla a5,__canary # Load the fake canary address.
57 lw t4,0(a5) # Load a 32 bit canary (use t4 to force the use of
59 ld t4,0(a5) # Load a 64 bit canary (use t4 to force the use of
61 c.lw a4,0(a5) # Load a 32 bit canary using the compressed insn.
62 c.ld a4,0(a5) # Load a 64 bit canary using the compressed insn.
  /src/sys/arch/vax/consolerl/
anyboo.com 3 ! Load 'boot.' and boot 4.3BSD.
18 LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0
hkmboo.com 3 ! Load 'boot.' and boot 4.3BSD.
18 LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0
hksboo.com 3 ! Load 'boot.' and boot 4.3BSD.
18 LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0
hpmboo.com 3 ! Load 'boot.' and boot 4.3BSD.
18 LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0
hpsboo.com 3 ! Load 'boot.' and boot 4.3BSD.
18 LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0
upmboo.com 3 ! Load 'boot.' and boot 4.3BSD.
18 LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0
upsboo.com 3 ! Load 'boot.' and boot 4.3BSD.
18 LOAD/START:0 BOOT. ! Load 'boot.' at memory location 0
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
TPCDynamicLibrarySearchGenerator.h 40 /// in the library. On failure returns the reason the library failed to load.
42 Load(TargetProcessControl &TPC, const char *LibraryPath,
50 return Load(TPC, nullptr, std::move(Allow));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
GVN.cpp 10 // instructions. It also performs simple dead load elimination.
111 static cl::opt<bool> GVNEnableLoadPRE("enable-load-pre", cl::init(true));
112 static cl::opt<bool> GVNEnableLoadInLoopPRE("enable-load-in-loop-pre",
115 GVNEnableSplitBackedgeInLoadPRE("enable-split-backedge-in-load-pre",
121 cl::desc("Max number of dependences to attempt Load PRE (default = 100)"));
183 LoadVal, // A value produced by a load.
192 /// Offset - The byte offset in Val that is interesting for the load query.
211 static AvailableValue getLoad(LoadInst *Load, unsigned Offset = 0) {
213 Res.Val.setPointer(Load);
249 Value *MaterializeAdjustedValue(LoadInst *Load, Instruction *InsertPt
    [all...]
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...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_memintrinsics.cpp 33 CheckAddressSized<ErrorAction::Recover, AccessType::Load>(
41 CheckAddressSized<ErrorAction::Recover, AccessType::Load>(
  /src/crypto/external/apache2/openssl/lib/libcrypto/arch/riscv64/
sm3-riscv64-zvksh.S 10 # Load initial state of hash context (c->A-H).
19 # Load the 64B block in 2x32B chunks.
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_memintrinsics.cpp 33 CheckAddressSized<ErrorAction::Recover, AccessType::Load>(
41 CheckAddressSized<ErrorAction::Recover, AccessType::Load>(
60 CheckAddressSized<ErrorAction::Recover, AccessType::Load>(
71 CheckAddressSized<ErrorAction::Recover, AccessType::Load>(
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUAnnotateUniformValues.cpp 52 bool isClobberedInFunction(LoadInst * Load);
73 bool AMDGPUAnnotateUniformValues::isClobberedInFunction(LoadInst * Load) {
74 const MemoryAccess *MA = MSSA->getWalker()->getClobberingMemoryAccess(Load);
87 auto isGlobalLoad = [&](LoadInst &Load)->bool {
88 return Load.getPointerAddressSpace() == AMDGPUAS::GLOBAL_ADDRESS;
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/gpl3/gdb/dist/sim/testsuite/riscv/
jalr.s 8 # Load desination into register a0.
  /src/external/gpl3/gdb.old/dist/sim/testsuite/riscv/
jalr.s 8 # Load desination into register a0.
  /src/external/apache2/llvm/dist/llvm/lib/Object/
MachOObjectFile.cpp 191 return malformedError("load command " + Twine(LoadCommandIndex) +
194 return malformedError("load command " + Twine(LoadCommandIndex) +
206 return malformedError("load command 0 extends past the end all load "
218 return malformedError("load command " + Twine(LoadCommandIndex + 1) +
219 " extends past the end all load commands in the file");
273 // Parses LC_SEGMENT or LC_SEGMENT_64 load command, adds addresses of all
278 const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load,
283 if (Load.C.cmdsize < SegmentLoadSize)
284 return malformedError("load command " + Twine(LoadCommandIndex)
    [all...]

Completed in 68 milliseconds

1 2 3 4 5 6 7 8 91011>>