an offline approach to narrowing driven
play

An offline approach to narrowing driven J. Guadalupe Ramos - PowerPoint PPT Presentation

An offline approach to narrowing driven J. Guadalupe Ramos partial evaluation DSIC, Technical University of Valencia guadalupe@dsic.upv.es www.dsic.upv.es/~guadalupe (joint work with Josep Silva and Germn Vidal ) 1) Domain specific


  1. An offline approach to narrowing driven J. Guadalupe Ramos partial evaluation DSIC, Technical University of Valencia guadalupe@dsic.upv.es www.dsic.upv.es/~guadalupe (joint work with Josep Silva and Germán Vidal ) 1) Domain specific languages 2) An example of a domain specific language 3) Partial Evaluation 4) Narrowing driven partial evaluation (NPE) 5) A new offline approach to NPE 6) Conclusion and future work

  2. Domain Specific Specific Languages Languages Domain They are programming languages tailored for a specific domain A DSL is at higher level than a conventional high level language Domain Specific Advantages: : Advantages Language (DSL) Reduced programming effort e.g., latex, html, • Applications with fewer lines of code VHDL, etc. • Programs easier to reason about and maintain Can be used by non-expert programmers DSLs are a convenient technology both for the domain users, since they can easily learn Domain Domain to programming real software applications and for the DSL designer, in order to teach the use of a new language 2

  3. Domain Specific Domain Specific Embedded Embedded Languages Languages But creating new languages is expensive (lexer, parser, and tools) Domain Specific A DSEL is implemented as a alternative Embedded library in a “host” language Language (DSEL) � Higher order functions � Syntax extension mechanisms Host language with convenient features � Flexible/extensible type system � Laziness In this way, language Domain Domain tools are reused 3

  4. The host language: Curry The host language: Curry � Curry does a strict distinction between (data) constructors and operations or defined functions on these data � A Curry program consists of a set of type and function declarations Curry built-in types ( Int, Bool, Char , …) Data type declarations: data Boolean = True | False data Tree Int = Leaf Int | Node (Tree Int) Int (Tree Int) Type synonym declarations: type Name = [Char] type List a = [a] 4

  5. The host language: Curry The host language: Curry A function is defined by a type declaration (which can be omitted) e.g. followed by a list of defining equations append [] y = y append (x:xs) y = x : app xs y functions Higher order features: map f [] = [] map f (x:xs) = f x : map f xs e.g., given inc x = x + 1 we use map inc [4,9] And it produces [5,10] 5

  6. An example of DSEL An example of DSEL Data packet payload header Router o A router is a special device that connects two or more networks and forward data Extensible router packets between them o Due to growing of networks (and Internet) there is a trend to extend the set of functions that routers should support (with run-time • Security customization capabilities), giving rise to • Policies extensible routers • QoS • Addresses • Evolution 6

  7. An example of DSEL An example of DSEL o Among extensible routers, Click is distinguished o In Click, each functional aspect of a router is encapsulated in an element (an instance of a C++ class) o A Click router is based on composing many elements to produce a system that implements the desired behavior A modular router = a graph elements FromDevice(eth0 ) Counter Discard connectors • Click [Kohler et al. 1999], MIT 7

  8. Rose: an example of DSEL for Ro Router uter s sp pe ecification cification Rose: an example of DSEL for We follow Click style, In Rose, packet streams are : i.e., router = a set of type Packet = [Int] elements joined by type Stream = [Packet] connectors Click elements in Rose are functions: element :: [Conf] -> [Stream] -> [Stream] elements FromDevice(eth0) Counter Discard A simple router: connectors simpR = seqOfe [fromDevice [Eth 0], counter [], discard []] Higher order Using the connector: seqOfe :: [ [Stream] -> [Stream] ] -> [Stream] -> [Stream] 8

  9. DSEL drawbacks DSEL drawbacks However, DSELs have the following problems: � Host languages can not analyze DSEL data structures, e.g., � They can not perform type checking � Error messages are related to host languages, not to DSELs � The generated code is slow � Many interpretation layers We are focused on the reduction of interpretation layers 9

  10. DSEL drawbacks DSEL drawbacks Interpretation layers Host language interpreter, e.g., Curry DSEL Library fromDevice conf � Interpreter [] = newPacket conf discard conf stream = [] . . . seqOfe [] = id seqOfe (elem : es) = \input -> seqOfe es (elem input) A concrete application (a router specification) Solution: Partial evaluation of interpreters 10

  11. Partial evaluation p in1 in2 static input in1 partial subject program p evaluator “ mix ” in1 specialized dynamicinput output of p in2 program p in1 in2 p in1 = data The specialized program with the remaining data produces de same result as the original one with = program all data For instance x n : power x 3 power x n = if n == 0 then 1 power 3 x = x * x * x else (x * (power x (n - 1))) 11

  12. Partial evaluation Partial evaluation is a process 1 that iteratively 1. takes a function call, mix Compute 2 2. performs some symbolic evaluations (e.g., power x 3 ), and 3 3. extracts from the partially evaluated expression the set of pending function calls to be computed in the next iteration of the process 12

  13. Termination of partial evaluation � It is not easy to identify � It is not easy to identify which terms (function calls) should be which terms (function calls) processed. should be processed, because some of them can produce infinite computations � Some terms can produce infinite computations mix Compute ??? � Usually, some form of � Usually, some form of generalization generalization is applied to is applied to terms in order to stop terms in order to stop infinite computations (reducing infinite computations precision) (reducing precision) � When should dangerous terms be � When should dangerous generalized? terms be generalized? 13

  14. Partial evaluators The decision on which terms should be generalized can be taken online or offline Online partial evaluators are � more precise since they have more information available at partial evaluation time � usually more expensive Offline partial evaluators proceed in two stages � The first stage returns an annotated program to guide the partial computations � The partial evaluation stage only obeys the annotations � Offline partial evaluators are faster but less precise than online partial evaluators 14

  15. Narrowing driven partial evaluation � In order to perform symbolic computations in a functional context, an extension of the standard semantics is required: narrowing ( basis of the functional logic languages, as Curry) � NPE (narrowing-driven partial evaluation) is a powerful specializing scheme for first-order functional (logic) programs. program Specialized Specialized program program an initial term t NPE for the for the term term t (typically a function call) An online NPE tool is already integrated into the PAKCS environment for the declarative multi-paradigm language Curry 15

  16. Narrowing driven partial evaluation o In NPE, if a term embeds some previous one in the same computation (w.r.t. homeomorphic embedding), a form of generalization is applied and partial evaluation continues with the generalized terms o Homeomorphic embedding tests together with the associated generalizations make NPE very expensive Online NPE Online NPE o Although online NPE gives good results on small programs, it does not scale up well to realistic problems Offline NPE Offline NPE 16

  17. An offline approach to NPE o Is well known that, if the partial computations are quasi- terminating , i.e., they contain only a finite number of different function calls (modulo variable renaming) o then, the partial evaluation process terminates (using a sort of memoization ) o Recently, at the International Conference on Functional Programming ’05, we have introduced a very syntactic characterization for programs restrictive ( nonincreasing programs) that guarantees the quasi- termination of computations 17

  18. An offline approach to NPE Pre-processing Arbitrary p Arbitrary p o In order to accept more programs, we defined an algorithm that annotates those Annotating Annotating terms that cause non quasi- algorithm algorithm termination o We presented an extension Annotated p Annotated p of narrowing which performs computations generalizing annotated Partial evaluator (it terms performs an extension of narrowing) Our offline approach Specialized p Specialized p 18

  19. A simple interpreter of arithmetic expressions data Nat = Z | S Nat | E data Token = Cst Nat | Var Nat | Plus Token Token | Minus Token Token | Mult Token Token int :: Token -> [Nat] -> [Nat] -> Nat int (Cst x ) _ _ = x int (Var x ) vars vals = lookup x vars vals int (Plus x y) vars vals = = add (int x vars vals) (int y vars vals) int (Minus x y) vars vals = minus (int x vars vals) (int y vars vals) int (Mult x y) vars vals = mult (int x vars vals) (int y vars vals) --- auxiliar functions . . . --- arithmetic engine . . . DSEL for arithmetic expressions add Z y = y add (S x) y = S(add x y) Programs are written indicating minus x Z = x minus (S x) (S y)= minus x y operations as Plus, Multiplication, mult Z _ = Z Minus of constants (Cst) or variables mult (S x) y = add y (mult x y) (Var) of natural numbers An application program to be specialized main y = int (Plus (Cst (S (S Z))) (Cst y)) [] []

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend