Searched refs:Block (Results 176 - 200 of 261) sorted by relevance

1234567891011

/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionSourceCode.cpp19 #include "lldb/Symbol/Block.h"
330 if (Block *block = frame->GetFrameBlock()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFLiveness.cpp169 auto Block = [this] (NodeAddr<InstrNode*> IA) -> MachineBasicBlock* { local
178 auto Less = [&Block,this] (NodeId A, NodeId B) -> bool {
182 MachineBasicBlock *BA = Block(OA), *BB = Block(OB);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp2628 BasicBlock *Block = unwrap(BB);
2629 Function::iterator I(Block);
2630 if (++I == Block->getParent()->end())
2636 BasicBlock *Block = unwrap(BB);
2637 Function::iterator I(Block);
2638 if (I == Block->getParent()->begin())
2707 BasicBlock *Block = unwrap(BB);
2708 BasicBlock::iterator I = Block->begin();
2709 if (I == Block->end())
2715 BasicBlock *Block
[all...]
H A DDebugInfo.cpp1364 LLVMMetadataRef Expr, LLVMMetadataRef DL, LLVMBasicBlockRef Block) {
1368 unwrap(Block)));
1388 LLVMBasicBlockRef Block) {
1392 unwrap(Block)));
1362 LLVMDIBuilderInsertDeclareAtEnd( LLVMDIBuilderRef Builder, LLVMValueRef Storage, LLVMMetadataRef VarInfo, LLVMMetadataRef Expr, LLVMMetadataRef DL, LLVMBasicBlockRef Block) argument
1383 LLVMDIBuilderInsertDbgValueAtEnd(LLVMDIBuilderRef Builder, LLVMValueRef Val, LLVMMetadataRef VarInfo, LLVMMetadataRef Expr, LLVMMetadataRef DebugLoc, LLVMBasicBlockRef Block) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp21 #include "lldb/Symbol/Block.h"
118 return PDB_SymType::Block;
581 PdbIndex &index, PdbCompilandSymId var_id, Block &block,
622 Block *cur = &block;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrameList.cpp14 #include "lldb/Symbol/Block.h"
106 Block *block_ptr = m_frames[0]->GetFrameBlock();
174 for (Block *container_ptr = block_ptr->GetInlinedParent();
524 Block *unwind_block = unwind_sc.block;
H A DStackFrame.cpp249 Block *StackFrame::GetFrameBlock() {
254 Block *inline_block = m_sc.block->GetContainingInlinedBlock();
426 Block *frame_block = GetFrameBlock();
1678 Block *frame_block = GetFrameBlock();
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DCommentSema.cpp437 VerbatimBlockComment *Block,
441 Block->setCloseName(CloseName, CloseNameLocBegin);
442 Block->setLines(Lines);
436 actOnVerbatimBlockFinish( VerbatimBlockComment *Block, SourceLocation CloseNameLocBegin, StringRef CloseName, ArrayRef<VerbatimBlockLineComment *> Lines) argument
H A DCommentParser.cpp338 // Block command ahead. We can't nest block commands, so pretend that this
384 BlockContentComment *Block = parseParagraphOrBlockCommand(); local
387 Paragraph = cast<ParagraphComment>(Block);
566 break; // Block content or EOF ahead, finish this parapgaph.
581 break; // Block command ahead, finish this parapgaph.
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp493 const ParmVarDecl *Block = D->getParamDecl(1); local
494 QualType Ty = Block->getType();
513 /*StmtClass=*/M.makeLvalueToRvalue(/*Expr=*/Block),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DInliner.cpp451 BasicBlock *Block = CB.getParent(); local
464 Block)
473 emitInlinedInto(ORE, DLoc, Block, *Callee, *Caller, *OIC);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp124 unsigned getUnprocPredCount(BasicBlock *Block) const {
126 for (pred_iterator I = pred_begin(Block), E = pred_end(Block); I != E; ++I)
404 // Block addresses only match if we've already encountered the
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp983 DIEBlock *Block = nullptr; local
988 Block = new (DIEAlloc) DIEBlock;
989 Linker.DIEBlocks.push_back(Block);
992 : static_cast<DIEValueList *>(Block);
999 dwarf::Form(AttrSpec.Form), Block);
1026 Block->setSize(Bytes.size());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp927 // Set elements I..I+NumElts-1 to Block
928 Value *insertVector(Value *Col, unsigned I, Value *Block, argument
931 // First, bring Block to the same size as Col
933 cast<FixedVectorType>(Block->getType())->getNumElements();
937 Value *Undef = UndefValue::get(Block->getType());
938 Block = Builder.CreateShuffleVector(
939 Block, Undef,
957 return Builder.CreateShuffleVector(Col, Block, Mask);
H A DLoopDistribute.cpp219 for (auto *Block : OrigLoop->getBlocks())
220 for (auto &Inst : *Block)
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp248 P.formatLine("Block Size: {0}", getPdb().getBlockSize());
959 for (const auto &Block : Lines) {
960 if (LastModi != Modi || LastNameIndex != Block.NameIndex) {
962 LastNameIndex = Block.NameIndex;
963 Strings.formatFromChecksumsOffset(P, Block.NameIndex);
968 uint32_t Count = Block.LineNumbers.size();
975 typesetLinesAndColumns(P, Begin, Block);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h250 Block, member in class:llvm::pdb::PDB_Checksum::PDB_SymType
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELF_x86_64.cpp431 Error applyFixup(Block &B, const Edge &E, char *BlockWorkingMem) const {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DScopedPrinter.h346 bool Block, uint32_t StartOffset = 0);
H A DGenericDomTree.h589 assert(getNode(BB) == nullptr && "Block already in dominator tree!");
602 assert(getNode(BB) == nullptr && "Block already in dominator tree!");
635 /// eraseNode - Removes a node from the dominator tree. Block must not
691 for (const NodePtr Block : Roots) {
692 Block->printAsOperand(O, false);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp23 BlockScope.push_back(Block(CurCodeSize));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h373 void emitLexicalBlock(const LexicalBlock &Block, const FunctionInfo& FI);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.cpp523 return ReturnError(CodeStart-2, "Unterminated Code Block");
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp182 Modifier(BasicBlock *Block, PieceTable *PT, Random *R) argument
183 : BB(Block), PT(PT), Ran(R), Context(BB->getContext()) {}
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp1 //===- BlockFrequencyImplInfo.cpp - Block Frequency Info Implementation ---===//
393 // Block scale stores the inverse of the scale. If this is an infinite loop,
639 Scaled64 Block(Freq.getFrequency(), 0);
642 return OS << Block / Entry;

Completed in 222 milliseconds

1234567891011