HomeSort by relevance Sort by last modified time
    Searched refs:DISubrange (Results 1 - 13 of 13) sorted by null

  /external/llvm/lib/IR/
DebugInfoMetadata.cpp 231 DISubrange *DISubrange::getImpl(LLVMContext &Context, int64_t Count, int64_t Lo,
233 DEFINE_GETIMPL_LOOKUP(DISubrange, (Count, Lo));
234 DEFINE_GETIMPL_STORE_NO_OPS(DISubrange, (Count, Lo));
LLVMContextImpl.h 276 template <> struct MDNodeKeyImpl<DISubrange> {
282 MDNodeKeyImpl(const DISubrange *N)
285 bool isKeyOf(const DISubrange *RHS) const {
    [all...]
DIBuilder.cpp 566 DISubrange *DIBuilder::getOrCreateSubrange(int64_t Lo, int64_t Count) {
567 return DISubrange::get(VMContext, Count, Lo);
    [all...]
AsmWriter.cpp     [all...]
Verifier.cpp 776 void Verifier::visitDISubrange(const DISubrange &N) {
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h 348 void constructSubrangeDIE(DIE &Buffer, const DISubrange *SR, DIE *IndexTy);
DwarfUnit.cpp     [all...]
  /external/llvm/include/llvm/IR/
DIBuilder.h 432 DISubrange *getOrCreateSubrange(int64_t Lo, int64_t Count);
    [all...]
DebugInfoMetadata.h 318 class DISubrange : public DINode {
325 DISubrange(LLVMContext &C, StorageType Storage, int64_t Count,
329 ~DISubrange() = default;
331 static DISubrange *getImpl(LLVMContext &Context, int64_t Count,
340 DEFINE_MDNODE_GET(DISubrange, (int64_t Count, int64_t LowerBound = 0),
    [all...]
  /external/llvm/unittests/IR/
MetadataTest.cpp 872 auto *N = DISubrange::get(Context, 5, 7);
876 EXPECT_EQ(N, DISubrange::get(Context, 5, 7));
877 EXPECT_EQ(DISubrange::get(Context, 5, 0), DISubrange::get(Context, 5));
884 auto *N = DISubrange::get(Context, -1, 0);
888 EXPECT_EQ(N, DISubrange::get(Context, -1, 0));
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 7848 milliseconds