Home | History | Annotate | Download | only in MC

Lines Matching defs:Code

237   virtual void EmitWin64EHPushFrame(bool Code);
633 assert(Directive && "Invalid size for machine code value!");
693 default: llvm_unreachable("Invalid size for machine code value!");
720 default: llvm_unreachable("Invalid size for machine code value!");
1030 code in MCWin64EH.cpp.
1092 void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
1093 MCStreamer::EmitWin64EHPushFrame(Code);
1096 if (Code)
1097 OS << " @code";
1110 SmallString<256> Code;
1112 raw_svector_ostream VecOS(Code);
1120 FixupMap.resize(Code.size() * 8);
1121 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1129 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1137 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1153 OS << format("0x%02x", uint8_t(Code[i]));
1155 if (Code[i]) {
1157 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1166 unsigned Bit = (Code[i] >> j) & 1;
1254 // Show the encoding in a comment if we have a code emitter.