Home
last modified time | relevance | path

Searched refs:dynType (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/mlir/lib/IR/
H A DExtensibleDialect.cpp473 DynamicType dynType; in parseOptionalDynamicType() local
474 if (DynamicType::parse(parser, typeDef, dynType)) in parseOptionalDynamicType()
476 resultType = dynType; in parseOptionalDynamicType()
482 if (auto dynType = type.dyn_cast<DynamicType>()) { in printIfDynamicType() local
483 dynType.print(printer); in printIfDynamicType()
/llvm-project-15.0.7/mlir/test/lib/Dialect/Test/
H A DTestTypes.cpp419 Type dynType; in parseTestType() local
420 auto parseResult = parseOptionalDynamicType(typeTag, parser, dynType); in parseTestType()
423 return dynType; in parseTestType()
/llvm-project-15.0.7/lld/ELF/
H A DSyntheticSections.h519 void addSymbolReloc(RelType dynType, InputSectionBase &isec,
524 void addRelativeReloc(RelType dynType, InputSectionBase &isec,
529 void addAddendOnlyRelocIfNonPreemptible(RelType dynType,
533 void addReloc(DynamicReloc::Kind kind, RelType dynType,
H A DSyntheticSections.cpp1614 void RelocationBaseSection::addSymbolReloc(RelType dynType, in addSymbolReloc() argument
1619 addReloc(DynamicReloc::AgainstSymbol, dynType, isec, offsetInSec, sym, addend, in addSymbolReloc()
1624 RelType dynType, InputSectionBase &inputSec, uint64_t offsetInSec, in addRelativeReloc() argument
1632 addReloc(DynamicReloc::AddendOnlyWithTargetVA, dynType, inputSec, offsetInSec, in addRelativeReloc()
1637 RelType dynType, InputSectionBase &isec, uint64_t offsetInSec, Symbol &sym, in addAddendOnlyRelocIfNonPreemptible() argument
1641 addReloc({dynType, &isec, offsetInSec, DynamicReloc::AgainstSymbol, sym, 0, in addAddendOnlyRelocIfNonPreemptible()
1644 addReloc(DynamicReloc::AddendOnlyWithTargetVA, dynType, isec, offsetInSec, in addAddendOnlyRelocIfNonPreemptible()
1648 void RelocationBaseSection::addReloc(DynamicReloc::Kind kind, RelType dynType, in addReloc() argument
1658 addReloc({dynType, &inputSec, offsetInSec, kind, sym, addend, expr}); in addReloc()
/llvm-project-15.0.7/mlir/docs/
H A DDefiningDialects.md529 Type dynType;
530 auto parseResult = parseOptionalDynamicType(typeTag, parser, dynType);
533 return dynType;
556 auto dynType = type.cast<DynamicType>();
557 auto typeDef = dynType.getTypeDef();
558 auto args = dynType.getParams();
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dresolve-names.cpp6123 } else if (auto dynType{sel.expr->GetType()}) { in Post() local
6125 symbol->SetType(ToDeclTypeSpec(std::move(*dynType))); in Post()