Lines Matching refs:Code
245 virtual void EmitWin64EHPushFrame(bool Code);
692 assert(Directive && "Invalid size for machine code value!");
756 default: llvm_unreachable("Invalid size for machine code value!");
783 default: llvm_unreachable("Invalid size for machine code value!");
1131 /// this duplicate code in MCWin64EH.cpp.
1193 void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
1194 MCStreamer::EmitWin64EHPushFrame(Code);
1197 if (Code)
1198 OS << " @code";
1211 SmallString<256> Code;
1213 raw_svector_ostream VecOS(Code);
1221 FixupMap.resize(Code.size() * 8);
1222 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1230 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1238 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1254 OS << format("0x%02x", uint8_t(Code[i]));
1256 if (Code[i]) {
1258 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1267 unsigned Bit = (Code[i] >> j) & 1;
1364 // Show the encoding in a comment if we have a code emitter.