| /llvm-project-15.0.7/mlir/test/lib/IR/ |
| H A D | TestTypes.cpp | 52 if (failed(type.setBody(type))) in createIRWithTypes() 56 if (failed(type.setBody(type))) in createIRWithTypes() 61 if (succeeded(type.setBody(IndexType::get(ctx)))) in createIRWithTypes()
|
| /llvm-project-15.0.7/mlir/unittests/Dialect/LLVMIR/ |
| H A D | LLVMTypeTest.cpp | 30 ASSERT_TRUE(succeeded(fooStructTy.setBody(fooBody, /*packed=*/false))); in TEST_F() 32 ASSERT_TRUE(succeeded(barStructTy.setBody(barBody, /*packed=*/false))); in TEST_F()
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | DerivedTypes.h | 302 void setBody(ArrayRef<Type*> Elements, bool isPacked = false); 306 setBody(Type *elt1, Tys *... elts) { in setBody() function 308 setBody(ArrayRef<Type *>({elt1, elts...})); in setBody()
|
| /llvm-project-15.0.7/mlir/test/lib/Dialect/Test/ |
| H A D | TestTypes.h | 146 ::mlir::LogicalResult setBody(Type body) { return Base::mutate(body); }
|
| H A D | TestTypes.cpp | 452 if (!subtype || failed(parser.parseGreater()) || failed(rec.setBody(subtype))) in parseTestType()
|
| /llvm-project-15.0.7/mlir/lib/Target/LLVMIR/ |
| H A D | TypeFromLLVM.cpp | 124 LogicalResult bodySet = translated.setBody(subtypes, type->isPacked()); in translate()
|
| H A D | TypeToLLVM.cpp | 134 structType->setBody(subtypes, type.isPacked()); in translate()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Type.cpp | 423 ST->setBody(ETypes, isPacked); in get() 445 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { in setBody() function in StructType 527 ST->setBody(Elements, isPacked); in create()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroEarly.cpp | 114 FrameTy->setBody({FnPtrTy, FnPtrTy}); in lowerCoroNoop()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Stmt.h | 2263 void setBody(Stmt *Body) { in setBody() function 2326 void setBody(Stmt *S, SourceLocation SL) { in setBody() function 2327 setBody(S); in setBody() 2443 void setBody(Stmt *Body) { in setBody() function 2521 setBody(Body); in DoStmt() 2537 void setBody(Stmt *Body) { SubExprs[BODY] = Body; } in setBody() function 2610 void setBody(Stmt *S) { SubExprs[BODY] = S; } in setBody() function
|
| H A D | StmtObjC.h | 50 void setBody(Stmt *S) { SubExprs[BODY] = S; } in setBody() function
|
| H A D | StmtCXX.h | 199 void setBody(Stmt *S) { SubExprs[BODY] = S; } in setBody() function
|
| H A D | Decl.h | 2188 void setBody(Stmt *B); 4299 void setBody(CompoundStmt *B) { Body = (Stmt*) B; } in setBody() function 4448 void setBody(Stmt *B);
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/LLVMIR/ |
| H A D | LLVMTypes.h | 339 LogicalResult setBody(ArrayRef<Type> types, bool isPacked);
|
| /llvm-project-15.0.7/lld/wasm/ |
| H A D | InputChunks.h | 321 void setBody(ArrayRef<uint8_t> body) { rawData = body; } in setBody() function
|
| H A D | SymbolTable.cpp | 830 func->setBody(unreachableFn); in replaceWithUnreachable()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | ShadowStackGCLowering.cpp | 207 StackEntryTy->setBody(EltTys); in doInitialization()
|
| /llvm-project-15.0.7/flang/lib/Optimizer/CodeGen/ |
| H A D | TypeConverter.h | 183 if (mlir::failed(st.setBody(members, /*isPacked=*/false))) in convertRecordType()
|
| /llvm-project-15.0.7/mlir/lib/Dialect/LLVMIR/IR/ |
| H A D | LLVMTypes.cpp | 420 if (type.isInitialized() || failed(type.setBody(elements, isPacked))) { in getNewIdentified() 451 LogicalResult LLVMStructType::setBody(ArrayRef<Type> types, bool isPacked) { in setBody() function in LLVMStructType
|
| H A D | LLVMTypeSyntax.cpp | 323 if (succeeded(type.setBody(subtypes, isPacked))) in trySetStructBody()
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 251 S->setBody(Record.readSubStmt()); in VisitSwitchStmt() 279 S->setBody(Record.readSubStmt()); in VisitWhileStmt() 291 S->setBody(Record.readSubStmt()); in VisitDoStmt() 303 S->setBody(Record.readSubStmt()); in VisitForStmt() 514 S->getCapturedDecl()->setBody(S->getCapturedStmt()); in VisitCapturedStmt() 1560 S->setBody(Record.readSubStmt()); in VisitObjCForCollectionStmt() 1660 S->setBody(Record.readSubStmt()); in VisitCXXForRangeStmt()
|
| /llvm-project-15.0.7/mlir/lib/Conversion/LLVMCommon/ |
| H A D | TypeConverter.cpp | 87 if (failed(convertedType.setBody(convertedElemTypes, type.isPacked()))) in LLVMTypeConverter()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | Stmt.cpp | 1062 setBody(nullptr); in SwitchStmt() 1126 setBody(Body); in WhileStmt()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86WinEHState.cpp | 218 EHLinkRegistrationTy->setBody(FieldTys, false); in getEHLinkRegistrationType()
|
| /llvm-project-15.0.7/llvm/lib/Linker/ |
| H A D | IRMover.cpp | 217 DstSTy->setBody(Elements, SrcSTy->isPacked()); in linkDefinedTypeBodies() 226 DTy->setBody(ETypes, STy->isPacked()); in finishType()
|