Lines Matching refs:Code
232 virtual void EmitWin64EHPushFrame(bool Code);
628 assert(Directive && "Invalid size for machine code value!");
688 default: llvm_unreachable("Invalid size for machine code value!");
715 default: llvm_unreachable("Invalid size for machine code value!");
1011 /// this duplicate code in MCWin64EH.cpp.
1073 void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
1074 MCStreamer::EmitWin64EHPushFrame(Code);
1077 if (Code)
1078 OS << " @code";
1091 SmallString<256> Code;
1093 raw_svector_ostream VecOS(Code);
1101 FixupMap.resize(Code.size() * 8);
1102 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1110 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1118 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1134 OS << format("0x%02x", uint8_t(Code[i]));
1136 if (Code[i]) {
1138 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1147 unsigned Bit = (Code[i] >> j) & 1;
1235 // Show the encoding in a comment if we have a code emitter.