HomeSort by relevance Sort by last modified time
    Searched refs:ConstantDataSequential (Results 1 - 25 of 29) sorted by null

1 2

  /external/llvm/include/llvm/IR/
Constants.h 549 /// ConstantDataSequential - A vector or array constant whose element type is a
557 class ConstantDataSequential : public Constant {
563 /// Next - This forms a link list of ConstantDataSequential nodes that have
567 ConstantDataSequential *Next;
569 ConstantDataSequential(const ConstantDataSequential &) = delete;
576 explicit ConstantDataSequential(Type *ty, ValueTy VT, const char *Data)
578 ~ConstantDataSequential() override { delete Next; }
589 /// isElementTypeCompatible - Return true if a ConstantDataSequential can be
681 class ConstantDataArray : public ConstantDataSequential {
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVVMReflect.cpp 150 // ConstantDataSequential operand which can be converted to string and used
192 assert(isa<ConstantDataSequential>(Operand) &&
194 assert(cast<ConstantDataSequential>(Operand)->isCString() &&
198 cast<ConstantDataSequential>(Operand)->getAsString();
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 79 /// than ConstantDataSequential::isString because we allow 2 & 4 byte strings.
82 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(C)) {
  /external/llvm/lib/IR/
Constants.cpp 286 if (const ConstantDataSequential *CDS =dyn_cast<ConstantDataSequential>(this))
    [all...]
LLVMContextImpl.cpp 121 for (StringMap<ConstantDataSequential*>::iterator I = CDSConstants.begin(),
Instructions.cpp     [all...]
LLVMContextImpl.h     [all...]
Core.cpp 926 return wrap(static_cast<ConstantDataSequential*>(unwrap(c))->getElementAsConstant(idx));
930 return static_cast<ConstantDataSequential*>(unwrap(c))->isString();
934 StringRef str = static_cast<ConstantDataSequential*>(unwrap(c))->getAsString();
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 343 } else if (const ConstantDataSequential *CDS =
344 dyn_cast<ConstantDataSequential>(C)) {
345 // For our legacy handling of the new ConstantDataSequential type, we
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 343 } else if (const ConstantDataSequential *CDS =
344 dyn_cast<ConstantDataSequential>(C)) {
345 // For our legacy handling of the new ConstantDataSequential type, we
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 343 } else if (const ConstantDataSequential *CDS =
344 dyn_cast<ConstantDataSequential>(C)) {
345 // For our legacy handling of the new ConstantDataSequential type, we
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 823 if (llvm::ConstantDataSequential *CDS =
824 dyn_cast<llvm::ConstantDataSequential>(Init)) {
852 if (llvm::ConstantDataSequential *CDS =
853 dyn_cast<llvm::ConstantDataSequential>(Init)) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 413 ConstantDataSequential *CDS =
414 dyn_cast<ConstantDataSequential>(GV->getInitializer());
    [all...]
  /external/llvm/lib/Target/X86/Utils/
X86ShuffleDecode.cpp 401 if (auto *CDS = dyn_cast<ConstantDataSequential>(C)) {
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 675 if (const auto *SeqL = dyn_cast<ConstantDataSequential>(L)) {
676 const auto *SeqR = cast<ConstantDataSequential>(R);
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 791 } else if (const ConstantDataSequential *CDS =
792 dyn_cast<ConstantDataSequential>(CV)) {
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /external/llvm/include/llvm-c/
Core.h 1078 macro(ConstantDataSequential) \
    [all...]

Completed in 948 milliseconds

1 2