OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EmitNops
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/MC/
MCAssembler.h
359
///
EmitNops
- Flag to indicate that (optimal) NOPs should be emitted instead
362
bool
EmitNops
: 1;
369
MaxBytesToEmit(_MaxBytesToEmit),
EmitNops
(false) {}
382
bool hasEmitNops() const { return
EmitNops
; }
383
void setEmitNops(bool Value) {
EmitNops
= Value; }
[
all
...]
/external/llvm/lib/Target/X86/
X86MCInstLower.cpp
686
static void
EmitNops
(MCStreamer &OS, unsigned NumBytes, bool Is64Bit, const MCSubtargetInfo &STI) {
689
assert(Is64Bit && "
EmitNops
only supports X86-64");
747
EmitNops
(OS, NumBytes, Is64Bit, STI);
778
EmitNops
(OS, NumBytes - EncodedBytes, Is64Bit, STI);
[
all
...]
Completed in 44 milliseconds