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 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
  /external/llvm/lib/MC/
MCAsmInfoCOFF.cpp 22 // MingW 4.5 and later support .comm with log2 alignment, but .lcomm uses byte
25 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
MCAsmInfoDarwin.cpp 35 LCOMMDirectiveAlignmentType = LCOMM::Log2Alignment;
MCAsmInfo.cpp 75 LCOMMDirectiveAlignmentType = LCOMM::NoAlignment;
MCAsmStreamer.cpp 173 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
551 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
557 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
560 case LCOMM::NoAlignment:
561 llvm_unreachable("alignment not supported on .lcomm!");
562 case LCOMM::ByteAlignment:
565 case LCOMM::Log2Alignment:
    [all...]
  /external/llvm/include/llvm/MC/
MCAsmInfo.h 35 namespace LCOMM {
262 /// LCOMMDirectiveAlignment - Describes if the .lcomm directive for the
264 LCOMM::LCOMMType LCOMMDirectiveAlignmentType; // Defaults to NoAlignment.
521 LCOMM::LCOMMType getLCOMMDirectiveAlignmentType() const {
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 417 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 290 // Handle common and BSS local symbols (.lcomm).
314 // Use .lcomm only if it supports user-specified alignment.
315 // Otherwise, while it would still be correct to use .lcomm in some
320 if (MAI->getLCOMMDirectiveAlignmentType() != LCOMM::NoAlignment) {
321 // .lcomm _foo, 42
    [all...]

Completed in 62 milliseconds