Lines Matching defs:Code
224 void EmitWinCFIPushFrame(bool Code) override;
692 assert(Directive && "Invalid size for machine code value!");
757 llvm_unreachable("Invalid size for machine code value!");
790 default: llvm_unreachable("Invalid size for machine code value!");
1095 /// this duplicate code in MCWin64EH.cpp.
1157 void MCAsmStreamer::EmitWinCFIPushFrame(bool Code) {
1158 MCStreamer::EmitWinCFIPushFrame(Code);
1161 if (Code)
1162 OS << " @code";
1176 SmallString<256> Code;
1178 raw_svector_ostream VecOS(Code);
1186 FixupMap.resize(Code.size() * 8);
1187 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1195 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1203 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1219 OS << format("0x%02x", uint8_t(Code[i]));
1221 if (Code[i]) {
1223 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1232 unsigned Bit = (Code[i] >> j) & 1;
1262 // Show the encoding in a comment if we have a code emitter.