HomeSort by relevance Sort by last modified time
    Searched refs:LCOMM (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/MC/
MCAsmInfoCOFF.cpp 22 LCOMMDirectiveType = LCOMM::ByteAlignment;
MCAsmInfo.cpp 75 LCOMMDirectiveType = LCOMM::None;
MCAsmStreamer.cpp 161 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
490 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
496 assert(MAI.getLCOMMDirectiveType() != LCOMM::None &&
497 "Doesn't have .lcomm, can't emit it!");
498 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
500 assert(MAI.getLCOMMDirectiveType() == LCOMM::ByteAlignment &&
501 "Alignment not supported on .lcomm!");
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCAsmInfo.cpp 75 LCOMMDirectiveType = LCOMM::NoAlignment;
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCAsmInfo.cpp 63 LCOMMDirectiveType = LCOMM::NoAlignment;
  /external/llvm/include/llvm/MC/
MCAsmInfo.h 35 namespace LCOMM {
257 /// LCOMMDirectiveType - Describes if the target supports the .lcomm
259 LCOMM::LCOMMType LCOMMDirectiveType; // Defaults to LCOMM::None.
518 LCOMM::LCOMMType getLCOMMDirectiveType() const {
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 297 // Handle common and BSS local symbols (.lcomm).
321 if (MAI->getLCOMMDirectiveType() != LCOMM::None &&
322 (MAI->getLCOMMDirectiveType() != LCOMM::NoAlignment || Align == 1)) {
323 // .lcomm _foo, 42
    [all...]

Completed in 5730 milliseconds