Home
last modified time | relevance | path

Searched refs:JC (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DHash.cpp81 JamCRC JC(/*Init=*/0U); in hashBufferV8() local
82 JC.update(Buf); in hashBufferV8()
83 return JC.getCRC(); in hashBufferV8()
H A DTpiHashing.cpp126 JamCRC JC(/*Init=*/0U); in hashTypeRecord() local
127 JC.update(Rec.data()); in hashTypeRecord()
128 return JC.getCRC(); in hashTypeRecord()
/llvm-project-15.0.7/clang/test/Layout/
H A Dms-x86-alias-avoidance-padding.cpp434 struct JC : JA { virtual void f() {} }; in f() struct
435 struct JD : virtual JB, virtual JC { virtual void f() {} JD() {} }; in f()
H A Dms-x86-pack-and-align.cpp286 struct JC : JB, JA { }; struct
690 sizeof(JC)+
H A Dms-x86-lazy-empty-nonvirtual-base.cpp681 struct JC { char a; }; argument
682 struct JD : JA, JB, virtual JC {};
/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DSampleProfileProbe.cpp230 JamCRC JC; in computeCFGHash() local
241 JC.update(Indexes); in computeCFGHash()
244 (uint64_t)Indexes.size() << 32 | JC.getCRC(); in computeCFGHash()
250 << " CRC = " << JC.getCRC() << ", Edges = " in computeCFGHash()
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Dbranch-target-enforcement.mir108 # External function, could be addres-taken elsewhere so needs BTI JC.
133 # Function starts with PACIASP, which implicitly acts as BTI JC, so no change
157 # Function starts with PACIBSP, which implicitly acts as BTI JC, so no change
300 # Function takes address of the entry block, so the entry block needs a BTI JC.
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp583 JamCRC JC; in computeCFGHash() local
596 JC.update(Indexes); in computeCFGHash()
605 (uint64_t)MST.AllEdges.size() << 32 | JC.getCRC(); in computeCFGHash()
620 FunctionHash = (((uint64_t)JCH.getCRC()) << 28) + JC.getCRC(); in computeCFGHash()
628 << " CRC = " << JC.getCRC() in computeCFGHash()
H A DGCOVProfiling.cpp930 JamCRC JC; in emitProfileNotes() local
931 JC.update(EdgeDestinations); in emitProfileNotes()
932 uint32_t Stamp = JC.getCRC(); in emitProfileNotes()
/llvm-project-15.0.7/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp599 JamCRC JC(/*Init=*/0); in writeSectionContents() local
600 JC.update(makeArrayRef(reinterpret_cast<uint8_t*>(Buf.data()), Buf.size())); in writeSectionContents()
601 return JC.getCRC(); in writeSectionContents()
/llvm-project-15.0.7/llvm/test/Demangle/
H A Dms-mangle.test26 ?e@foo@@1JC
H A Dms-string-literals.test114 ??_C@_01PNFBAFJI@?$JC?$AA@
/llvm-project-15.0.7/clang/lib/AST/
H A DMicrosoftMangle.cpp3904 llvm::JamCRC JC; in mangleStringLiteral() local
3906 JC.update(GetLittleEndianByte(I)); in mangleStringLiteral()
3910 Mangler.mangleNumber(JC.getCRC()); in mangleStringLiteral()