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

  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCAsmInfo.cpp 27 LCOMMDirectiveType = LCOMM::ByteAlignment;
  /external/llvm/lib/MC/
MCAsmInfoCOFF.cpp 23 LCOMMDirectiveType = LCOMM::ByteAlignment;
MCAsmInfo.cpp 76 LCOMMDirectiveType = LCOMM::None;
MCAsmStreamer.cpp 164 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
498 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
504 assert(MAI.getLCOMMDirectiveType() != LCOMM::None &&
505 "Doesn't have .lcomm, can't emit it!");
506 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
508 assert(MAI.getLCOMMDirectiveType() == LCOMM::ByteAlignment &&
509 "Alignment not supported on .lcomm!");
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCAsmInfo.cpp 79 LCOMMDirectiveType = LCOMM::NoAlignment;
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCAsmInfo.cpp 67 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.
523 LCOMM::LCOMMType getLCOMMDirectiveType() const {
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 298 // Handle common and BSS local symbols (.lcomm).
322 if (MAI->getLCOMMDirectiveType() != LCOMM::None &&
323 (MAI->getLCOMMDirectiveType() != LCOMM::NoAlignment || Align == 1)) {
324 // .lcomm _foo, 42
    [all...]

Completed in 521 milliseconds