HomeSort by: relevance | last modified time | path
    Searched defs:Placeholder (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
ValueList.cpp 32 /// as a placeholder for the actual definition for forward constants defs.
110 // Create and return a placeholder, which will later be RAUW'd.
138 // Create and return a placeholder, which will later be RAUW'd.
149 /// the place holders at once for any constant that uses a placeholder.
159 Constant *Placeholder = ResolveConstants.back().first;
162 // Loop over all users of the placeholder, updating them to reference the
163 // new value. If they reference more than one placeholder, update them all
165 while (!Placeholder->use_empty()) {
166 auto UI = Placeholder->user_begin();
176 // Otherwise, we have a constant that uses the placeholder. Replace tha
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineNegator.cpp 450 Value *Placeholder = reinterpret_cast<Value *>(static_cast<uintptr_t>(-1));
458 assert(NegatedV != Placeholder && "Encountered a cycle during negation.");
464 // let's temporairly cache a placeholder value, with the idea that if later
466 NegationsCache[V] = Placeholder;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
RustDemangle.h 49 Placeholder,
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 1325 uint32_t *Placeholder =
1329 Value.Addend += *Placeholder;
1332 Value.Addend += (int16_t)((*Placeholder & 0xFFF) | (((*Placeholder >> 16) & 0xF) << 12));
1337 uint8_t *Placeholder = reinterpret_cast<uint8_t *>(
1339 uint32_t Opcode = readBytesUnaligned(Placeholder, 4);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ValueMapper.cpp 196 TempMDNode Placeholder;
623 if (!OpD.Placeholder)
624 OpD.Placeholder = Op.clone();
626 return *OpD.Placeholder;
743 // Remember whether this node had a placeholder.
744 bool HadPlaceholder(D.Placeholder);
747 TempMDNode ClonedN = D.Placeholder ? std::move(D.Placeholder) : N->clone();
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 559 // For now we only need to fix up placeholder for register pressure reduce
590 MachineOperand *Placeholder = nullptr;
591 // Record the placeholder PPC::ZERO8 we add in reassociateFMA.
596 Placeholder = &Operand;
602 assert(Placeholder && "Placeholder does not exist!");
609 // Fill the placeholder with the new load from constant pool.
610 Placeholder->setReg(LoadNewConst);
1016 // here as a placeholder. When the InsInstrs is selected in
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCodeComplete.cpp 2766 /// block placeholder.
2831 // The argument for a dependent or non-block parameter is a placeholder
2872 // for the block; just use the parameter type as a placeholder.
2903 /// Returns a placeholder string that corresponds to an Objective-C block
3029 // Format the placeholder string.
3038 // Add the placeholder string.
3097 // Since putting the template argument list into the placeholder would
3128 // Add the placeholder string.
3579 // If we're before the starting parameter, skip the placeholder.
3727 // Format the placeholder string
    [all...]

Completed in 105 milliseconds