HomeSort by relevance Sort by last modified time
    Searched refs:Emit (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/v8/src/
regexp-macro-assembler-irregexp.cc 94 Emit(BC_POP_REGISTER, register_index);
103 Emit(BC_PUSH_REGISTER, register_index);
111 Emit(BC_SET_REGISTER_TO_CP, register_index);
128 Emit(BC_SET_CP_TO_REGISTER, register_index);
136 Emit(BC_SET_REGISTER_TO_SP, register_index);
144 Emit(BC_SET_SP_TO_REGISTER, register_index);
150 Emit(BC_SET_CURRENT_POSITION_FROM_END, by);
157 Emit(BC_SET_REGISTER, register_index);
165 Emit(BC_ADVANCE_REGISTER, register_index);
171 Emit(BC_POP_CP, 0)
    [all...]
regexp-macro-assembler-irregexp-inl.h 43 void RegExpMacroAssemblerIrregexp::Emit(uint32_t byte,
  /external/chromium_org/v8/src/
regexp-macro-assembler-irregexp.cc 96 Emit(BC_POP_REGISTER, register_index);
105 Emit(BC_PUSH_REGISTER, register_index);
113 Emit(BC_SET_REGISTER_TO_CP, register_index);
130 Emit(BC_SET_CP_TO_REGISTER, register_index);
138 Emit(BC_SET_REGISTER_TO_SP, register_index);
146 Emit(BC_SET_SP_TO_REGISTER, register_index);
152 Emit(BC_SET_CURRENT_POSITION_FROM_END, by);
159 Emit(BC_SET_REGISTER, register_index);
167 Emit(BC_ADVANCE_REGISTER, register_index);
173 Emit(BC_POP_CP, 0)
    [all...]
regexp-macro-assembler-irregexp-inl.h 43 void RegExpMacroAssemblerIrregexp::Emit(uint32_t byte,
regexp-macro-assembler-irregexp.h 120 inline void Emit(uint32_t bc, uint32_t arg);
  /art/compiler/utils/x86/
assembler_x86_test.cc 26 buffer.Emit<uint8_t>(0x42);
28 buffer.Emit<int32_t>(42);
  /external/llvm/lib/Target/R600/MCTargetDesc/
R600MCCodeEmitter.cpp 57 void Emit(uint32_t value, raw_ostream &OS) const;
58 void Emit(uint64_t value, raw_ostream &OS) const;
106 Emit(InstWord01, OS);
107 Emit(InstWord2, OS);
108 Emit((uint32_t) 0, OS);
130 Emit(Word01, OS);
131 Emit(Word2, OS);
132 Emit((uint32_t) 0, OS);
142 Emit(Inst, OS);
150 void R600MCCodeEmitter::Emit(uint32_t Value, raw_ostream &OS) const
    [all...]
  /external/clang/utils/TableGen/
ClangCommentHTMLTagsEmitter.cpp 36 StringMatcher("Name", Matches, OS).Emit();
60 StringMatcher("Name", MatchesEndTagOptional, OS).Emit();
65 StringMatcher("Name", MatchesEndTagForbidden, OS).Emit();
ClangCommentHTMLNamedCharacterReferenceEmitter.cpp 79 StringMatcher("Name", NameToUTF8, OS).Emit();
  /external/llvm/include/llvm/TableGen/
StringMatcher.h 44 void Emit(unsigned Indent = 0) const;
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 121 void Emit(uint32_t Val, unsigned NumBits) {
142 Emit((uint32_t)Val, NumBits);
144 Emit((uint32_t)Val, 32);
145 Emit((uint32_t)(Val >> 32), NumBits-32);
158 assert(NumBits <= 32 && "Too many bits to emit!");
161 // Emit the bits with VBR encoding, NumBits-1 bits at a time.
163 Emit((Val & ((1 << (NumBits-1))-1)) | (1 << (NumBits-1)), NumBits);
167 Emit(Val, NumBits);
171 assert(NumBits <= 32 && "Too many bits to emit!");
177 // Emit the bits with VBR encoding, NumBits-1 bits at a time
    [all...]
  /external/clang/lib/CodeGen/
EHScopeStack.h 11 // CodeGen to emit cleanups. The implementation is in CGCleanup.cpp and other
169 /// Emit the cleanup. For normal cleanups, this is run in the
175 virtual void Emit(CodeGenFunction &CGF, Flags flags) = 0;
185 void Emit(CodeGenFunction &CGF, Flags flags) {
187 T(a0).Emit(CGF, flags);
202 void Emit(CodeGenFunction &CGF, Flags flags) {
205 T(a0, a1).Emit(CGF, flags);
222 void Emit(CodeGenFunction &CGF, Flags flags) {
226 T(a0, a1, a2).Emit(CGF, flags);
245 void Emit(CodeGenFunction &CGF, Flags flags)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Lexer.cs 127 Emit();
182 public virtual void Emit(IToken token) {
187 * The standard method called to automatically emit a token at the
190 * use that to set the token's text. Override this method to emit
199 public virtual IToken Emit() {
204 Emit(t);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Lexer.cs 150 Emit();
222 public virtual void Emit( IToken token )
228 * The standard method called to automatically emit a token at the
231 * use that to set the token's text. Override this method to emit
240 public virtual IToken Emit()
246 Emit( t );
  /external/chromium_org/courgette/
assembly_program.cc 27 DEFBYTE, // DEFBYTE <value> - emit a byte literal.
28 REL32, // REL32 <label> - emit a rel32 encoded reference to 'label'.
29 ABS32, // REL32 <label> - emit am abs32 encoded reference to 'label'.
162 return Emit(new(std::nothrow) PeRelocsInstruction());
166 return Emit(new(std::nothrow) ElfRelocsInstruction());
170 return Emit(new(std::nothrow) ElfARMRelocsInstruction());
174 return Emit(new(std::nothrow) OriginInstruction(rva));
178 return Emit(GetByteInstruction(byte));
183 return Emit(new(std::nothrow) BytesInstruction(values, len));
187 return Emit(new(std::nothrow) InstructionWithLabel(REL32, label))
    [all...]
assembly_program.h 138 CheckBool Emit(Instruction* instruction) WARN_UNUSED_RESULT;
150 // Sharing instructions that emit a single byte saves a lot of space.
  /art/compiler/utils/arm/
assembler_arm.cc 131 void ArmAssembler::Emit(int32_t value) {
133 buffer_.Emit<int32_t>(value);
153 Emit(encoding);
162 Emit(ArmAssembler::EncodeBranchOffset(offset, encoding));
179 Emit(encoding);
194 Emit(encoding);
211 Emit(encoding);
228 Emit(encoding);
246 Emit(encoding);
395 Emit(encoding)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
R600MCCodeEmitter.cpp 78 void Emit(uint32_t value, raw_ostream &OS) const;
79 void Emit(uint64_t value, raw_ostream &OS) const;
166 Emit(inst, OS);
180 Emit(InstWord01, OS);
181 Emit(InstWord2, OS);
212 // Emit instruction type
224 // Emit zeros for unused sources
242 // Emit the source select (2 bytes). For GPRs, this is the register index.
263 // Emit the source channel (1 byte)
270 // XXX: Emit isNegated (1 byte
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
R600MCCodeEmitter.cpp 78 void Emit(uint32_t value, raw_ostream &OS) const;
79 void Emit(uint64_t value, raw_ostream &OS) const;
166 Emit(inst, OS);
180 Emit(InstWord01, OS);
181 Emit(InstWord2, OS);
212 // Emit instruction type
224 // Emit zeros for unused sources
242 // Emit the source select (2 bytes). For GPRs, this is the register index.
263 // Emit the source channel (1 byte)
270 // XXX: Emit isNegated (1 byte
    [all...]
  /external/llvm/include/llvm/MC/
MCDwarf.h 221 static const MCSymbol *Emit(MCStreamer *MCOS);
234 /// Utility function to emit the encoding to a streamer.
235 static void Emit(MCStreamer *MCOS,
245 static void Emit(MCStreamer *MCOS, const MCSymbol *LineSectionSymbol);
414 static void Emit(MCStreamer &streamer, bool usingCFI,
MCWin64EH.h 88 static void Emit(MCStreamer &streamer);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 62 (* Emit 'then' value. *)
71 (* Emit 'else' value. *)
80 (* Emit merge block. *)
100 (* Emit the start code first, without 'variable' in scope. *)
127 (* Emit the body of the loop. This, like any other expr, can change the
132 (* Emit the step value. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 43 * one. Emit a call to it. *)
80 (* Emit 'then' value. *)
89 (* Emit 'else' value. *)
98 (* Emit merge block. *)
118 (* Emit the start code first, without 'variable' in scope. *)
145 (* Emit the body of the loop. This, like any other expr, can change the
150 (* Emit the step value. *)
  /art/compiler/utils/
assembler.h 130 virtual void Emit(Assembler *sp_asm) = 0;
151 template<typename T> void Emit(T value) {
167 // Emit a fixup at the current location.
189 cur->Emit(sp_asm);
207 // To emit an instruction to the assembler buffer, the EnsureCapacity helper
213 // ... emit bytes for single instruction ...
238 // Unmark the buffer, so we cannot emit after this.
316 // Emit slow paths queued during assembly
327 // Emit code that will create an activation on the stack
332 // Emit code that will remove an activation from the stac
    [all...]
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 300 void Emit(const DiagnosticBuilder &DB) const {
328 Emit(DB);
392 PD.Emit(DB);

Completed in 1188 milliseconds

1 2 3 4 5