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

  /external/llvm/lib/MC/
MCAsmInfoCOFF.cpp 21 // MingW 4.5 and later support .comm with log2 alignment, but .lcomm uses byte
24 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
MCAsmInfoDarwin.cpp 32 LCOMMDirectiveAlignmentType = LCOMM::Log2Alignment;
MCAsmInfo.cpp 70 LCOMMDirectiveAlignmentType = LCOMM::NoAlignment;
MCAsmStreamer.cpp 146 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
516 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
525 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
528 case LCOMM::NoAlignment:
529 llvm_unreachable("alignment not supported on .lcomm!");
530 case LCOMM::ByteAlignment:
533 case LCOMM::Log2Alignment:
    [all...]
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCAsmInfo.cpp 29 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCAsmInfo.cpp 62 LCOMMDirectiveType = LCOMM::None;
  /external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCAsmInfo.cpp 62 LCOMMDirectiveType = LCOMM::None;
  /external/llvm/include/llvm/MC/
MCAsmInfo.h 52 namespace LCOMM {
248 /// Describes if the .lcomm directive for the target supports an alignment
250 LCOMM::LCOMMType LCOMMDirectiveAlignmentType;
453 LCOMM::LCOMMType getLCOMMDirectiveAlignmentType() const {
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 431 bool parseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 377 // Handle common and BSS local symbols (.lcomm).
401 // Use .lcomm only if it supports user-specified alignment.
402 // Otherwise, while it would still be correct to use .lcomm in some
407 if (MAI->getLCOMMDirectiveAlignmentType() != LCOMM::NoAlignment) {
408 // .lcomm _foo, 42
    [all...]

Completed in 1606 milliseconds