reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/AST/Interp/ByteCodeExprGen.h
   51   using LabelTy = typename Emitter::LabelTy;
tools/clang/lib/AST/Interp/EvalEmitter.cpp
   45 void EvalEmitter::emitLabel(LabelTy Label) {
   49 EvalEmitter::LabelTy EvalEmitter::getLabel() { return NextLabel++; }
   69 bool EvalEmitter::jumpTrue(const LabelTy &Label) {
   77 bool EvalEmitter::jumpFalse(const LabelTy &Label) {
   85 bool EvalEmitter::jump(const LabelTy &Label) {
   91 bool EvalEmitter::fallthrough(const LabelTy &Label) {
tools/clang/lib/AST/Interp/EvalEmitter.h
   52   void emitLabel(LabelTy Label);
   54   LabelTy getLabel();
   65   bool jumpTrue(const LabelTy &Label);
   66   bool jumpFalse(const LabelTy &Label);
   67   bool jump(const LabelTy &Label);
   68   bool fallthrough(const LabelTy &Label);
  105   LabelTy NextLabel = 1;
  107   LabelTy CurrentLabel = 0;
  109   LabelTy ActiveLabel = 0;