Home
last modified time | relevance | path

Searched refs:CFR (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/ProfileData/Coverage/
DCoverageMappingReader.cpp392 Error insertFunctionRecordIfNeeded(const FuncRecordType *CFR, in insertFunctionRecordIfNeeded() argument
394 uint64_t FuncHash = CFR->template getFuncHash<Endian>(); in insertFunctionRecordIfNeeded()
395 NameRefType NameRef = CFR->template getFuncNameRef<Endian>(); in insertFunctionRecordIfNeeded()
400 if (Error Err = CFR->template getFuncName<Endian>(ProfileNames, FuncName)) in insertFunctionRecordIfNeeded()
474 auto CFR = reinterpret_cast<const FuncRecordType *>(FunBuf); in readFunctionRecords() local
475 while ((const char *)CFR < FunEnd) { in readFunctionRecords()
477 uint32_t DataSize = CFR->template getDataSize<Endian>(); in readFunctionRecords()
486 insertFunctionRecordIfNeeded(CFR, Mapping, FilenamesBegin)) in readFunctionRecords()
488 CFR++; in readFunctionRecords()
/external/swiftshader/third_party/LLVM/utils/TableGen/
DDAGISelMatcherEmitter.cpp550 const MarkGlueResultsMatcher *CFR = cast<MarkGlueResultsMatcher>(N); in EmitMatcher() local
551 OS << "OPC_MarkGlueResults, " << CFR->getNumNodes() << ", "; in EmitMatcher()
553 for (unsigned i = 0, e = CFR->getNumNodes(); i != e; ++i) in EmitMatcher()
554 NumOperandBytes += EmitVBRValue(CFR->getNode(i), OS); in EmitMatcher()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp4367 const SDValue &CFR = Ext.getOperand(0); in getTruncatedArgReg() local
4368 if (CFR.getOpcode() == ISD::CopyFromReg) in getTruncatedArgReg()
4369 return cast<RegisterSDNode>(CFR.getOperand(1))->getReg(); in getTruncatedArgReg()
4371 if (CFR.getOpcode() == ISD::TRUNCATE) in getTruncatedArgReg()
4372 return getTruncatedArgReg(CFR); in getTruncatedArgReg()